123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- # This file is licensed under the terms of GNU GPLv2+.
- Name: perl-Module-Runtime
- Version: 0.014
- Release: 1%{?_dist_release}
- Summary: Runtime module handling
- License: GPL+ or Artistic
- Group: Development/Libraries
- URL: http://search.cpan.org/dist/Module-Runtime/
- Source0: http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-%{version}.tar.gz
- BuildArch: noarch
- BuildRequires: perl(Module::Build)
- # Tests:
- BuildRequires: perl(Test::More)
- # Optional tests:
- BuildRequires: perl(Test::Pod) >= 1.00
- BuildRequires: perl(Test::Pod::Coverage)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- %description
- The functions exported by this module deal with runtime handling of Perl
- modules, which are normally handled at compile time.
- %prep
- %setup -q -n Module-Runtime-%{version}
- %build
- %{__perl} Build.PL installdirs=vendor
- ./Build
- %install
- rm -rf %{buildroot}
- ./Build install destdir=%{buildroot} create_packlist=0
- find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
- %{_fixperms} %{buildroot}/*
- %check
- ./Build test
- %clean
- rm -rf %{buildroot}
- %files
- %doc Changes README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*
- %changelog
- * Mon Jun 30 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.014-1
- - new upstream release.
- * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.013-1
- - initial build for Vine Linux
- * Mon Feb 20 2012 Petr Pisar <ppisar@redhat.com> - 0.013-1
- - 0.013 bump
- * Mon Feb 13 2012 Petr Pisar <ppisar@redhat.com> - 0.012-1
- - 0.012 bump
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.011-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Tue Oct 25 2011 Petr Pisar <ppisar@redhat.com> - 0.011-1
- - 0.011 bump
- * Fri Oct 07 2011 Petr Pisar <ppisar@redhat.com> - 0.010-1
- - 0.010 bump
- * Wed Oct 05 2011 Petr Pisar <ppisar@redhat.com> - 0.009-1
- - 0.009 bump
- - Remove defattr now
- * Fri Jul 22 2011 Petr Sabata <contyk@redhat.com> - 0.008-2
- - Perl mass rebuild
- * Mon Jul 11 2011 Petr Pisar <ppisar@redhat.com> 0.008-1
- - Specfile autogenerated by cpanspec 1.78.
- - Remove BuildRoot and defattr
|