diff --git a/Test-Portability-Files-0.10.tar.gz b/Test-Portability-Files-0.10.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..3924a5f55389ccfab8cdbd4fc4649ad836d8cbb9 Binary files /dev/null and b/Test-Portability-Files-0.10.tar.gz differ diff --git a/perl-Test-Portability-Files.spec b/perl-Test-Portability-Files.spec new file mode 100644 index 0000000000000000000000000000000000000000..e9893bc6af94f8df3e87467f21938c2a7975a353 --- /dev/null +++ b/perl-Test-Portability-Files.spec @@ -0,0 +1,88 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-Test-Portability-Files +Version: 0.10 +Release: 1 +Summary: Check file names portability +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Test-Portability-Files/ +Source0: http://www.cpan.org/authors/id/A/AB/ABRAXXA/Test-Portability-Files-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl >= 0:5.008 +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(File::Basename) +BuildRequires: perl(File::Find) +BuildRequires: perl(File::Spec) +BuildRequires: perl(File::Temp) >= 0.2304 +BuildRequires: perl(IO::Handle) +BuildRequires: perl(IPC::Open3) +BuildRequires: perl(Test::Builder) +BuildRequires: perl(Test::More) >= 0.98 +Requires: perl(File::Basename) +Requires: perl(File::Find) +Requires: perl(File::Spec) +Requires: perl(Test::Builder) +%description +This module is used to check the portability across operating systems of +the names of the files present in the distribution of a module. The tests +use the advices given in "Files and Filesystems" in perlport. The author of +a distribution can select which tests to execute. +%package help +Summary : Check file names portability +Provides: perl-Test-Portability-Files-doc +%description help +This module is used to check the portability across operating systems of +the names of the files present in the distribution of a module. The tests +use the advices given in "Files and Filesystems" in perlport. The author of +a distribution can select which tests to execute. +%prep +%setup -q -n Test-Portability-Files-%{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 dist.ini LICENSE META.json README weaver.ini +%{perl_vendorlib}/* +%files help +%{_mandir}/* + +%changelog +* Sun May 23 2021 Perl_Bot 0.10-1 +- Specfile autogenerated by Perl_Bot