commit 98d5cae040f82cced3bcc8171b8c31e3514d8e41fa7c21e1cb0d91878a9d0fee Author: Pascal Bleser Date: Thu Jan 5 11:10:15 2012 +0000 1.00 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-CSV-Simple?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Text-CSV-Simple-1.00.tar.gz b/Text-CSV-Simple-1.00.tar.gz new file mode 100644 index 0000000..ddfcacc --- /dev/null +++ b/Text-CSV-Simple-1.00.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58842240654d398fcac7e0ae5817d50b062bef4829c40de1191a3698b7623a2d +size 4571 diff --git a/perl-Text-CSV-Simple.changes b/perl-Text-CSV-Simple.changes new file mode 100644 index 0000000..513f1dc --- /dev/null +++ b/perl-Text-CSV-Simple.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Thu Jan 05 11:08:45 CET 2012 - pascal.bleser@opensuse.org + +- initial version (1.00) + diff --git a/perl-Text-CSV-Simple.spec b/perl-Text-CSV-Simple.spec new file mode 100644 index 0000000..2d05131 --- /dev/null +++ b/perl-Text-CSV-Simple.spec @@ -0,0 +1,79 @@ +# +# spec file for package perl-Text-CSV-Simple +# +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + + +Name: perl-Text-CSV-Simple +Version: 1.00 +Release: 0 +Summary: Simple CSV Parsing Module for Perl +Source: http://search.cpan.org/CPAN/authors/id/T/TM/TMTM/Text-CSV-Simple-%{version}.tar.gz +Url: http://search.cpan.org/dist/Text-CSV-Simple +Group: Development/Libraries/Perl +License: GNU General Public License version 2 or later or Artistic (GPLv2+ or Artistic) +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%{perl_requires} +BuildRequires: perl-macros +BuildRequires: make +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Class::Trigger) +BuildRequires: perl(Text::CSV_XS) +BuildRequires: perl(File::Slurp) +Requires: perl(Class::Trigger) +Requires: perl(Text::CSV_XS) +Requires: perl(File::Slurp) +%if 0%{?suse_version} >= 1120 +BuildArch: noarch +%endif + +%description +Parsing CSV files is nasty. It seems so simple, but it usually isn't. +Thankfully Text::CSV_XS takes care of most of that nastiness for us. +Like many modules which have to deal with all manner of nastiness and edge +cases, however, it can be clumsy to work with in the simple case. +Thus this module. +We simply provide a little wrapper around Text::CSV_XS to streamline the +common case scenario. (Or at least my common case scenario; feel free to +write your own wrapper if this one doesn't do what you want). + +%prep +%setup -q -n "Text-CSV-Simple-%{version}" +%__sed -i '/^auto_install/d' Makefile.PL + +%build +%__perl Makefile.PL PREFIX="%{_prefix}" +%__make %{?_smp_flags} + +%install +%perl_make_install +%perl_process_packlist + +%check +%__make test + +%clean +%{?buildroot:%__rm -rf "%{buildroot}"} + +%files +%defattr(-,root,root) +%doc README Changes +%dir %{perl_vendorlib}/Text +%dir %{perl_vendorlib}/Text/CSV +%{perl_vendorlib}/Text/CSV/Simple.pm +%doc %{perl_man3dir}/Text::CSV::Simple.%{perl_man3ext}%{ext_man} + +%changelog