From b84bccaa888047d11f2513686d712864681a4bb3 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Nov 16 2016 13:18:51 +0000 Subject: import rh-perl524-perl-CPAN-2.11-368.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e371ef8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/CPAN-2.10.tar.gz diff --git a/.rh-perl524-perl-CPAN.metadata b/.rh-perl524-perl-CPAN.metadata new file mode 100644 index 0000000..0f31577 --- /dev/null +++ b/.rh-perl524-perl-CPAN.metadata @@ -0,0 +1 @@ +a1b9718bc9cec4313a083fec6c39aefc82d83996 SOURCES/CPAN-2.10.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/CPAN-2.10-Upgrade-to-2.11.patch b/SOURCES/CPAN-2.10-Upgrade-to-2.11.patch new file mode 100644 index 0000000..857a701 --- /dev/null +++ b/SOURCES/CPAN-2.10-Upgrade-to-2.11.patch @@ -0,0 +1,40 @@ +From 4eddce7fa1d61c5f7e02132ae7a5d04101eb6a1c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Wed, 6 May 2015 14:22:13 +0200 +Subject: [PATCH] Upgrade to 2.11 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +perl sources are missing a lof CPAN tests. I did not removed them by +this patch. + +Signed-off-by: Petr Písař +--- + lib/CPAN.pm | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/lib/CPAN.pm b/lib/CPAN.pm +index 93ad482..6096916 100644 +--- a/lib/CPAN.pm ++++ b/lib/CPAN.pm +@@ -2,7 +2,7 @@ + # vim: ts=4 sts=4 sw=4: + use strict; + package CPAN; +-$CPAN::VERSION = '2.10'; ++$CPAN::VERSION = '2.11'; + $CPAN::VERSION =~ s/_//; + + # we need to run chdir all over and we would get at wrong libraries +@@ -318,7 +318,6 @@ Enter 'h' for help. + + }, + $CPAN::VERSION, +- $rl_avail + ) + } + my($continuation) = ""; +-- +2.1.0 + diff --git a/SOURCES/CPAN-2.11-Attemp-to-create-site-library-directories-on-first-t.patch b/SOURCES/CPAN-2.11-Attemp-to-create-site-library-directories-on-first-t.patch new file mode 100644 index 0000000..5e14a43 --- /dev/null +++ b/SOURCES/CPAN-2.11-Attemp-to-create-site-library-directories-on-first-t.patch @@ -0,0 +1,54 @@ +From ba274427f5a508fbac034a4d39480ac4edbc9c19 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Thu, 30 Oct 2014 13:19:16 +0100 +Subject: [PATCH] Attemp to create site library directories on first time +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Some vendors configures site library directories into /usr/local, but +they do not provide the directory on their systems because an +administrator can have a read-only network-mounted file system there. + +When running CPAN for the first time, CPAN cannot find the site +directories and falls back to local::lib. To restore the user +expectations with writable /usr/local, this patch tries to create the +missing directories before checking for their presents. + +Signed-off-by: Petr Písař +--- + lib/CPAN/FirstTime.pm | 18 ++++++++++++++++++ + 1 file changed, 18 insertions(+) + +diff --git a/lib/CPAN/FirstTime.pm b/lib/CPAN/FirstTime.pm +index 918e009..7049513 100644 +--- a/lib/CPAN/FirstTime.pm ++++ b/lib/CPAN/FirstTime.pm +@@ -2058,6 +2058,24 @@ sub _print_urllist { + } + + sub _can_write_to_libdirs { ++ for ($Config{installsitelib}, $Config{installsitearch}) { ++ if (!-d $_) { ++ $CPAN::Frontend->mywarn(sprintf( ++ qq{Perl site library directory "%s" does not exist.\n}, ++ $_)); ++ File::Path::make_path($_, { error => \my $failure }); ++ if (@$failure) { ++ $CPAN::Frontend->mywarn(sprintf( ++ qq{Perl site library directory "%s" } . ++ qq{could not been created: %s.\n}, ++ $_, ${$$failure[0]}{$_})); ++ } else { ++ $CPAN::Frontend->mywarn(sprintf( ++ qq{Perl site library directory "%s" created.\n}, ++ $_)); ++ } ++ } ++ } + return -w $Config{installprivlib} + && -w $Config{installarchlib} + && -w $Config{installsitelib} +-- +2.1.0 + diff --git a/SOURCES/CPAN-2.11-Replace-configuration-directory-string-with-a-marke.patch b/SOURCES/CPAN-2.11-Replace-configuration-directory-string-with-a-marke.patch new file mode 100644 index 0000000..d504a78 --- /dev/null +++ b/SOURCES/CPAN-2.11-Replace-configuration-directory-string-with-a-marke.patch @@ -0,0 +1,164 @@ +From 22a4e38d49b342d0e65f0a0918ccd14df5d26234 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Wed, 28 Jan 2015 13:21:10 +0100 +Subject: [PATCH] Replace configuration directory string with a marker +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +This allows to redefine the configuration directory name at build +time. + +Signed-off-by: Petr Písař +--- + Makefile.PL | 10 +++++----- + README | 10 +++++----- + lib/CPAN.pm | 10 +++++----- + lib/CPAN/HandleConfig.pm | 2 +- + scripts/cpan-mirrors | 2 +- + 5 files changed, 17 insertions(+), 17 deletions(-) + +diff --git a/Makefile.PL b/Makefile.PL +index 2f9917b..7ffd773 100644 +--- a/Makefile.PL ++++ b/Makefile.PL +@@ -332,21 +332,21 @@ record-session : + $(PERL) -Ilib -MCPAN -e '$$CPAN::Suppress_readline=$$CPAN::Echo_readline=1;shell' | tee ttt.out + + run-with-sqlite : +- $(PERL) -I$$HOME/.cpan -Ilib -MCPAN::SQLite -MCPAN::MyConfig -MCPAN -e '$$CPAN::Config->{use_sqlite}++; $$CPAN::Config->{sqlite_dbname}="cpandb-sqlite"; shell' ++ $(PERL) -I$$HOME/.XCPANCONFIGNAMEX -Ilib -MCPAN::SQLite -MCPAN::MyConfig -MCPAN -e '$$CPAN::Config->{use_sqlite}++; $$CPAN::Config->{sqlite_dbname}="cpandb-sqlite"; shell' + + testrun_very_offline : rm_mirrored_by run_emu_offline + + testrun_emu_offline : +- $(PERL) -I$$HOME/.cpan -Ilib -MCPAN::MyConfig -MCPAN -e '@CPAN::Defaultsites = qw(file:///dev/null); $$CPAN::Config->{urllist} = []; shell' ++ $(PERL) -I$$HOME/.XCPANCONFIGNAMEX -Ilib -MCPAN::MyConfig -MCPAN -e '@CPAN::Defaultsites = qw(file:///dev/null); $$CPAN::Config->{urllist} = []; shell' + + rm_mirrored_by : +- rm -f $$HOME/.cpan/sources/MIRRORED.BY* ++ rm -f $$HOME/.XCPANCONFIGNAMEX/sources/MIRRORED.BY* + + testrun_http_only : +- $(PERL) -I$$HOME/.cpan -Ilib -MCPAN::MyConfig -MCPAN -e '$$CPAN::Config->{urllist} = [qw(http://www.planet-elektronik.de/CPAN/)]; shell' ++ $(PERL) -I$$HOME/.XCPANCONFIGNAMEX -Ilib -MCPAN::MyConfig -MCPAN -e '$$CPAN::Config->{urllist} = [qw(http://www.planet-elektronik.de/CPAN/)]; shell' + + urllist : +- $(PERL) -Ilib -MCPAN -MCPAN::FirstTime -e 'CPAN::FirstTime::init("$$ENV{HOME}/.cpan/CPAN/MyConfig", args => [qw(urllist)])' ++ $(PERL) -Ilib -MCPAN -MCPAN::FirstTime -e 'CPAN::FirstTime::init("$$ENV{HOME}/.XCPANCONFIGNAMEX/CPAN/MyConfig", args => [qw(urllist)])' + + runadmin : + $(PERL) -Ilib -MCPAN::Admin -eshell +diff --git a/README b/README +index 5b945ca..0344805 100644 +--- a/README ++++ b/README +@@ -269,7 +269,7 @@ DESCRIPTION + restarting the whole get/make/test/install procedure from scratch. + + Lockfile +- Interactive sessions maintain a lockfile, by default "~/.cpan/.lock". ++ Interactive sessions maintain a lockfile, by default "~/.XCPANCONFIGNAMEX/.lock". + Batch jobs can run without a lockfile and not disturb each other. + + The shell offers to run in *downgraded mode* when another process is +@@ -329,7 +329,7 @@ DESCRIPTION + "install_tested". + + mkmyconfig +- mkmyconfig() writes your own CPAN::MyConfig file into your "~/.cpan/" ++ mkmyconfig() writes your own CPAN::MyConfig file into your "~/.XCPANCONFIGNAMEX/" + directory so that you can save your own preferences instead of the + system-wide ones. + +@@ -526,7 +526,7 @@ CONFIGURATION + + Default values defined in the CPAN/Config.pm file can be overridden in a + user specific file: CPAN/MyConfig.pm. Such a file is best placed in +- "$HOME/.cpan/CPAN/MyConfig.pm", because "$HOME/.cpan" is added to the ++ "$HOME/.XCPANCONFIGNAMEX/CPAN/MyConfig.pm", because "$HOME/.XCPANCONFIGNAMEX" is added to the + search path of the CPAN module before the use() or require() statements. + The mkmyconfig command writes this file for you. + +@@ -1989,8 +1989,8 @@ FAQ + + You may want to configure something like + +- o conf make_arg "| tee -ai /root/.cpan/logs/make.out" +- o conf make_install_arg "| tee -ai /root/.cpan/logs/make_install.out" ++ o conf make_arg "| tee -ai /root/.XCPANCONFIGNAMEX/logs/make.out" ++ o conf make_install_arg "| tee -ai /root/.XCPANCONFIGNAMEX/logs/make_install.out" + + so that STDOUT is captured in a file for later inspection. + +diff --git a/lib/CPAN.pm b/lib/CPAN.pm +index 6096916..4dc4e0b 100644 +--- a/lib/CPAN.pm ++++ b/lib/CPAN.pm +@@ -1708,7 +1708,7 @@ restarting the whole get/make/test/install procedure from scratch. + + =item Lockfile + +-Interactive sessions maintain a lockfile, by default C<~/.cpan/.lock>. ++Interactive sessions maintain a lockfile, by default C<~/.XCPANCONFIGNAMEX/.lock>. + Batch jobs can run without a lockfile and not disturb each other. + + The shell offers to run in I when another process is +@@ -1782,7 +1782,7 @@ C. + + =head2 mkmyconfig + +-mkmyconfig() writes your own CPAN::MyConfig file into your C<~/.cpan/> ++mkmyconfig() writes your own CPAN::MyConfig file into your C<~/.XCPANCONFIGNAMEX/> + directory so that you can save your own preferences instead of the + system-wide ones. + +@@ -1993,7 +1993,7 @@ in a file CPAN/Config.pm. + + Default values defined in the CPAN/Config.pm file can be + overridden in a user specific file: CPAN/MyConfig.pm. Such a file is +-best placed in C<$HOME/.cpan/CPAN/MyConfig.pm>, because C<$HOME/.cpan> is ++best placed in C<$HOME/.XCPANCONFIGNAMEX/CPAN/MyConfig.pm>, because C<$HOME/.XCPANCONFIGNAMEX> is + added to the search path of the CPAN module before the use() or + require() statements. The mkmyconfig command writes this file for you. + +@@ -3685,8 +3685,8 @@ there is too much output to keep track of. + + You may want to configure something like + +- o conf make_arg "| tee -ai /root/.cpan/logs/make.out" +- o conf make_install_arg "| tee -ai /root/.cpan/logs/make_install.out" ++ o conf make_arg "| tee -ai /root/.XCPANCONFIGNAMEX/logs/make.out" ++ o conf make_install_arg "| tee -ai /root/.XCPANCONFIGNAMEX/logs/make_install.out" + + so that STDOUT is captured in a file for later inspection. + +diff --git a/lib/CPAN/HandleConfig.pm b/lib/CPAN/HandleConfig.pm +index e596cbc..dcd2255 100644 +--- a/lib/CPAN/HandleConfig.pm ++++ b/lib/CPAN/HandleConfig.pm +@@ -537,7 +537,7 @@ sub cpan_home_dir_candidates { + push @dirs, $ENV{USERPROFILE} if $ENV{USERPROFILE}; + + $CPAN::Config->{load_module_verbosity} = $old_v; +- my $dotcpan = $^O eq 'VMS' ? '_cpan' : '.cpan'; ++ my $dotcpan = $^O eq 'VMS' ? '_XCPANCONFIGNAMEX' : '.XCPANCONFIGNAMEX'; + @dirs = map { File::Spec->catdir($_, $dotcpan) } grep { defined } @dirs; + return wantarray ? @dirs : $dirs[0]; + } +diff --git a/scripts/cpan-mirrors b/scripts/cpan-mirrors +index fe0e29c..493c140 100644 +--- a/scripts/cpan-mirrors ++++ b/scripts/cpan-mirrors +@@ -143,7 +143,7 @@ to your configuration. + + If you don't have a F file, this program will download one + for you. It looks through your existing C configuration and +-then default locations. It stores it in C<~/.cpan> (or your configured ++then default locations. It stores it in C<~/.XCPANCONFIGNAMEX> (or your configured + location to store files). + + =head1 TO DO +-- +2.1.0 + diff --git a/SPECS/perl-CPAN.spec b/SPECS/perl-CPAN.spec new file mode 100644 index 0000000..5caaf96 --- /dev/null +++ b/SPECS/perl-CPAN.spec @@ -0,0 +1,276 @@ +%{?scl:%scl_package perl-CPAN} + +%global base_version 2.10 + +Name: %{?scl_prefix}perl-CPAN +Version: 2.11 +Release: 368%{?dist} +Summary: Query, download and build perl modules from CPAN sites +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/CPAN/ +Source0: http://www.cpan.org/authors/id/A/AN/ANDK/CPAN-%{base_version}.tar.gz +# Unbundled from perl 5.21.11 +Patch0: CPAN-2.10-Upgrade-to-2.11.patch +# Create site paths for the first time, bug #1158873, CPAN RT#99905 +Patch1: CPAN-2.11-Attemp-to-create-site-library-directories-on-first-t.patch +# Change configuration directory name +Patch2: CPAN-2.11-Replace-configuration-directory-string-with-a-marke.patch +BuildArch: noarch +BuildRequires: coreutils +BuildRequires: findutils +BuildRequires: make +BuildRequires: %{?scl_prefix}perl +BuildRequires: %{?scl_prefix}perl-generators +BuildRequires: %{?scl_prefix}perl(Config) +BuildRequires: %{?scl_prefix}perl(ExtUtils::MakeMaker) +BuildRequires: %{?scl_prefix}perl(File::Basename) +BuildRequires: %{?scl_prefix}perl(File::Path) +BuildRequires: %{?scl_prefix}perl(strict) +BuildRequires: %{?scl_prefix}perl(vars) +BuildRequires: sed +# Optional: +BuildRequires: %{?scl_prefix}perl(File::Spec) +%if !%{defined perl_bootstrap} && !%{defined perl_small} +BuildRequires: %{?scl_prefix}perl(YAML::Syck) +%endif + +# Run-time: +# Prefer Archive::Tar and Compress::Zlib over tar and gzip +BuildRequires: %{?scl_prefix}perl(Archive::Tar) >= 1.50 +%if !%{defined perl_bootstrap} +BuildRequires: %{?scl_prefix}perl(Archive::Zip) +%endif +BuildRequires: %{?scl_prefix}perl(autouse) +BuildRequires: %{?scl_prefix}perl(base) +BuildRequires: %{?scl_prefix}perl(Carp) +BuildRequires: %{?scl_prefix}perl(constant) +BuildRequires: %{?scl_prefix}perl(Compress::Zlib) +BuildRequires: %{?scl_prefix}perl(CPAN::Meta::Requirements) >= 2.121 +BuildRequires: %{?scl_prefix}perl(Cwd) +BuildRequires: %{?scl_prefix}perl(Data::Dumper) +# Devel::Size not used at tests +BuildRequires: %{?scl_prefix}perl(DirHandle) +BuildRequires: %{?scl_prefix}perl(Dumpvalue) +BuildRequires: %{?scl_prefix}perl(Exporter) +# ExtUtils::Manifest not used at tests +BuildRequires: %{?scl_prefix}perl(Fcntl) +BuildRequires: %{?scl_prefix}perl(File::Copy) +BuildRequires: %{?scl_prefix}perl(File::Find) +# File::HomeDir 0.65 not used at tests +BuildRequires: %{?scl_prefix}perl(File::Spec::Functions) +BuildRequires: %{?scl_prefix}perl(File::Temp) >= 0.16 +BuildRequires: %{?scl_prefix}perl(FileHandle) +BuildRequires: %{?scl_prefix}perl(Getopt::Std) +# HTTP::Date is optional, prefer in-core Time::Local +# HTTP::Request is optional +BuildRequires: %{?scl_prefix}perl(HTTP::Tiny) >= 0.005 +BuildRequires: %{?scl_prefix}perl(if) +BuildRequires: %{?scl_prefix}perl(lib) +# local::lib is optional +# LWP is optional, prefer HTTP::Tiny and Net::FTP +# LWP::UserAgent is optional +# Mac::BuildTools not needed +# Mac::Files not needed +# Module::Signature is optional +# Net::Config not used at tests +# Net::FTP not used at tests +BuildRequires: %{?scl_prefix}perl(Net::Ping) +BuildRequires: %{?scl_prefix}perl(overload) +BuildRequires: %{?scl_prefix}perl(POSIX) +BuildRequires: %{?scl_prefix}perl(Safe) +BuildRequires: %{?scl_prefix}perl(Sys::Hostname) +BuildRequires: %{?scl_prefix}perl(Term::ReadLine) +BuildRequires: %{?scl_prefix}perl(Text::ParseWords) +BuildRequires: %{?scl_prefix}perl(Text::Wrap) +# Time::Local not used at tests +# URI not used at tests +# URI::Escape not used at tests +# URI::URL 0.08 is optional +# User::pwent not used at tests +BuildRequires: %{?scl_prefix}perl(warnings) +# Optional: +BuildRequires: %{?scl_prefix}perl(CPAN::Meta) >= 2.110350 +# Crypt::OpenPGP not used at tests +# Digest::MD5 not used at tests +BuildRequires: %{?scl_prefix}perl(Digest::SHA) +# Keep MIME::Base64 optional +BuildRequires: %{?scl_prefix}perl(Module::Build) + +# Tests: +BuildRequires: %{?scl_prefix}perl(FindBin) +BuildRequires: %{?scl_prefix}perl(Pod::Usage) +BuildRequires: %{?scl_prefix}perl(Test::More) + +# Optional tests: +BuildRequires: %{?scl:%{_root_bindir}}%{?!scl:%{_bindir}}/gpg +# Digest::SHA1 not needed if Digest::SHA is available +# Digest::SHA::PurePerl not needed if Digest::SHA is available +%if !%{defined perl_bootstrap} && !%{defined perl_small} +BuildRequires: %{?scl_prefix}perl(Expect) +%endif +BuildRequires: %{?scl_prefix}perl(Hash::Util) +%if !%{defined perl_bootstrap} && !%{defined perl_small} +# Kwalify not yet packaged +BuildRequires: %{?scl_prefix}perl(Module::Signature) >= 0.66 +BuildRequires: %{?scl_prefix}perl(Perl::Version) +%endif +BuildRequires: %{?scl_prefix}perl(Socket) +%if !%{defined perl_bootstrap} && !%{defined perl_small} +BuildRequires: %{?scl_prefix}perl(Sort::Versions) +# Test::MinimumVersion not used +# Test::Perl::Critic not used +BuildRequires: %{?scl_prefix}perl(Test::Pod) >= 1.00 +BuildRequires: %{?scl_prefix}perl(Test::Pod::Coverage) >= 0.18 +BuildRequires: %{?scl_prefix}perl(YAML) >= 0.60 +%endif + +Requires: make +Requires: %{?scl_prefix}perl(:MODULE_COMPAT_%(%{?scl:scl enable %{scl} '}eval "$(perl -V:version)";echo $version%{?scl:'})) +Requires: %{?scl_prefix}perl(Archive::Tar) >= 1.50 +Requires: %{?scl_prefix}perl(CPAN::Meta::Requirements) >= 2.121 +Requires: %{?scl_prefix}perl(Data::Dumper) +%if !%{defined perl_bootstrap} +Requires: %{?scl_prefix}perl(Devel::Size) +%endif +Requires: %{?scl_prefix}perl(ExtUtils::Manifest) +%if !%{defined perl_bootstrap} +Requires: %{?scl_prefix}perl(File::HomeDir) >= 0.65 +%endif +Requires: %{?scl_prefix}perl(File::Temp) >= 0.16 +Requires: %{?scl_prefix}perl(lib) +Requires: %{?scl_prefix}perl(Net::Config) +Requires: %{?scl_prefix}perl(Net::FTP) +Requires: %{?scl_prefix}perl(POSIX) +Requires: %{?scl_prefix}perl(Term::ReadLine) +Requires: %{?scl_prefix}perl(Time::Local) +%if !%{defined perl_bootstrap} +Requires: %{?scl_prefix}perl(URI) +Requires: %{?scl_prefix}perl(URI::Escape) +%endif +Requires: %{?scl_prefix}perl(User::pwent) +# Optional but higly recommended: +%if !%{defined perl_bootstrap} +Requires: %{?scl_prefix}perl(Archive::Zip) +Requires: %{?scl_prefix}perl(Compress::Bzip2) +Requires: %{?scl_prefix}perl(CPAN::Meta) >= 2.110350 +%endif +Requires: %{?scl_prefix}perl(Compress::Zlib) +Requires: %{?scl_prefix}perl(Digest::MD5) +# CPAN encourages Digest::SHA strongly because of integrity checks +Requires: %{?scl_prefix}perl(Digest::SHA) +Requires: %{?scl_prefix}perl(Dumpvalue) +Requires: %{?scl_prefix}perl(ExtUtils::CBuilder) +%if ! %{defined perl_bootstrap} +# Avoid circular deps local::lib -> Module::Install -> CPAN when bootstraping +# local::lib recommended by CPAN::FirstTime default choice, bug #1122498 +Requires: %{?scl_prefix}perl(local::lib) +%endif +Requires: %{?scl_prefix}perl(Module::Build) +%if !%{defined perl_bootstrap} +Requires: %{?scl_prefix}perl(Text::Glob) +%endif +Provides: %{?scl_prefix}cpan = %{version} + +%if 0%{?rhel} < 7 +# RPM 4.8 style +%{?filter_setup: +# Filter non-Linux dependencies +%filter_from_requires /^%{?scl_prefix}perl(Mac::BuildTools)/d +# Filter under-specified dependencies +%filter_from_requires /^%{?scl_prefix}perl(CPAN::Meta::Requirements)$/d +%?perl_default_filter +} +%else +# RPM 4.9 style +# Filter non-Linux dependencies +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^%{?scl_prefix}perl\\(Mac::BuildTools\\) +# Filter under-specified dependencies +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^%{?scl_prefix}perl\\(CPAN::Meta::Requirements\\) +%endif + + +%description +The CPAN module automates or at least simplifies the make and install of +perl modules and extensions. It includes some primitive searching +capabilities and knows how to use LWP, HTTP::Tiny, Net::FTP and certain +external download clients to fetch distributions from the net. + +%prep +%setup -q -n CPAN-%{base_version} +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 +# Change configuration name +find -type f -exec sed -i -e 's/XCPANCONFIGNAMEX/cpan%{?scl:-%{scl}}/g' {} \; +# Remove bundled modules +rm -r ./inc/* +sed -i -e '/inc\//d' MANIFEST + +%build +%{?scl:scl enable %{scl} '}perl Makefile.PL INSTALLDIRS=vendor && make %{?_smp_mflags}%{?scl:'} + +%install +%{?scl:scl enable %{scl} '}make pure_install DESTDIR=$RPM_BUILD_ROOT%{?scl:'} +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +%{?scl:scl enable %{scl} '}make test%{?scl:'} + +%files +%doc Changes PAUSE*.pub README Todo +%{_bindir}/* +%{perl_vendorlib}/* +%{_mandir}/man1/* +%{_mandir}/man3/* + +%changelog +* Sun Jul 24 2016 Petr Pisar - 2.11-368 +- Rebuild without bootstrap + +* Tue Jul 12 2016 Petr Pisar - 2.11-367 +- SCL + +* Wed May 18 2016 Jitka Plesnikova - 2.11-366 +- Perl 5.24 re-rebuild of bootstrapped packages + +* Sat May 14 2016 Jitka Plesnikova - 2.11-365 +- Increase release to favour standalone package + +* Thu Feb 04 2016 Fedora Release Engineering - 2.11-349 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Dec 15 2015 Petr Pisar - 2.11-348 +- Require make package + +* Thu Jun 18 2015 Fedora Release Engineering - 2.11-347 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Jun 10 2015 Jitka Plesnikova - 2.11-346 +- Perl 5.22 re-rebuild of bootstrapped packages + +* Thu Jun 04 2015 Jitka Plesnikova - 2.11-345 +- Increase release to favour standalone package + +* Thu Jun 04 2015 Jitka Plesnikova - 2.11-2 +- Perl 5.22 rebuild + +* Wed May 06 2015 Petr Pisar - 2.11-1 +- 2.11 bump in order to dual-live with perl 5.22 + +* Fri Mar 13 2015 Petr Pisar - 2.10-1 +- 2.10 bump + +* Wed Jan 28 2015 Petr Pisar - 2.05-309 +- Allow changing the configuration directory name + +* Thu Oct 30 2014 Petr Pisar - 2.05-308 +- Create site paths for the first time (bug #1158873) + +* Wed Sep 10 2014 Petr Pisar 2.05-307 +- Synchronize to perl.spec modifications +- Disable non-core modules when bootstrapping + +* Tue Apr 22 2014 Petr Pisar 2.05-1 +- Specfile autogenerated by cpanspec 1.78.