123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- Name: perl-Package-Generator
- Version: 1.106
- Release: 2%{?_dist_release}
- Summary: Generate new packages quickly and easily
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Package-Generator/
- Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Package-Generator-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
- BuildArch: noarch
- BuildRequires: perl(Carp)
- BuildRequires: perl(ExtUtils::MakeMaker)
- BuildRequires: perl(Params::Util)
- BuildRequires: perl(Scalar::Util)
- BuildRequires: perl(Symbol)
- BuildRequires: perl(Test::More)
- # Test::Perl::Critic -> Perl::Critic -> Exception::Class -> Test::EOL ->
- # Pod::Coverage::TrustPod -> Pod::Eventual -> Mixin::Linewise ->
- # Sub::Exporter -> Package::Generator
- %if 0%{!?perl_bootstrap:1}
- #BuildRequires: perl(Test::Perl::Critic)
- %endif
- BuildRequires: perl(Test::Pod)
- BuildRequires: perl(Test::Pod::Coverage)
- Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- This module lets you quickly and easily construct new packages. It gives
- them unused names and sets up their package data, if provided.
- %prep
- %setup -q -n Package-Generator-%{version}
- %build
- perl Makefile.PL INSTALLDIRS=vendor
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make pure_install DESTDIR=%{buildroot}
- find %{buildroot} -type f -name .packlist -exec rm -f {} \;
- find %{buildroot} -depth -type d -exec rmdir {} \; 2>/dev/null
- %{_fixperms} %{buildroot}
- %check
- make test %{!?perl_bootstrap:PERL_TEST_CRITIC=1}
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc Changes README
- %{perl_vendorlib}/Package/
- %{_mandir}/man3/Package::Generator.3pm*
- %{_mandir}/man3/Package::Reaper.3pm*
- %changelog
- * Fri May 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.106-2
- - rebuilt with perl-5.26.
- * Sat Nov 22 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.106-1
- - updated to 1.106
- - built with perl 5.16.3
- * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.103-1
- - initial build for Vine Linux
- * Tue Feb 7 2012 Paul Howarth <paul@city-fan.org> - 0.103-9
- - Don't BR: perl(Test::Perl::Critic) if we're bootstrapping
- * Wed Feb 1 2012 Paul Howarth <paul@city-fan.org> - 0.103-8
- - Run Perl::Critic test in %%check too
- - BR: perl(Test::Perl::Critic)
- - BR: perl(Carp) and perl(Symbol), which might be dual-lived
- - Use DESTDIR rather than PERL_INSTALL_ROOT
- - Drop version requirement for perl(ExtUtils::MakeMaker); older versions work
- without problems, e.g. version 6.17 on EL-4
- - Make %%files list more explicit
- - Don't use macros for commands
- - Use tabs
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.103-7
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.103-6
- - Perl mass rebuild
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.103-5
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.103-4
- - Rebuild to fix problems with vendorarch/lib (#661697)
- * Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.103-3
- - Mass rebuild with perl-5.12.0
- * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.103-2
- - Rebuild against perl 5.10.1
- * Tue Aug 11 2009 Chris Weyl <cweyl@alumni.drew.edu> - 0.103-1
- - Auto-update to 0.103 (by cpan-spec-update 0.01)
- - Added a new br on perl(ExtUtils::MakeMaker) (version 6.42)
- * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.102-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.102-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.102-2
- - Rebuild for perl 5.10 (again)
- * Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.102-1
- - Rebuild for new perl
- - Update to 0.102
- - Fix license tag
- * Wed Sep 06 2006 Chris Weyl <cweyl@alumni.drew.edu> - 0.100-2
- - Bump
- * Tue Sep 05 2006 Chris Weyl <cweyl@alumni.drew.edu> - 0.100-1
- - Specfile autogenerated by cpanspec 1.69.1
|