diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fb7bad8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Sub-Exporter-0.987.tar.gz diff --git a/.rh-perl526-perl-Sub-Exporter.metadata b/.rh-perl526-perl-Sub-Exporter.metadata new file mode 100644 index 0000000..42157f7 --- /dev/null +++ b/.rh-perl526-perl-Sub-Exporter.metadata @@ -0,0 +1 @@ +cbe2baead99a36bbd1ca1f34a3d4699fc88bade2 SOURCES/Sub-Exporter-0.987.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/perl-Sub-Exporter.spec b/SPECS/perl-Sub-Exporter.spec new file mode 100644 index 0000000..a026ec2 --- /dev/null +++ b/SPECS/perl-Sub-Exporter.spec @@ -0,0 +1,262 @@ +%{?scl:%scl_package perl-Sub-Exporter} + +# Provides/Requires filtering is different from rpm 4.9 onwards +%global rpm49 0%(rpm --version | perl -p -e 's/^.* (\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e') + +# Run extra test +%bcond_without perl_Sub_Exporter_enables_extra_test + +Name: %{?scl_prefix}perl-Sub-Exporter +Version: 0.987 +Release: 15%{?dist} +Summary: Sophisticated exporter for custom-built routines +License: GPL+ or Artistic +Group: Development/Libraries +URL: https://metacpan.org/release/Sub-Exporter +Source0: http://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu) +BuildArch: noarch +# Build +BuildRequires: coreutils +BuildRequires: findutils +BuildRequires: make +BuildRequires: %{?scl_prefix}perl-interpreter +BuildRequires: %{?scl_prefix}perl-generators +BuildRequires: %{?scl_prefix}perl(ExtUtils::MakeMaker) >= 6.30 +# Module +BuildRequires: %{?scl_prefix}perl(Carp) +BuildRequires: %{?scl_prefix}perl(Data::OptList) >= 0.1 +BuildRequires: %{?scl_prefix}perl(Package::Generator) +BuildRequires: %{?scl_prefix}perl(Params::Util) >= 0.14 +BuildRequires: %{?scl_prefix}perl(Sub::Install) >= 0.92 +# Test suite +BuildRequires: %{?scl_prefix}perl(base) +BuildRequires: %{?scl_prefix}perl(Exporter) +BuildRequires: %{?scl_prefix}perl(File::Spec) +BuildRequires: %{?scl_prefix}perl(IO::Handle) +BuildRequires: %{?scl_prefix}perl(IPC::Open3) +BuildRequires: %{?scl_prefix}perl(lib) +BuildRequires: %{?scl_prefix}perl(subs) +BuildRequires: %{?scl_prefix}perl(Test::More) +%if %{with perl_Sub_Exporter_enables_extra_test} +# Extra tests +BuildRequires: %{?scl_prefix}perl(Test::Pod) +%endif +# Runtime +Requires: %{?scl_prefix}perl(:MODULE_COMPAT_%(%{?scl:scl enable %{scl} '}eval "$(perl -V:version)";echo $version%{?scl:'})) +Requires: %{?scl_prefix}perl(Package::Generator) + +# Don't want doc-file provides or dependencies +%global our_docdir %{?_pkgdocdir}%{!?_pkgdocdir:%{_docdir}/%{name}-%{version}} +%global __provides_exclude_from ^%{our_docdir}/ +%global __requires_exclude_from ^%{our_docdir}/ + +%description +Sub::Exporter provides a sophisticated alternative to Exporter.pm. It allows +for renaming, currying/sub-generation, and other cool stuff. + +ACHTUNG! If you're not familiar with Exporter or exporting, read +Sub::Exporter::Tutorial first! + +%prep +%setup -q -n Sub-Exporter-%{version} + +# Fix shellbangs +for F in $(find t -type f); do + %{?scl:scl enable %{scl} '}perl -MExtUtils::MakeMaker -e "ExtUtils::MM_Unix->fixin(q{%{?scl:'"}$F%{?scl:"'}})"%{?scl:'} +done + +# Filter bogus provides/requires if we don't have rpm ≥ 4.9 +%if ! %{rpm49} +%global provfilt /bin/sh -c "%{__perl_provides} | grep -Ev '^%{?scl_prefix}perl[(]Test::SubExporter.*[)]'" +%global __perl_provides %{provfilt} +%global reqfilt /bin/sh -c "%{__perl_requires} | grep -Ev '^%{?scl_prefix}perl[(](base|Test::SubExporter.*)[)]'" +%global __perl_requires %{reqfilt} +%endif + +%build +%{?scl:scl enable %{scl} '}perl Makefile.PL INSTALLDIRS=vendor && make %{?_smp_mflags}%{?scl:'} + +%install +rm -rf %{buildroot} +%{?scl:scl enable %{scl} '}make pure_install DESTDIR=%{buildroot}%{?scl:'} +find %{buildroot} -type f -name .packlist -exec rm -f {} \; +%{_fixperms} %{buildroot} + +%check +%{?scl:scl enable %{scl} '}make test%{?scl:'} +%if %{with perl_Sub_Exporter_enables_extra_test} +make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" +%endif + +%clean +rm -rf %{buildroot} + +%files +%doc Changes README t/ +%dir %{perl_vendorlib}/Sub/ +%dir %{perl_vendorlib}/Sub/Exporter/ +%{perl_vendorlib}/Sub/Exporter.pm +%{perl_vendorlib}/Sub/Exporter/Util.pm +%doc %{perl_vendorlib}/Sub/Exporter/Cookbook.pod +%doc %{perl_vendorlib}/Sub/Exporter/Tutorial.pod +%{_mandir}/man3/Sub::Exporter.3* +%{_mandir}/man3/Sub::Exporter::Cookbook.3* +%{_mandir}/man3/Sub::Exporter::Tutorial.3* +%{_mandir}/man3/Sub::Exporter::Util.3* + +%changelog +* Wed Dec 20 2017 Jitka Plesnikova - 0.987-15 +- Remove unused patches + +* Tue Dec 19 2017 Jitka Plesnikova - 0.987-14 +- SCL + +* Thu Jul 27 2017 Fedora Release Engineering - 0.987-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sun Jun 04 2017 Jitka Plesnikova - 0.987-12 +- Perl 5.26 rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.987-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Jul 22 2016 Petr Pisar - 0.987-10 +- Adjust RPM version detection to SRPM build root without perl + +* Sun May 15 2016 Jitka Plesnikova - 0.987-9 +- Perl 5.24 rebuild + +* Thu Feb 04 2016 Fedora Release Engineering - 0.987-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jan 7 2016 Paul Howarth - 0.987-7 +- Don't use %%define + +* Thu Jun 18 2015 Fedora Release Engineering - 0.987-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Fri Jun 05 2015 Jitka Plesnikova - 0.987-5 +- Perl 5.22 rebuild + +* Fri Jan 16 2015 Petr Pisar - 0.987-4 +- Do not hard-code interpreter name + +* Wed Aug 27 2014 Jitka Plesnikova - 0.987-3 +- Perl 5.20 rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.987-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Oct 19 2013 Paul Howarth - 0.987-1 +- Update to 0.987 (update bugtracker metadata) +- Update patches as needed + +* Sun Aug 04 2013 Fedora Release Engineering - 0.986-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Jul 31 2013 Paul Howarth - 0.986-3 +- Handle filtering of provides/requires from unversioned doc-dirs from F-20 + +* Sun Jul 21 2013 Petr Pisar - 0.986-2 +- Perl 5.18 rebuild + +* Sat Jun 15 2013 Paul Howarth - 0.986-1 +- Update to 0.986 (typo fixes in docs) +- Use metacpan URLs + +* Thu Feb 21 2013 Paul Howarth - 0.985-1 +- Update to 0.985 (documentation fixes) +- Add patch to support building with Test::More < 0.88 +- Run the extra tests too +- BR: perl(File::Find) and perl(File::Temp) for test suite +- BR: perl(Test::Pod) for the extra tests + +* Thu Feb 14 2013 Fedora Release Engineering - 0.984-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Oct 29 2012 Petr Pisar - 0.984-4 +- Specify all dependencies + +* Fri Jul 20 2012 Fedora Release Engineering - 0.984-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jun 13 2012 Petr Pisar - 0.984-2 +- Perl 5.16 rebuild + +* Tue Jun 5 2012 Paul Howarth - 0.984-1 +- Update to 0.984 (documentation fixes) +- Add filters for provides/requires from the test suite +- BR: perl(base) and perl(Exporter) for the test suite + +* Sun Mar 18 2012 Paul Howarth - 0.982-11 +- Drop %%defattr, redundant since rpm 4.4 + +* Sat Mar 3 2012 Paul Howarth - 0.982-10 +- Explicitly require perl(Package::Generator) +- Make %%files list more explicit +- Mark POD files as %%doc +- Use DESTDIR rather than PERL_INSTALL_ROOT +- Don't need to remove empty directories from buildroot +- Don't use macros for commands +- Use tabs + +* Fri Jan 13 2012 Fedora Release Engineering - 0.982-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Jun 29 2011 Marcela Mašláňová - 0.982-8 +- Perl mass rebuild + +* Wed Feb 09 2011 Fedora Release Engineering - 0.982-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Dec 22 2010 Marcela Maslanova - 0.982-6 +- Rebuild to fix problems with vendorarch/lib (#661697) + +* Thu May 06 2010 Marcela Maslanova - 0.982-5 +- Mass rebuild with perl-5.12.0 + +* Mon Dec 7 2009 Stepan Kasal - 0.982-4 +- Rebuild against perl 5.10.1 + +* Sun Jul 26 2009 Fedora Release Engineering - 0.982-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 0.982-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 11 2009 Chris Weyl - 0.982-1 +- Update to 0.982 + +* Sun Oct 26 2008 Chris Weyl - 0.981-1 +- Update to 0.981 + +* Thu Oct 23 2008 Chris Weyl - 0.980-1 +- Update to 0.980 + +* Mon Jun 30 2008 Chris Weyl - 0.979-1 +- Update to 0.979 +- Drop BR's on: perl(Test::Pod::Coverage), perl(Test::Pod) + +* Wed Feb 27 2008 Tom "spot" Callaway - 0.978-2 +- Rebuild for perl 5.10 (again) + +* Thu Jan 24 2008 Tom "spot" Callaway - 0.978-1 +- Update to 0.978 +- Fix license tag +- Rebuild for new perl + +* Thu Aug 09 2007 Chris Weyl - 0.975-1 +- Update to 0.975 + +* Fri Jun 01 2007 Chris Weyl - 0.974-1 +- Update to 0.974 + +* Sat Dec 09 2006 Chris Weyl - 0.972-1 +- Update to 0.972 + +* Thu Sep 07 2006 Chris Weyl - 0.970-2 +- Bump + +* Sat Sep 02 2006 Chris Weyl - 0.970-1 +- Specfile autogenerated by cpanspec 1.69.1