123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- Name: perl-Test-Requires
- Summary: Checks to see if a given module can be loaded
- Version: 0.07
- Release: 1%{?_dist_release}
- License: GPL+ or Artistic
- Group: Development/Libraries
- Source0: http://search.cpan.org/CPAN/authors/id/T/TO/TOKUHIROM/Test-Requires-%{version}.tar.gz
- URL: http://search.cpan.org/dist/Test-Requires
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
- BuildArch: noarch
- BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
- BuildRequires: perl(Filter::Util::Call)
- BuildRequires: perl(Test::More) >= 0.61
- Requires: perl(Test::Builder::Module)
- %{?perl_default_filter}
- %{?perl_default_subpackage_tests}
- %description
- Test::Requires checks to see if the module can be loaded; if this fails
- rather than failing tests this *skips all tests*.
- %prep
- %setup -q -n Test-Requires-%{version}
- %build
- %{__perl} Build.PL installdirs=vendor
- %{__perl} Build
- %install
- rm -rf %{buildroot}
- %{__perl} Build 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
- # note the "skipped" warnings indicate success :)
- %{__perl} Build test
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc Changes README
- %{perl_vendorlib}/*
- %{_mandir}/man3/*.3*
- %changelog
- * Mon Jun 30 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.07-1
- - new upstream release.
- * Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.06-1
- - initial build for Vine Linux
- * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.06-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
- * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.06-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Tue Oct 05 2010 Iain Arnell <iarnell@gmail.com> 0.06-1
- - update to latest upstream version
- * Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.03-2
- - Mass rebuild with perl-5.12.0
- * Sat Mar 20 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.03-1
- - specfile by Fedora::App::MaintainerTools 0.006
|