diff --git a/String-Approx-3.28.tar.gz b/String-Approx-3.28.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..27cb09ea047b7e2bf9b2f11ce658ab72d51292ed Binary files /dev/null and b/String-Approx-3.28.tar.gz differ diff --git a/perl-String-Approx.spec b/perl-String-Approx.spec new file mode 100644 index 0000000000000000000000000000000000000000..b39e774527b593e98957f89ca3dff14cc8b401fb --- /dev/null +++ b/perl-String-Approx.spec @@ -0,0 +1,79 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-String-Approx +Version: 3.28 +Release: 1 +Summary: Perl extension for approximate matching (fuzzy matching) +License: LGPLv2+ or Artistic-1.0-Perl +Group: Development/Libraries +URL: http://search.cpan.org/dist/String-Approx/ +Source0: http://www.cpan.org/authors/id/J/JH/JHI/String-Approx-%{version}.tar.gz +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::More) +Requires: perl(Test::More) +%description +String::Approx lets you match and substitute strings approximately. With +this you can emulate errors: typing errorrs, speling errors, closely +related vocabularies (colour color), genetic mutations (GAG ACT), +abbreviations (McScot, MacScot). +%package help +Summary : Perl extension for approximate matching (fuzzy matching) +Provides: perl-String-Approx-doc +%description help +String::Approx lets you match and substitute strings approximately. With +this you can emulate errors: typing errorrs, speling errors, closely +related vocabularies (colour color), genetic mutations (GAG ACT), +abbreviations (McScot, MacScot). +%prep +%setup -q -n String-Approx-%{version} +%build +export PERL_MM_OPT="" +%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" +%{__perl} -pi -e 's/^\tLD_RUN_PATH=[^\s]+\s*/\t/' Makefile +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 -type f -name '*.bs' -size 0 -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 Artistic ChangeLog COPYRIGHT COPYRIGHT.agrep LGPL META.json PROBLEMS README README.apse +%{perl_vendorarch}/auto/* +%{perl_vendorarch}/String* +%files help +%{_mandir}/* + +%changelog +* Sun May 23 2021 Perl_Bot 3.28-1 +- Specfile autogenerated by Perl_Bot