Compare commits
No commits in common. "c8-stream-5.3" and "c8s-stream-5.32" have entirely different histories.
c8-stream-
...
c8s-stream
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/CPAN-2.27.tar.gz
|
||||
SOURCES/CPAN-2.28.tar.gz
|
||||
|
||||
@ -1 +1 @@
|
||||
f14e6be485bff20faa2028a73ee73429c32f0bea SOURCES/CPAN-2.27.tar.gz
|
||||
0609615e9d6b9ba50821aa6a8b14b528f2633ff6 SOURCES/CPAN-2.28.tar.gz
|
||||
|
||||
@ -9,8 +9,8 @@
|
||||
%endif
|
||||
|
||||
Name: perl-CPAN
|
||||
Version: 2.27
|
||||
Release: 2%{?dist}
|
||||
Version: 2.28
|
||||
Release: 5%{?dist}
|
||||
Summary: Query, download and build perl modules from CPAN sites
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/CPAN
|
||||
@ -32,7 +32,6 @@ BuildRequires: perl(File::Path)
|
||||
# Module::Signature not used
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(vars)
|
||||
BuildRequires: sed
|
||||
# Optional:
|
||||
BuildRequires: perl(File::Spec)
|
||||
# YAML::Syck is not used because @ST_PREFS is empty in Makefile.PL
|
||||
@ -154,6 +153,14 @@ BuildRequires: perl(YAML) >= 0.60
|
||||
|
||||
Requires: make
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
# Some subpackages modules are not dual-lived. E.g. "open". If a distribution
|
||||
# on CPAN declares a dependency on such a module, CPAN client will fail
|
||||
# because the only provider is perl distribution.
|
||||
# Another issue is with dual-lived modules whose distribution actually does
|
||||
# not declare all needed core dependencies and the installation would also
|
||||
# fail.
|
||||
# As a result, any CPAN client must run-require the complete perl.
|
||||
Requires: perl
|
||||
Requires: perl(Archive::Tar) >= 1.50
|
||||
%if !%{defined perl_bootstrap}
|
||||
Recommends: perl(CPAN::DistnameInfo)
|
||||
@ -234,10 +241,10 @@ external download clients to fetch distributions from the net.
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
# Change configuration name
|
||||
find -type f -exec sed -i -e 's/XCPANCONFIGNAMEX/cpan/g' {} \;
|
||||
find -type f -exec perl -i -pe 's/XCPANCONFIGNAMEX/cpan/g' {} \;
|
||||
# Remove bundled modules
|
||||
rm -r ./inc/*
|
||||
sed -i -e '/inc\//d' MANIFEST
|
||||
perl -i -ne 'print $_ unless m{^inc/}' MANIFEST
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
@ -261,6 +268,27 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Wed Sep 23 2020 Petr Pisar <ppisar@redhat.com> - 2.28-5
|
||||
- Run-require complete perl
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.28-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.28-3
|
||||
- Perl 5.32 re-rebuild of bootstrapped packages
|
||||
|
||||
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.28-2
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Mon Jun 15 2020 Petr Pisar <ppisar@redhat.com> - 2.28-1
|
||||
- 2.28 bump
|
||||
|
||||
* Fri Jan 31 2020 Petr Pisar <ppisar@redhat.com> - 2.27-4
|
||||
- Enable loading objects from session YAML files (CPAN RT#131615)
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.27-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.27-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user