Update to 0.100003
- New upstream release 0.100003 - The string *EVERYTHING* is now a pattern meaning "trust everything" - Only anchor the regex from Pod; trustme regex are again non-anchored - Use %license - Make %files list more explicit
This commit is contained in:
parent
3ab2381222
commit
23011689b9
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,5 +1 @@
|
|||||||
Pod-Coverage-TrustPod-0.092830.tar.gz
|
/Pod-Coverage-TrustPod-[0-9.]*.tar.gz
|
||||||
/Pod-Coverage-TrustPod-0.092832.tar.gz
|
|
||||||
/Pod-Coverage-TrustPod-0.100000.tar.gz
|
|
||||||
/Pod-Coverage-TrustPod-0.100001.tar.gz
|
|
||||||
/Pod-Coverage-TrustPod-0.100002.tar.gz
|
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
Name: perl-Pod-Coverage-TrustPod
|
Name: perl-Pod-Coverage-TrustPod
|
||||||
Version: 0.100002
|
Version: 0.100003
|
||||||
Release: 9%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Allow a module's pod to contain Pod::Coverage hints
|
Summary: Allow a module's pod to contain Pod::Coverage hints
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
|
||||||
URL: http://search.cpan.org/dist/Pod-Coverage-TrustPod/
|
URL: http://search.cpan.org/dist/Pod-Coverage-TrustPod/
|
||||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Pod-Coverage-TrustPod-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Pod-Coverage-TrustPod-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
# Build:
|
||||||
|
BuildRequires: perl
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
|
||||||
# Run-time:
|
# Run-time:
|
||||||
BuildRequires: perl(base)
|
BuildRequires: perl(base)
|
||||||
BuildRequires: perl(Pod::Coverage::CountParents)
|
BuildRequires: perl(Pod::Coverage::CountParents)
|
||||||
BuildRequires: perl(Pod::Eventual::Simple)
|
BuildRequires: perl(Pod::Eventual::Simple)
|
||||||
BuildRequires: perl(Pod::Find)
|
BuildRequires: perl(Pod::Find)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
# Tests:
|
# Tests:
|
||||||
BuildRequires: perl(Carp::Heavy)
|
BuildRequires: perl(Carp::Heavy)
|
||||||
BuildRequires: perl(lib)
|
BuildRequires: perl(lib)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
# Optional tests:
|
# Explicit dependencies:
|
||||||
BuildRequires: perl(Test::Pod)
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
||||||
|
|
||||||
%{?perl_default_filter}
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This is a Pod::Coverage subclass (actually, a subclass of
|
This is a Pod::Coverage subclass (actually, a subclass of
|
||||||
@ -32,25 +32,31 @@ symbol names trusted.
|
|||||||
%setup -q -n Pod-Coverage-TrustPod-%{version}
|
%setup -q -n Pod-Coverage-TrustPod-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
make pure_install DESTDIR=%{buildroot}
|
||||||
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
%{_fixperms} %{buildroot}
|
||||||
|
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
RELEASE_TESTING=1 make test
|
make test
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc Changes LICENSE README
|
%license LICENSE
|
||||||
%{perl_vendorlib}/*
|
%doc Changes README
|
||||||
%{_mandir}/man3/*
|
%{perl_vendorlib}/Pod/
|
||||||
|
%{_mandir}/man3/Pod::Coverage::TrustPod.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 13 2014 Paul Howarth <paul@city-fan.org> - 0.100003-1
|
||||||
|
- Update to 0.100003
|
||||||
|
- The string *EVERYTHING* is now a pattern meaning "trust everything"
|
||||||
|
- Only anchor the regex from Pod; trustme regex are again non-anchored
|
||||||
|
- Use %%license
|
||||||
|
- Make %%files list more explicit
|
||||||
|
|
||||||
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.100002-9
|
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.100002-9
|
||||||
- Perl 5.20 rebuild
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user