From fd224cad8a26f6e1dee123ca32f1b1b623c35723 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 9 Jun 2020 20:34:42 +0000 Subject: [PATCH] import perl-CPAN-Meta-Check-0.014-6.module+el8.2.0+4278+abcfa81a --- .gitignore | 1 + .perl-CPAN-Meta-Check.metadata | 1 + SPECS/perl-CPAN-Meta-Check.spec | 170 ++++++++++++++++++++++++++++++++ 3 files changed, 172 insertions(+) create mode 100644 .gitignore create mode 100644 .perl-CPAN-Meta-Check.metadata create mode 100644 SPECS/perl-CPAN-Meta-Check.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cfc7a18 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/CPAN-Meta-Check-0.014.tar.gz diff --git a/.perl-CPAN-Meta-Check.metadata b/.perl-CPAN-Meta-Check.metadata new file mode 100644 index 0000000..853a6ad --- /dev/null +++ b/.perl-CPAN-Meta-Check.metadata @@ -0,0 +1 @@ +d185d7834cdb60af12485a1cc07daa8a3efd0a9e SOURCES/CPAN-Meta-Check-0.014.tar.gz diff --git a/SPECS/perl-CPAN-Meta-Check.spec b/SPECS/perl-CPAN-Meta-Check.spec new file mode 100644 index 0000000..46c048f --- /dev/null +++ b/SPECS/perl-CPAN-Meta-Check.spec @@ -0,0 +1,170 @@ +# Run extra test +%if ! (0%{?rhel}) +%bcond_without perl_CPAN_Meta_Check_enables_extra_test +%else +%bcond_with perl_CPAN_Meta_Check_enables_extra_test +%endif + +Name: perl-CPAN-Meta-Check +Summary: Verify requirements in a CPAN::Meta object +Version: 0.014 +Release: 6%{?dist} +License: GPL+ or Artistic +URL: https://metacpan.org/release/CPAN-Meta-Check +Source0: http://cpan.metacpan.org/authors/id/L/LE/LEONT/CPAN-Meta-Check-%{version}.tar.gz +BuildArch: noarch +# Build +BuildRequires: make +BuildRequires: perl-interpreter +BuildRequires: perl-generators +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 +# Module +BuildRequires: perl(base) +BuildRequires: perl(CPAN::Meta::Prereqs) >= 2.132830 +BuildRequires: perl(CPAN::Meta::Requirements) >= 2.121 +BuildRequires: perl(Exporter) +BuildRequires: perl(Module::Metadata) >= 1.000023 +BuildRequires: perl(strict) +BuildRequires: perl(warnings) +# Test +BuildRequires: perl(CPAN::Meta) >= 2.120920 +BuildRequires: perl(Env) +BuildRequires: perl(lib) +BuildRequires: perl(Test::Deep) +BuildRequires: perl(Test::More) >= 0.88 +%if %{with perl_CPAN_Meta_Check_enables_extra_test} +# Extra tests +BuildRequires: perl(blib) +BuildRequires: perl(File::Spec) +BuildRequires: perl(IO::Handle) +BuildRequires: perl(IPC::Open3) +BuildRequires: perl(Pod::Coverage::TrustPod) +BuildRequires: perl(Test::Pod) >= 1.41 +BuildRequires: perl(Test::Pod::Coverage) >= 1.08 +%endif +# Runtime +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) + +%description +This module verifies if requirements described in a CPAN::Meta object are +present. + +%prep +%setup -q -n CPAN-Meta-Check-%{version} + +%build +perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 +make %{?_smp_mflags} + +%install +make install DESTDIR=%{buildroot} + +%check +make test +%if %{with perl_CPAN_Meta_Check_enables_extra_test} +make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" +%endif + +%files +%license LICENSE +%doc Changes README +%{perl_vendorlib}/CPAN/ +%{_mandir}/man3/CPAN::Meta::Check.3* + +%changelog +* Fri Mar 29 2019 Jitka Plesnikova - 0.014-6 +- Rebuild with enable hardening (bug #1636329) + +* Thu Feb 08 2018 Fedora Release Engineering - 0.014-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.014-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jun 05 2017 Jitka Plesnikova - 0.014-3 +- Perl 5.26 rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.014-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Nov 26 2016 Paul Howarth - 0.014-1 +- Update to 0.014 + - Undef versions are now passed through to CPAN::Meta::Requirements for the + check, rather than failing with "Missing version" errors + +* Thu Jul 21 2016 Paul Howarth - 0.013-1 +- Update to 0.013 + - Make tests more resilient against dev versions of dependencies +- BR: perl-generators +- Drop legacy Group: tag +- Take advantage of features in recent EU::MM to simplify flow + +* Sun May 15 2016 Jitka Plesnikova - 0.012-3 +- Perl 5.24 rebuild + +* Thu Feb 04 2016 Fedora Release Engineering - 0.012-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Paul Howarth - 0.012-1 +- Update to 0.012 + - Drop dependency on Exporter 5.57 + +* Thu Jun 18 2015 Fedora Release Engineering - 0.011-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Jun 06 2015 Jitka Plesnikova - 0.011-2 +- Perl 5.22 rebuild + +* Mon Mar 23 2015 Paul Howarth - 0.011-1 +- Update to 0.011 + - Declare the minimum version required for the "merged_requirements" + interface +- Explicitly run the extra tests + +* Mon Feb 2 2015 Paul Howarth - 0.010-1 +- Update to 0.010 + - Bump Module::Metadata prereq for $VERSION parsing (CPAN RT#101095) + - Consistently require same version of CPAN::Meta::Requirements +- Use %%license + +* Thu Aug 28 2014 Jitka Plesnikova - 0.009-3 +- Perl 5.20 rebuild + +* Tue Jul 1 2014 Paul Howarth - 0.009-2 +- Always run the release tests (#1114859) + +* Mon Jun 23 2014 Paul Howarth - 0.009-1 +- Update to 0.009 + - Various POD fixes + +* Sat Jun 07 2014 Fedora Release Engineering - 0.008-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu Oct 17 2013 Paul Howarth - 0.008-1 +- Update to 0.008 + - Switch to using merged_requirements + - Test Env instead of Carp for version overshoot (CPAN RT#89591) + - Document $incdirs in the right function + +* Wed Sep 4 2013 Paul Howarth - 0.007-3 +- Skip the release tests when bootstrapping + +* Sat Aug 03 2013 Fedora Release Engineering - 0.007-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Jul 31 2013 Paul Howarth - 0.007-1 +- Update to 0.007 + - Swap conflicts test, as underscore versions broke it (CPAN RT#87438) + +* Sat Jul 27 2013 Paul Howarth - 0.006-1 +- Update to 0.006 + - Fixed bad dereference during conflicts checking + +* Tue Jul 23 2013 Petr Pisar - 0.005-3 +- Perl 5.18 rebuild + +* Wed May 1 2013 Paul Howarth - 0.005-2 +- Sanitize for Fedora submission + +* Sat Apr 27 2013 Paul Howarth - 0.005-1 +- Initial RPM version