From b16023c1ab738a0ed3a8cab84540a574809b1a8b Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Jun 04 2015 07:44:34 +0000 Subject: import rh-perl520-perl-ExtUtils-MakeMaker-7.04-1.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6fead31 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/ExtUtils-MakeMaker-7.04.tar.gz diff --git a/.rh-perl520-perl-ExtUtils-MakeMaker.metadata b/.rh-perl520-perl-ExtUtils-MakeMaker.metadata new file mode 100644 index 0000000..6a15e4b --- /dev/null +++ b/.rh-perl520-perl-ExtUtils-MakeMaker.metadata @@ -0,0 +1 @@ +a85fb2d27f98a08a7bf0028e1c432446d3ad5dde SOURCES/ExtUtils-MakeMaker-7.04.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/ExtUtils-MakeMaker-7.00-Unbundle-Encode-Locale.patch b/SOURCES/ExtUtils-MakeMaker-7.00-Unbundle-Encode-Locale.patch new file mode 100644 index 0000000..fafe623 --- /dev/null +++ b/SOURCES/ExtUtils-MakeMaker-7.00-Unbundle-Encode-Locale.patch @@ -0,0 +1,33 @@ +From 04664fb41a3eaa5bc688c4095107486f8c6d2f4c Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Mon, 27 Oct 2014 16:55:18 +0100 +Subject: [PATCH] Unbundle Encode::Locale +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Petr Písař +--- + lib/ExtUtils/MakeMaker.pm | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm +index 04ec5a3..759c079 100644 +--- a/lib/ExtUtils/MakeMaker.pm ++++ b/lib/ExtUtils/MakeMaker.pm +@@ -10,9 +10,9 @@ use ExtUtils::MakeMaker::Config; + use version; # ensure we always have version.pm + use Carp; + use File::Path; +-my $CAN_DECODE = eval { require ExtUtils::MakeMaker::Locale; }; # 2 birds, 1 stone +-eval { ExtUtils::MakeMaker::Locale::reinit('UTF-8') } +- if $CAN_DECODE and $ExtUtils::MakeMaker::Locale::ENCODING_LOCALE eq 'US-ASCII'; ++my $CAN_DECODE = eval { require Encode::Locale; }; # 2 birds, 1 stone ++eval { Encode::Locale::reinit('UTF-8') } ++ if $CAN_DECODE and $Encode::Locale::ENCODING_LOCALE eq 'US-ASCII'; + + our $Verbose = 0; # exported + our @Parent; # needs to be localized +-- +1.9.3 + diff --git a/SOURCES/ExtUtils-MakeMaker-7.02-Write-UTF-8-encoded-chunk-if-Locale-Encode-is-not-av.patch b/SOURCES/ExtUtils-MakeMaker-7.02-Write-UTF-8-encoded-chunk-if-Locale-Encode-is-not-av.patch new file mode 100644 index 0000000..563ba4b --- /dev/null +++ b/SOURCES/ExtUtils-MakeMaker-7.02-Write-UTF-8-encoded-chunk-if-Locale-Encode-is-not-av.patch @@ -0,0 +1,36 @@ +From 8907d813767b9b15426826693762fa7542afedc9 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Tue, 11 Nov 2014 14:30:08 +0100 +Subject: [PATCH] Write UTF-8-encoded chunk if Locale::Encode is not available +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +CPAN RT#100268 + +Signed-off-by: Petr Písař +--- + lib/ExtUtils/MakeMaker.pm | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm +index 86e6d83..248e8f4 100644 +--- a/lib/ExtUtils/MakeMaker.pm ++++ b/lib/ExtUtils/MakeMaker.pm +@@ -1195,11 +1195,11 @@ sub flush { + binmode $fh, ':encoding(locale)' if $CAN_DECODE; + + for my $chunk (@{$self->{RESULT}}) { +- my $to_write = "$chunk\n"; ++ my $to_write = "$chunk"; + if (!$CAN_DECODE && $] > 5.008) { + utf8::encode $to_write; + } +- print $fh "$chunk\n" ++ print $fh "$to_write\n" + or die "Can't write to MakeMaker.tmp: $!"; + } + +-- +1.9.3 + diff --git a/SOURCES/ExtUtils-MakeMaker-7.04-Link-to-libperl-explicitly-on-Linux.patch b/SOURCES/ExtUtils-MakeMaker-7.04-Link-to-libperl-explicitly-on-Linux.patch new file mode 100644 index 0000000..c99fdbd --- /dev/null +++ b/SOURCES/ExtUtils-MakeMaker-7.04-Link-to-libperl-explicitly-on-Linux.patch @@ -0,0 +1,52 @@ +From 2f3b92290fd492e9155bbc60b959316e7c704e87 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Tue, 2 Jul 2013 10:28:15 +0200 +Subject: [PATCH] Link to libperl explicitly on Linux +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + + + + +Signed-off-by: Petr Písař +--- + lib/ExtUtils/MM_Unix.pm | 8 +++++++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm +index 8e07011..8cdcb85 100644 +--- a/lib/ExtUtils/MM_Unix.pm ++++ b/lib/ExtUtils/MM_Unix.pm +@@ -31,6 +31,7 @@ BEGIN { + $Is{IRIX} = $^O eq 'irix'; + $Is{NetBSD} = $^O eq 'netbsd'; + $Is{Interix} = $^O eq 'interix'; ++ $Is{Linux} = $^O eq 'linux'; + $Is{SunOS4} = $^O eq 'sunos'; + $Is{Solaris} = $^O eq 'solaris'; + $Is{SunOS} = $Is{SunOS4} || $Is{Solaris}; +@@ -955,7 +956,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPO + + my $libs = '$(LDLOADLIBS)'; + +- if (($Is{NetBSD} || $Is{Interix} || $Is{Android}) && $Config{'useshrplib'} eq 'true') { ++ if (($Is{Linux} || $Is{NetBSD} || $Is{Interix} || $Is{Android}) && $Config{'useshrplib'} eq 'true') { + # Use nothing on static perl platforms, and to the flags needed + # to link against the shared libperl library on shared perl + # platforms. We peek at lddlflags to see if we need -Wl,-R +@@ -968,6 +969,11 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPO + # The Android linker will not recognize symbols from + # libperl unless the module explicitly depends on it. + $libs .= ' "-L$(PERL_INC)" -lperl'; ++ } else { ++ if ($ENV{PERL_CORE}) { ++ $libs .= ' -L$(PERL_INC)'; ++ } ++ $libs .= ' -lperl'; + } + } + +-- +1.9.3 + diff --git a/SOURCES/ExtUtils-MakeMaker-7.04-USE_MM_LD_RUN_PATH.patch b/SOURCES/ExtUtils-MakeMaker-7.04-USE_MM_LD_RUN_PATH.patch new file mode 100644 index 0000000..b4cd23b --- /dev/null +++ b/SOURCES/ExtUtils-MakeMaker-7.04-USE_MM_LD_RUN_PATH.patch @@ -0,0 +1,136 @@ +From 28f0571bcdd3ab678d60d7a755572a114f46c03d Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Thu, 12 Jan 2012 17:05:19 +0100 +Subject: [PATCH] Do not set RPATH by default +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Former behavior can be forced by setting USE_MM_LD_RUN_PATH +environment variable to 1. + +This is copy from `perl' package. +See . + +Signed-off-by: Petr Písař +--- + lib/ExtUtils/Liblist.pm | 5 ++++ + lib/ExtUtils/MM_Unix.pm | 2 +- + lib/ExtUtils/MakeMaker.pm | 58 +++++++++++++++++++++++++++++++++++++++++++++-- + 3 files changed, 62 insertions(+), 3 deletions(-) + +diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm +index 85ebbf5..ec8ec21 100644 +--- a/lib/ExtUtils/Liblist.pm ++++ b/lib/ExtUtils/Liblist.pm +@@ -88,6 +88,11 @@ libraries. LD_RUN_PATH is a colon separated list of the directories + in LDLOADLIBS. It is passed as an environment variable to the process + that links the shared library. + ++Fedora extension: This generation of LD_RUN_PATH is disabled by default. ++To use the generated LD_RUN_PATH for all links, set the USE_MM_LD_RUN_PATH ++MakeMaker object attribute / argument, (or set the $USE_MM_LD_RUN_PATH ++environment variable). ++ + =head2 BSLOADLIBS + + List of those libraries that are needed but can be linked in +diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm +index 4ec32a3..8e07011 100644 +--- a/lib/ExtUtils/MM_Unix.pm ++++ b/lib/ExtUtils/MM_Unix.pm +@@ -972,7 +972,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPO + } + + my $ld_run_path_shell = ""; +- if ($self->{LD_RUN_PATH} ne "") { ++ if (($self->{LD_RUN_PATH} ne "") && ($self->{USE_MM_LD_RUN_PATH})) { + $ld_run_path_shell = 'LD_RUN_PATH="$(LD_RUN_PATH)" '; + } + +diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm +index df5acdf..1a5f045 100644 +--- a/lib/ExtUtils/MakeMaker.pm ++++ b/lib/ExtUtils/MakeMaker.pm +@@ -301,7 +301,7 @@ sub full_setup { + PERM_DIR PERM_RW PERM_RWX MAGICXS + PL_FILES PM PM_FILTER PMLIBDIRS PMLIBPARENTDIRS POLLUTE + PREREQ_FATAL PREREQ_PM PREREQ_PRINT PRINT_PREREQ +- SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST VERSION VERSION_FROM XS XSOPT XSPROTOARG ++ SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST USE_MM_LD_RUN_PATH VERSION VERSION_FROM XS XSOPT XSPROTOARG + XS_VERSION clean depend dist dynamic_lib linkext macro realclean + tool_autosplit + +@@ -436,7 +436,27 @@ sub new { + # PRINT_PREREQ is RedHatism. + if ("@ARGV" =~ /\bPRINT_PREREQ\b/) { + $self->_PRINT_PREREQ; +- } ++ } ++ ++ # USE_MM_LD_RUN_PATH - another RedHatism to disable automatic RPATH generation ++ if ( ( ! $self->{USE_MM_LD_RUN_PATH} ) ++ &&( ("@ARGV" =~ /\bUSE_MM_LD_RUN_PATH(=([01]))?\b/) ++ ||( exists( $ENV{USE_MM_LD_RUN_PATH} ) ++ &&( $ENV{USE_MM_LD_RUN_PATH} =~ /([01])?$/ ) ++ ) ++ ) ++ ) ++ { ++ my $v = $1; ++ if( $v ) ++ { ++ $v = ($v=~/=([01])$/)[0]; ++ }else ++ { ++ $v = 1; ++ }; ++ $self->{USE_MM_LD_RUN_PATH}=$v; ++ }; + + print "MakeMaker (v$VERSION)\n" if $Verbose; + if (-f "MANIFEST" && ! -f "Makefile" && ! $ENV{PERL_CORE}){ +@@ -2714,6 +2734,40 @@ precedence. A typemap in the current directory has highest + precedence, even if it isn't listed in TYPEMAPS. The default system + typemap has lowest precedence. + ++=item USE_MM_LD_RUN_PATH ++ ++boolean ++The Fedora perl MakeMaker distribution differs from the standard ++upstream release in that it disables use of the MakeMaker generated ++LD_RUN_PATH by default, UNLESS this attribute is specified , or the ++USE_MM_LD_RUN_PATH environment variable is set during the MakeMaker run. ++ ++The upstream MakeMaker will set the ld(1) environment variable LD_RUN_PATH ++to the concatenation of every -L ld(1) option directory in which a -l ld(1) ++option library is found, which is used as the ld(1) -rpath option if none ++is specified. This means that, if your application builds shared libraries ++and your MakeMaker application links to them, that the absolute paths of the ++libraries in the build tree will be inserted into the RPATH header of all ++MakeMaker generated binaries, and that such binaries will be unable to link ++to these libraries if they do not still reside in the build tree directories ++(unlikely) or in the system library directories (/lib or /usr/lib), regardless ++of any LD_LIBRARY_PATH setting. So if you specified -L../mylib -lmylib , and ++ your 'libmylib.so' gets installed into /some_directory_other_than_usr_lib, ++ your MakeMaker application will be unable to link to it, even if LD_LIBRARY_PATH ++is set to include /some_directory_other_than_usr_lib, because RPATH overrides ++LD_LIBRARY_PATH. ++ ++So for Fedora MakeMaker builds LD_RUN_PATH is NOT generated by default for ++every link. You can still use explicit -rpath ld options or the LD_RUN_PATH ++environment variable during the build to generate an RPATH for the binaries. ++ ++You can set the USE_MM_LD_RUN_PATH attribute to 1 on the MakeMaker command ++line or in the WriteMakefile arguments to enable generation of LD_RUN_PATH ++for every link command. ++ ++USE_MM_LD_RUN_PATH will default to 1 (LD_RUN_PATH will be used) IF the ++$USE_MM_LD_RUN_PATH environment variable is set during a MakeMaker run. ++ + =item VENDORPREFIX + + Like PERLPREFIX, but only for the vendor install locations. +-- +1.9.3 + diff --git a/SOURCES/ExtUtils-MakeMaker-7.04-Unbundle-version.patch b/SOURCES/ExtUtils-MakeMaker-7.04-Unbundle-version.patch new file mode 100644 index 0000000..9f5a73b --- /dev/null +++ b/SOURCES/ExtUtils-MakeMaker-7.04-Unbundle-version.patch @@ -0,0 +1,29 @@ +From dd4d8926703b8be0e94aae15a5d574992be20dbe Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Mon, 27 Oct 2014 16:11:38 +0100 +Subject: [PATCH] Unbundle version +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Petr Písař +--- + lib/ExtUtils/MakeMaker.pm | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm +index 1a5f045..71c3751 100644 +--- a/lib/ExtUtils/MakeMaker.pm ++++ b/lib/ExtUtils/MakeMaker.pm +@@ -7,7 +7,7 @@ BEGIN {require 5.006;} + + require Exporter; + use ExtUtils::MakeMaker::Config; +-use ExtUtils::MakeMaker::version; # ensure we always have our fake version.pm ++use version; # ensure we always have version.pm + use Carp; + use File::Path; + my $CAN_DECODE = eval { require ExtUtils::MakeMaker::Locale; }; # 2 birds, 1 stone +-- +1.9.3 + diff --git a/SPECS/perl-ExtUtils-MakeMaker.spec b/SPECS/perl-ExtUtils-MakeMaker.spec new file mode 100644 index 0000000..bbcce4e --- /dev/null +++ b/SPECS/perl-ExtUtils-MakeMaker.spec @@ -0,0 +1,270 @@ +%global cpan_name ExtUtils-MakeMaker +%global cpan_version 7.04 + +%{?scl:%scl_package perl-%{cpan_name}} + +Name: %{?scl_prefix}perl-%{cpan_name} +Version: %(echo '%{cpan_version}' | tr _ .) +Release: 1%{?dist} +Summary: Create a module Makefile +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/%{cpan_name}/ +Source0: http://www.cpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{cpan_version}.tar.gz +# Do not set RPATH to perl shared-library modules by default. Bug #773622. +# This is copy from `perl' package. This is distributor extension. +Patch0: %{cpan_name}-7.04-USE_MM_LD_RUN_PATH.patch +# Link to libperl.so explicitly. Bug #960048. +Patch1: %{cpan_name}-7.04-Link-to-libperl-explicitly-on-Linux.patch +# Unbundle version modules +Patch2: ExtUtils-MakeMaker-7.04-Unbundle-version.patch +# Unbundle Encode::Locale module +Patch3: ExtUtils-MakeMaker-7.00-Unbundle-Encode-Locale.patch +# Cope with missing Encode::Locale, CPAN RT#100268 +Patch4: ExtUtils-MakeMaker-7.02-Write-UTF-8-encoded-chunk-if-Locale-Encode-is-not-av.patch +BuildArch: noarch +BuildRequires: %{?scl_prefix}perl +# Makefile.Pl uses ExtUtils::MakeMaker from ./lib +BuildRequires: %{?scl_prefix}perl(Carp) +BuildRequires: %{?scl_prefix}perl(Config) +BuildRequires: %{?scl_prefix}perl(Cwd) +BuildRequires: %{?scl_prefix}perl(Encode) +BuildRequires: %{?scl_prefix}perl(Exporter) +BuildRequires: %{?scl_prefix}perl(File::Basename) +BuildRequires: %{?scl_prefix}perl(File::Path) +BuildRequires: %{?scl_prefix}perl(File::Spec) >= 0.8 +BuildRequires: %{?scl_prefix}perl(lib) +BuildRequires: %{?scl_prefix}perl(strict) +BuildRequires: %{?scl_prefix}perl(vars) +BuildRequires: %{?scl_prefix}perl(version) +BuildRequires: %{?scl_prefix}perl(warnings) +# If an XS module is compiled, xsubpp(1) is needed +BuildRequires: %{?scl_prefix}perl-ExtUtils-ParseXS +# Tests: +BuildRequires: %{?scl_prefix}perl(AutoSplit) +BuildRequires: %{?scl_prefix}perl(base) +BuildRequires: %{?scl_prefix}perl(CPAN::Meta) +BuildRequires: %{?scl_prefix}perl(Data::Dumper) +BuildRequires: %{?scl_prefix}perl(DirHandle) +BuildRequires: %{?scl_prefix}perl(DynaLoader) +BuildRequires: %{?scl_prefix}perl(ExtUtils::Command) >= 1.16 +BuildRequires: %{?scl_prefix}perl(ExtUtils::Install) >= 1.52 +BuildRequires: %{?scl_prefix}perl(ExtUtils::Installed) +BuildRequires: %{?scl_prefix}perl(ExtUtils::Manifest) >= 1.65 +BuildRequires: %{?scl_prefix}perl(File::Find) +BuildRequires: %{?scl_prefix}perl(File::Temp) >= 0.22 +BuildRequires: %{?scl_prefix}perl(Getopt::Long) +BuildRequires: %{?scl_prefix}perl(IO::File) +# IO::Handle not used +BuildRequires: %{?scl_prefix}perl(less) +BuildRequires: %{?scl_prefix}perl(overload) +BuildRequires: %{?scl_prefix}perl(Parse::CPAN::Meta) >= 1.4400 +BuildRequires: %{?scl_prefix}perl(Pod::Man) +BuildRequires: %{?scl_prefix}perl(POSIX) +BuildRequires: %{?scl_prefix}perl(Scalar::Util) >= 1.13 +BuildRequires: %{?scl_prefix}perl(subs) +BuildRequires: %{?scl_prefix}perl(Test::Harness) +BuildRequires: %{?scl_prefix}perl(Test::More) +# threads::shared not used +# XSLoader not used +# Optional tests +BuildRequires: %{?scl_prefix}perl(ExtUtils::CBuilder) +BuildRequires: %{?scl_prefix}perl(PerlIO) +# Keep YAML optional +# Keep YAML::Tiny optional +Requires: %{?scl_prefix}perl(:MODULE_COMPAT_%(%{?scl:scl enable %{scl} '}eval "$(perl -V:version)";echo $version%{?scl:'})) +# CPAN::Meta is optional +Requires: %{?scl_prefix}perl(Data::Dumper) +Requires: %{?scl_prefix}perl(DynaLoader) +# Encode is needed for producing POD with =encoding statement correctly +Requires: %{?scl_prefix}perl(Encode) +# Keep unbundled Encode::Locale optional, it's not in the core +Requires: %{?scl_prefix}perl(ExtUtils::Command) >= 1.16 +Requires: %{?scl_prefix}perl(ExtUtils::Install) >= 1.52 +Requires: %{?scl_prefix}perl(ExtUtils::Manifest) >= 1.65 +# ExtUtils::XSSymSet is not needed (VMS only) +Requires: %{?scl_prefix}perl(File::Find) +Requires: %{?scl_prefix}perl(File::Spec) >= 0.8 +Requires: %{?scl_prefix}perl(Getopt::Long) +# Optional Pod::Man is needed for generating manual pages from POD +Requires: %{?scl_prefix}perl(Pod::Man) +Requires: %{?scl_prefix}perl(POSIX) +Requires: %{?scl_prefix}perl(Test::Harness) +# Time::HiRes is optional +# Text::ParseWords is not needed (Win32 only) +Requires: %{?scl_prefix}perl(version) +# VMS::Filespec is not needed (VMS only) +# Win32 is not needed (Win32 only) +# If an XS module is compiled, xsubpp(1) is needed +Requires: %{?scl_prefix}perl-ExtUtils-ParseXS + +# RPM 4.8 style +%{?filter_setup: +# Do not export underspecified dependencies +%filter_from_requires /^%{?scl_prefix}perl(File::Spec)\s*$/d +# Do not export private redefinitions +%filter_from_provides /^%{?scl_prefix}perl(DynaLoader)/d +%filter_from_provides /^%{?scl_prefix}perl(ExtUtils::MakeMaker::_version)/d +%?perl_default_filter +} +# RPM 4.9 style +# Do not export underspecified dependencies +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^%{?scl_prefix}perl\\(File::Spec\\)\s*$ +# Do not export private redefinitions +%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^%{?scl_prefix}perl\\(DynaLoader|ExtUtils::MakeMaker::_version\\) + +%description +This utility is designed to write a Makefile for an extension module from a +Makefile.PL. It is based on the Makefile.SH model provided by Andy +Dougherty and the perl5-porters. + +%prep +%setup -q -n ExtUtils-MakeMaker-%{cpan_version} +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 +%patch4 -p1 +# Remove bundled modules +rm -rf bundled +sed -i -e '/^bundled\// d' MANIFEST +rm -rf t/lib/Test +sed -i -e '/^t\/lib\/Test\// d' MANIFEST +rm -rf lib/ExtUtils/MakeMaker/version{,.pm} +sed -i -e '/^lib\/ExtUtils\/MakeMaker\/version[\/\.]/ d' MANIFEST +rm -rf lib/ExtUtils/MakeMaker/Locale.pm +sed -i -e '/^lib\/ExtUtils\/MakeMaker\/Locale\.pm/ d' MANIFEST + +%build +BUILDING_AS_PACKAGE=1 %{?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 CONTRIBUTING NOTES README +%{_bindir}/* +%{perl_vendorlib}/* +%{_mandir}/man1/* +%{_mandir}/man3/* + +%changelog +* Fri Dec 05 2014 Petr Pisar - 7.04-1 +- 7.04 bump + +* Tue Nov 11 2014 Petr Pisar - 7.02-1 +- 7.02 bump +- Cope with missing Encode::Locale + +* Wed Nov 05 2014 Petr Pisar - 7.00-2 +- Fix building with older xsubpp + +* Mon Oct 27 2014 Petr Pisar - 7.00-1 +- 7.00 bump + +* Fri Oct 24 2014 Petr Pisar - 6.98-311 +- Require perl-ExtUtils-ParseXS because of xsubpp + +* Wed Sep 03 2014 Jitka Plesnikova - 6.98-310 +- Increase release to favour standalone package + +* Wed Aug 27 2014 Jitka Plesnikova - 6.98-3 +- Perl 5.20 rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 6.98-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 02 2014 Petr Pisar - 6.98-1 +- 6.98 bump + +* Mon Apr 14 2014 Petr Pisar - 6.96-1 +- 6.96 bump + +* Wed Mar 26 2014 Petr Pisar - 6.94-1 +- 6.94 bump + +* Fri Mar 14 2014 Petr Pisar - 6.92-1 +- 6.92 bump + +* Fri Feb 21 2014 Petr Pisar - 6.90-1 +- 6.90 bump + +* Mon Feb 03 2014 Petr Pisar - 6.88-1 +- 6.88 bump + +* Mon Jan 06 2014 Petr Pisar - 6.86-1 +- 6.86 bump + +* Mon Dec 02 2013 Petr Pisar - 6.84-1 +- 6.84 bump + +* Tue Nov 05 2013 Petr Pisar - 6.82-1 +- 6.82 bump + +* Wed Oct 16 2013 Petr Pisar - 6.80-1 +- 6.80 bump + +* Tue Sep 24 2013 Petr Pisar - 6.78-1 +- 6.78 bump + +* Mon Sep 16 2013 Petr Pisar - 6.76-2 +- Specify all dependencies (bug #1007755) + +* Tue Sep 10 2013 Petr Pisar - 6.76-1 +- 6.76 bump + +* Mon Sep 02 2013 Petr Pisar - 6.74-1 +- 6.74 bump + +* Mon Aug 05 2013 Petr Pisar - 6.72-1 +- 6.72 bump + +* Sat Aug 03 2013 Fedora Release Engineering - 6.68-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Jul 12 2013 Petr Pisar - 6.68-4 +- Perl 5.18 rebuild + +* Tue Jul 02 2013 Petr Pisar - 6.68-3 +- Link to libperl.so explicitly (bug #960048) + +* Thu Jun 27 2013 Jitka Plesnikova - 6.68-2 +- Update BRs + +* Mon Jun 17 2013 Petr Pisar - 6.68-1 +- 6.68 bump + +* Mon Apr 22 2013 Petr Pisar - 6.66-1 +- 6.66 bump + +* Tue Jan 29 2013 Petr Pisar - 6.64-2 +- Run-require POD convertors to get manual pages when building other packages + +* Mon Dec 17 2012 Petr Pisar - 6.64-1 +- 6.64 bump + +* Tue Aug 28 2012 Petr Pisar - 6.63.02-241 +- Compute RPM version +- Do not build-require itself, the build script runs from ./lib + +* Mon Aug 13 2012 Marcela Mašláňová - 6.63.02-240 +- update version to the same as in perl.srpm +- Bump release to override sub-package from perl.spec + +* Fri Jul 20 2012 Fedora Release Engineering - 6.62-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jun 06 2012 Petr Pisar - 6.62-3 +- Perl 5.16 rebuild + +* Thu Jan 12 2012 Petr Pisar - 6.62-2 +- Do not set RPATH to perl shared-library modules by default (bug #773622) + +* Fri Nov 25 2011 Petr Pisar 6.62-1 +- Specfile autogenerated by cpanspec 1.78. +- Remove defattr and BuildRoot from spec.