diff --git a/Sub-Info-0.002.tar.gz b/Sub-Info-0.002.tar.gz new file mode 100644 index 0000000..8a07c96 Binary files /dev/null and b/Sub-Info-0.002.tar.gz differ diff --git a/perl-Sub-Info.spec b/perl-Sub-Info.spec new file mode 100644 index 0000000..b1e5c30 --- /dev/null +++ b/perl-Sub-Info.spec @@ -0,0 +1,81 @@ +%global _empty_manifest_terminate_build 0 +Name: perl-Sub-Info +Version: 0.002 +Release: 1 +Summary: Sub::Info Perl module +License: GPL+ or Artistic +Group: Development/Libraries +URL: https://metacpan.org/release/Sub-Info +Source0: https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Sub-Info-%{version}.tar.gz +BuildArch: noarch + +BuildRequires: make +BuildRequires: perl-interpreter +BuildRequires: perl-generators +BuildRequires: perl(:VERSION) >= 5.8.1 +BuildRequires: perl(Importer) >= 0.024 +BuildRequires: perl(Test2::Tools::Tiny) >= 1.302072 + +%description +This allows to inspect Perl subroutines. + +%package help +Summary : Sub::Info Perl module +Provides: perl-Sub-Info-doc + +%description help +This allows to inspect Perl subroutines. + +%prep +%setup -q -n Sub-Info-%{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 DESTDIR=$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 META.json README +%{perl_vendorlib}/* +%files help +%{_mandir}/* + +%changelog +* Mon Aug 3 2020 dingyue -0.002 -1 +- Package init