ppisar pushed to perl-ExtUtils-MakeMaker (master). "7.08 bump"

notifications at fedoraproject.org notifications at fedoraproject.org
Wed Sep 9 08:40:48 UTC 2015


From 16ae9d0eeaca5ce572e66b109de0b08cdbb5e7ba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar at redhat.com>
Date: Wed, 9 Sep 2015 10:24:35 +0200
Subject: 7.08 bump


diff --git a/.gitignore b/.gitignore
index 7dc0831..72015ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,4 @@
 /ExtUtils-MakeMaker-7.02.tar.gz
 /ExtUtils-MakeMaker-7.04.tar.gz
 /ExtUtils-MakeMaker-7.06.tar.gz
+/ExtUtils-MakeMaker-7.08.tar.gz
diff --git a/ExtUtils-MakeMaker-7.06-Link-to-libperl-explicitly-on-Linux.patch b/ExtUtils-MakeMaker-7.06-Link-to-libperl-explicitly-on-Linux.patch
deleted file mode 100644
index 6de7bf5..0000000
--- a/ExtUtils-MakeMaker-7.06-Link-to-libperl-explicitly-on-Linux.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 92de778d11258fb26185cb6b7258e2dcf6d43b99 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar at redhat.com>
-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
-
-<https://bugzilla.redhat.com/show_bug.cgi?id=960048>
-<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327585#50>
-
-Signed-off-by: Petr Písař <ppisar at redhat.com>
----
- 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 38d780a..8440388 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};
-@@ -1016,7 +1017,7 @@ sub xs_make_dynamic_lib {
-     push(@m,"	\$(RM_F) \$\@\n");
- 
-     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
-@@ -1029,6 +1030,11 @@ sub xs_make_dynamic_lib {
-             # 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';
-         }
-     }
- 
--- 
-2.4.3
-
diff --git a/ExtUtils-MakeMaker-7.06-Remove-new-line-from-INC.patch b/ExtUtils-MakeMaker-7.06-Remove-new-line-from-INC.patch
deleted file mode 100644
index 727c7d2..0000000
--- a/ExtUtils-MakeMaker-7.06-Remove-new-line-from-INC.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -up ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm.orig ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm
---- ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm.orig	2015-09-01 13:10:14.810680431 +0200
-+++ ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm	2015-09-01 14:03:30.587696052 +0200
-@@ -2948,7 +2948,7 @@ sub pasthru {
-         my $val = qq{\$($key)};
-         # expand within perl if given since need to use quote_literal
-         # since INC might include space-protecting ""!
--        $val = $self->{$key} if defined $self->{$key};
-+        chomp($val = $self->{$key}) if defined $self->{$key};
-         $val .= " \$(PASTHRU_$key)";
-         my $quoted = $self->quote_literal($val);
-         push @pasthru, qq{PASTHRU_$key=$quoted};
diff --git a/ExtUtils-MakeMaker-7.06-USE_MM_LD_RUN_PATH.patch b/ExtUtils-MakeMaker-7.06-USE_MM_LD_RUN_PATH.patch
deleted file mode 100644
index e69891e..0000000
--- a/ExtUtils-MakeMaker-7.06-USE_MM_LD_RUN_PATH.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-From 7710f58f372a097887831999c1d724b381492f21 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar at redhat.com>
-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 <https://bugzilla.redhat.com/show_bug.cgi?id=773622>.
-
-Signed-off-by: Petr Písař <ppisar at redhat.com>
----
- 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 0d00242..b451c37 100644
---- a/lib/ExtUtils/Liblist.pm
-+++ b/lib/ExtUtils/Liblist.pm
-@@ -89,6 +89,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 f6ed5e6..38d780a 100644
---- a/lib/ExtUtils/MM_Unix.pm
-+++ b/lib/ExtUtils/MM_Unix.pm
-@@ -1033,7 +1033,7 @@ sub xs_make_dynamic_lib {
-     }
- 
-     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 01e906f..bc82b54 100644
---- a/lib/ExtUtils/MakeMaker.pm
-+++ b/lib/ExtUtils/MakeMaker.pm
-@@ -312,7 +312,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
-+    SIGN SKIP TEST_REQUIRES TYPEMAPS UNINST USE_MM_LD_RUN_PATH VERSION VERSION_FROM XS
-     XSBUILD XSMULTI XSOPT XSPROTOARG XS_VERSION
-     clean depend dist dynamic_lib linkext macro realclean tool_autosplit
- 
-@@ -478,7 +478,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}){
-@@ -2760,6 +2780,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.
--- 
-2.4.3
-
diff --git a/ExtUtils-MakeMaker-7.08-Link-to-libperl-explicitly-on-Linux.patch b/ExtUtils-MakeMaker-7.08-Link-to-libperl-explicitly-on-Linux.patch
new file mode 100644
index 0000000..a6f5b80
--- /dev/null
+++ b/ExtUtils-MakeMaker-7.08-Link-to-libperl-explicitly-on-Linux.patch
@@ -0,0 +1,52 @@
+From 37785fd42cd049a2465f01adf0db39545157e0f3 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar at redhat.com>
+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
+
+<https://bugzilla.redhat.com/show_bug.cgi?id=960048>
+<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327585#50>
+
+Signed-off-by: Petr Písař <ppisar at redhat.com>
+---
+ 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 94293c7..b31f36f 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';
+         }
+     }
+ 
+-- 
+2.4.3
+
diff --git a/ExtUtils-MakeMaker-7.08-USE_MM_LD_RUN_PATH.patch b/ExtUtils-MakeMaker-7.08-USE_MM_LD_RUN_PATH.patch
new file mode 100644
index 0000000..098665f
--- /dev/null
+++ b/ExtUtils-MakeMaker-7.08-USE_MM_LD_RUN_PATH.patch
@@ -0,0 +1,134 @@
+From 17e693f3dbd9deb458882e30ff7bfaebce54d90b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar at redhat.com>
+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 <https://bugzilla.redhat.com/show_bug.cgi?id=773622>.
+
+Signed-off-by: Petr Písař <ppisar at redhat.com>
+---
+ lib/ExtUtils/Liblist.pm   |  5 +++++
+ lib/ExtUtils/MM_Unix.pm   |  2 +-
+ lib/ExtUtils/MakeMaker.pm | 56 ++++++++++++++++++++++++++++++++++++++++++++++-
+ 3 files changed, 61 insertions(+), 2 deletions(-)
+
+diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm
+index 7522150..f5b4ede 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 3f2cd9d..94293c7 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 226f405..f96aaa0 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
+ 
+@@ -438,6 +438,26 @@ sub new {
+         $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" && ! $UNDER_CORE){
+         check_manifest();
+@@ -2711,6 +2731,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.
+-- 
+2.4.3
+
diff --git a/perl-ExtUtils-MakeMaker.spec b/perl-ExtUtils-MakeMaker.spec
index c301584..495a9ee 100644
--- a/perl-ExtUtils-MakeMaker.spec
+++ b/perl-ExtUtils-MakeMaker.spec
@@ -1,9 +1,9 @@
 %global cpan_name ExtUtils-MakeMaker
-%global cpan_version 7.06
+%global cpan_version 7.08
 
 Name:           perl-%{cpan_name}
 Version:        %(echo '%{cpan_version}' | tr _ .)
-Release:        2%{?dist}
+Release:        1%{?dist}
 Summary:        Create a module Makefile
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -11,15 +11,13 @@ 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.06-USE_MM_LD_RUN_PATH.patch
+Patch0:         %{cpan_name}-7.08-USE_MM_LD_RUN_PATH.patch
 # Link to libperl.so explicitly. Bug #960048.
-Patch1:         %{cpan_name}-7.06-Link-to-libperl-explicitly-on-Linux.patch
+Patch1:         %{cpan_name}-7.08-Link-to-libperl-explicitly-on-Linux.patch
 # Unbundle version modules
 Patch2:         %{cpan_name}-7.04-Unbundle-version.patch
 # Unbundle Encode::Locale module
 Patch3:         %{cpan_name}-7.00-Unbundle-Encode-Locale.patch
-# Remove new line from INC - CPAN RT#106808
-Patch4:         %{cpan_name}-7.06-Remove-new-line-from-INC.patch
 BuildArch:      noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
@@ -46,13 +44,13 @@ BuildRequires:  sed
 # Tests:
 BuildRequires:  perl(AutoSplit)
 BuildRequires:  perl(base)
-BuildRequires:  perl(CPAN::Meta) >= 2.143240
+BuildRequires:  perl(CPAN::Meta)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(DirHandle)
 BuildRequires:  perl(DynaLoader)
 BuildRequires:  perl(ExtUtils::Install) >= 1.52
 # ExtUtils::Installed not used at tests
-BuildRequires:  perl(ExtUtils::Manifest) >= 1.70
+BuildRequires:  perl(ExtUtils::Manifest) >= 1.65
 # ExtUtils::Packlist not used at tests
 # ExtUtils::XSSymSet is not needed (VMS only)
 BuildRequires:  perl(File::Find)
@@ -81,7 +79,7 @@ BuildRequires:  perl(PerlIO)
 # Keep YAML::Tiny optional
 Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:       perl(B)
-# CPAN::Meta 2.143240 is optional
+# CPAN::Meta 2.112150 is optional
 # CPAN::Meta::Converter 2.141170 is optional
 # CPAN::Meta::Requirements 2.130 is optional
 Requires:       perl(Data::Dumper)
@@ -91,7 +89,7 @@ Requires:       perl(Encode)
 # Keep unbundled Encode::Locale optional, it's not in the core
 Requires:       perl(ExtUtils::Command) >= 1.19
 Requires:       perl(ExtUtils::Install) >= 1.52
-Requires:       perl(ExtUtils::Manifest) >= 1.70
+Requires:       perl(ExtUtils::Manifest) >= 1.65
 # ExtUtils::XSSymSet is not needed (VMS only)
 Requires:       perl(File::Find)
 Requires:       perl(File::Spec) >= 0.8
@@ -143,7 +141,6 @@ easier to deal with in Makefiles.
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
-%patch4 -p1
 # Remove bundled modules
 rm -rf bundled
 sed -i -e '/^bundled\// d' MANIFEST
@@ -181,6 +178,9 @@ make test
 %{_mandir}/man3/ExtUtils::Command.*
 
 %changelog
+* Wed Sep 09 2015 Petr Pisar <ppisar at redhat.com> - 7.08-1
+- 7.08 bump
+
 * Tue Sep 01 2015 Jitka Plesnikova <jplesnik at redhat.com> - 7.06-2
 - Remove new line from INC (CPAN RT#106808)
 
diff --git a/sources b/sources
index c4bf64a..2398189 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d86589e2a88c00c7f0f40dc8d432ecde  ExtUtils-MakeMaker-7.06.tar.gz
+18c3f1965c0cb254ff42ba8a5ebe0995  ExtUtils-MakeMaker-7.08.tar.gz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/perl-ExtUtils-MakeMaker.git/commit/?h=master&id=16ae9d0eeaca5ce572e66b109de0b08cdbb5e7ba


More information about the perl-devel mailing list