From 307abd3b0b77067ea7e092647eae4d10548e29cd Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 31 2019 07:40:52 +0000 Subject: import perl-PAR-Dist-0.49-2.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6861f96 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/PAR-Dist-0.49.tar.gz diff --git a/.perl-PAR-Dist.metadata b/.perl-PAR-Dist.metadata new file mode 100644 index 0000000..8bff78f --- /dev/null +++ b/.perl-PAR-Dist.metadata @@ -0,0 +1 @@ +888d8346c992c647428405c96b766f4ab80edf0d SOURCES/PAR-Dist-0.49.tar.gz diff --git a/SPECS/perl-PAR-Dist.spec b/SPECS/perl-PAR-Dist.spec new file mode 100644 index 0000000..e80b25c --- /dev/null +++ b/SPECS/perl-PAR-Dist.spec @@ -0,0 +1,206 @@ +Name: perl-PAR-Dist +Version: 0.49 +Release: 2%{?dist} +Summary: Toolkit for creating and manipulating Perl PAR distributions +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/PAR-Dist/ +Source0: http://www.cpan.org/authors/id/R/RS/RSCHUPP/PAR-Dist-%{version}.tar.gz +BuildArch: noarch +BuildRequires: perl(ExtUtils::MakeMaker) +# Run-time: +# perl(Archive::Zip) not tested +BuildRequires: perl(Carp) +BuildRequires: perl(Cwd) +BuildRequires: perl(Exporter) +# perl(ExtUtils::Install) not tested +BuildRequires: perl(ExtUtils::MY) +BuildRequires: perl(File::Copy) +BuildRequires: perl(File::Find) +BuildRequires: perl(File::Path) +BuildRequires: perl(File::Spec) +# perl(LWP::Simple) not tested +# perl(Module::Signature) >= 0.25 not tested +BuildRequires: perl(YAML::Tiny) +# Tests: +BuildRequires: perl(Test) +BuildRequires: perl(Test::More) +# Optional tests: +BuildRequires: perl(Test::Pod) >= 1.00 +BuildRequires: perl(Test::Pod::Coverage) >= 1.00 +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +Requires: perl(Archive::Zip) +Requires: perl(Cwd) +Requires: perl(ExtUtils::Install) +Requires: perl(ExtUtils::MY) +Requires: perl(File::Copy) +Requires: perl(File::Find) +Requires: perl(File::Path) +Requires: perl(LWP::Simple) +Requires: perl(Module::Signature) >= 0.25 +Requires: perl(YAML::Tiny) + +%description +This module creates and manipulates PAR distributions. They are architecture- +specific PAR files, containing everything under blib/ of CPAN distributions +after their make or Build stage, a META.yml describing metadata of the +original CPAN distribution, and a MANIFEST detailing all files within it. +Digitally signed PAR distributions will also contain a SIGNATURE file. + +%prep +%setup -q -n PAR-Dist-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +make pure_install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test PERL_TEST_POD=1 + +%files +%doc Changes README +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Fri Dec 27 2013 Daniel Mach - 0.49-2 +- Mass rebuild 2013-12-27 + +* Wed Oct 24 2012 Petr Pisar - 0.49-1 +- 0.49 bump + +* Fri Jul 20 2012 Fedora Release Engineering - 0.47-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jun 20 2012 Petr Pisar - 0.47-5 +- Perl 5.16 rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 0.47-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Jul 20 2011 Petr Sabata - 0.47-3 +- Perl mass rebuild + +* Tue Feb 08 2011 Fedora Release Engineering - 0.47-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Dec 21 2010 Steven Pritchard 0.47-1 +- Update to 0.47. + +* Tue Dec 21 2010 Marcela Maslanova - 0.46-4 +- 661697 rebuild for fixing problems with vendorach/lib + +* Tue May 04 2010 Marcela Maslanova - 0.46-3 +- Mass rebuild with perl-5.12.0 + +* Mon Dec 7 2009 Stepan Kasal - 0.46-2 +- rebuild against perl 5.10.1 + +* Mon Sep 21 2009 Stepan Kasal - 0.46-1 +- new upstream version + +* Sun Jul 26 2009 Fedora Release Engineering - 0.43-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 0.43-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Feb 02 2009 Steven Pritchard 0.43-1 +- Update to 0.43. +- Explicitly require Archive::Zip and YAML::Tiny. + +* Fri Jan 16 2009 Steven Pritchard 0.42-1 +- Update to 0.42. + +* Mon Dec 15 2008 Steven Pritchard 0.40-1 +- Update to 0.40. +- BR Archive::Zip and YAML::Tiny for t/03merge_meta. + +* Thu Sep 25 2008 Marcela Maslanova 0.34-2 +- forgot apply source + +* Thu Sep 25 2008 Marcela Maslanova 0.34-1 +- update to 0.34 -> it was needed for perl-PAR + +* Sat May 31 2008 Steven Pritchard 0.31-1 +- Update to 0.31. +- BR Test::Pod and Test::Pod::Coverage. + +* Wed Feb 27 2008 Tom "spot" Callaway - 0.29-2 +- Rebuild for perl 5.10 (again) + +* Thu Feb 21 2008 Steven Pritchard 0.29-1 +- Update to 0.29. +- Use fixperms macro instead of our own chmod incantation. +- Reformat to match cpanspec output. + +* Thu Jan 10 2008 Tom "spot" Callaway - 0.25-4 +- rebuild (again) for new perl + +* Thu Jan 10 2008 Tom "spot" Callaway - 0.25-3 +- rebuild for new perl + +* Mon Aug 6 2007 Ville Skyttä - 0.25-2 +- License: GPL+ or Artistic + +* Mon Jul 30 2007 Ville Skyttä - 0.25-1 +- 0.25. + +* Sun Jul 22 2007 Ville Skyttä - 0.24-1 +- 0.24. + +* Mon Jun 25 2007 Ville Skyttä - 0.23-1 +- 0.23. + +* Sun May 6 2007 Ville Skyttä - 0.22-1 +- 0.22. + +* Tue Apr 17 2007 Ville Skyttä - 0.21-2 +- BuildRequire perl(ExtUtils::MakeMaker) and perl(Test::More). + +* Sun Oct 15 2006 Ville Skyttä - 0.21-1 +- 0.21. + +* Thu Oct 12 2006 Ville Skyttä - 0.20-1 +- 0.20. + +* Sun Sep 17 2006 Ville Skyttä - 0.19-1 +- 0.19. + +* Mon Aug 28 2006 Ville Skyttä - 0.18-1 +- 0.18. + +* Tue Aug 15 2006 Ville Skyttä - 0.16-1 +- 0.16. + +* Sat Jul 29 2006 Ville Skyttä - 0.15-1 +- 0.15. + +* Sun Jul 23 2006 Ville Skyttä - 0.14-1 +- 0.14. + +* Thu Jul 20 2006 Ville Skyttä - 0.11-1 +- 0.11. +- Fix order of options to find(1) in %%install. + +* Thu Jun 8 2006 Ville Skyttä - 0.10-1 +- 0.10. + +* Fri Feb 24 2006 Ville Skyttä - 0.08-1 +- 0.08. +- Specfile cleanups. + +* Thu Mar 17 2005 Ville Skyttä - 0.07-3 +- Avoid running signature test during build. +- Sync with fedora-rpmdevtools' Perl spec template. + +* Sun Apr 25 2004 Ville Skyttä - 0:0.07-0.fdr.2 +- Require perl(:MODULE_COMPAT_*). + +* Sat Mar 27 2004 Ville Skyttä - 0:0.07-0.fdr.1 +- First build.