diff --git a/String-Escape-2010.002.tar.gz b/String-Escape-2010.002.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..ccd6413310e5dd3094c533f41a098e2c63b8d643 Binary files /dev/null and b/String-Escape-2010.002.tar.gz differ diff --git a/perl-String-Escape.spec b/perl-String-Escape.spec new file mode 100644 index 0000000000000000000000000000000000000000..2bcc41c7847b53bc5e39bbef440b7dd8b544734b --- /dev/null +++ b/perl-String-Escape.spec @@ -0,0 +1,77 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-String-Escape +Version: 2010.002 +Release: 1 +Summary: String::Escape Perl module +License: GPL-1.0-only or Artistic-1.0-Perl +Group: Development/Libraries +URL: http://search.cpan.org/dist/String-Escape/ +Source0: http://www.cpan.org/authors/id/E/EV/EVO/String-Escape-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Test::More) +Requires: perl(Test::More) +%description +This module provides a flexible calling interface to some frequently- +performed string conversion functions, including applying and expanding +standard C/Unix-style backslash escapes like \n and \t, wrapping and +removing double-quotes, and truncating to fit within a desired length. +%package help +Summary : String::Escape Perl module +Provides: perl-String-Escape-doc +%description help +This module provides a flexible calling interface to some frequently- +performed string conversion functions, including applying and expanding +standard C/Unix-style backslash escapes like \n and \t, wrapping and +removing double-quotes, and truncating to fit within a desired length. +%prep +%setup -q -n String-Escape-%{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 2010.002-1 +- Specfile autogenerated by Perl_Bot