diff --git a/Text-CSV-Separator-0.20.tar.gz b/Text-CSV-Separator-0.20.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..204d1885cc96b4fd78f4c445a4de667dc4f2e2d8 Binary files /dev/null and b/Text-CSV-Separator-0.20.tar.gz differ diff --git a/perl-Text-CSV-Separator.spec b/perl-Text-CSV-Separator.spec new file mode 100644 index 0000000000000000000000000000000000000000..b4a5f46cfd08c58004379f5f2629cec5cbd4c75d --- /dev/null +++ b/perl-Text-CSV-Separator.spec @@ -0,0 +1,81 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-Text-CSV-Separator +Version: 0.20 +Release: 1 +Summary: Determine the field separator of a CSV file +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Text-CSV-Separator/ +Source0: http://www.cpan.org/authors/id/E/EN/ENELL/Text-CSV-Separator-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::MakeMaker) +%description +This module provides a fast detection of the field separator character +(also called field delimiter) of a CSV file, or more generally, of a +character separated text file (also called delimited text file), and +returns it ready to use in a CSV parser (e.g., Text::CSV_XS, Tie::CSV_File, +or Text::CSV::Simple). This may be useful to the vulnerable -and often ignored- +population of programmers who need to process automatically CSV files from +different sources. +%package help +Summary : Determine the field separator of a CSV file +Provides: perl-Text-CSV-Separator-doc +%description help +This module provides a fast detection of the field separator character +(also called field delimiter) of a CSV file, or more generally, of a +character separated text file (also called delimited text file), and +returns it ready to use in a CSV parser (e.g., Text::CSV_XS, Tie::CSV_File, +or Text::CSV::Simple). This may be useful to the vulnerable -and often ignored- +population of programmers who need to process automatically CSV files from +different sources. +%prep +%setup -q -n Text-CSV-Separator-%{version} +%build +export PERL_MM_OPT="" +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +export PERL_MM_OPT="" +rm -rf $RPM_BUILD_ROOT + +make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT + +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; + +%{_fixperms} $RPM_BUILD_ROOT/* + +pushd %{buildroot} +touch filelist.lst +if [ -d usr/bin ];then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ];then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ];then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib ];then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +popd +mv %{buildroot}/filelist.lst . +%check || : +make test + +%clean +rm -rf $RPM_BUILD_ROOT + +%files -f filelist.lst +%defattr(-,root,root,-) +%doc Changes README +%{perl_vendorlib}/* +%files help +%{_mandir}/* + +%changelog +* Sun May 23 2021 Perl_Bot 0.20-1 +- Specfile autogenerated by Perl_Bot