6.84 bump
This commit is contained in:
parent
777df13bb2
commit
bcf6990e83
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,3 +9,4 @@
|
|||||||
/ExtUtils-MakeMaker-6.78.tar.gz
|
/ExtUtils-MakeMaker-6.78.tar.gz
|
||||||
/ExtUtils-MakeMaker-6.80.tar.gz
|
/ExtUtils-MakeMaker-6.80.tar.gz
|
||||||
/ExtUtils-MakeMaker-6.82.tar.gz
|
/ExtUtils-MakeMaker-6.82.tar.gz
|
||||||
|
/ExtUtils-MakeMaker-6.84.tar.gz
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From 8cdd24ede62bb89dd6dd5ea3373ae21569502b11 Mon Sep 17 00:00:00 2001
|
From 1f6cb4c0a4c36b0aec220e5133bac7d2d1d83bf1 Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||||
Date: Thu, 12 Jan 2012 17:05:19 +0100
|
Date: Thu, 12 Jan 2012 17:05:19 +0100
|
||||||
Subject: [PATCH] Do not set RPATH by default
|
Subject: [PATCH] Do not set RPATH by default
|
||||||
@ -20,7 +20,7 @@ Signed-off-by: Petr Písař <ppisar@redhat.com>
|
|||||||
3 files changed, 62 insertions(+), 3 deletions(-)
|
3 files changed, 62 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm
|
diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm
|
||||||
index d396c1f..aa74457 100644
|
index 684157a..1a40c26 100644
|
||||||
--- a/lib/ExtUtils/Liblist.pm
|
--- a/lib/ExtUtils/Liblist.pm
|
||||||
+++ b/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
|
@@ -88,6 +88,11 @@ libraries. LD_RUN_PATH is a colon separated list of the directories
|
||||||
@ -36,7 +36,7 @@ index d396c1f..aa74457 100644
|
|||||||
|
|
||||||
List of those libraries that are needed but can be linked in
|
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
|
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
|
||||||
index 9ba094e..b951fa9 100644
|
index a7a5e1b..1efaaa6 100644
|
||||||
--- a/lib/ExtUtils/MM_Unix.pm
|
--- a/lib/ExtUtils/MM_Unix.pm
|
||||||
+++ b/lib/ExtUtils/MM_Unix.pm
|
+++ b/lib/ExtUtils/MM_Unix.pm
|
||||||
@@ -946,7 +946,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPO
|
@@ -946,7 +946,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPO
|
||||||
@ -49,11 +49,11 @@ index 9ba094e..b951fa9 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
|
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm
|
||||||
index 55c9181..e9be4a6 100644
|
index eced66d..676742e 100644
|
||||||
--- a/lib/ExtUtils/MakeMaker.pm
|
--- a/lib/ExtUtils/MakeMaker.pm
|
||||||
+++ b/lib/ExtUtils/MakeMaker.pm
|
+++ b/lib/ExtUtils/MakeMaker.pm
|
||||||
@@ -281,7 +281,7 @@ sub full_setup {
|
@@ -282,7 +282,7 @@ sub full_setup {
|
||||||
PERL_SRC PERM_DIR PERM_RW PERM_RWX
|
PERL_SRC PERM_DIR PERM_RW PERM_RWX MAGICXS
|
||||||
PL_FILES PM PM_FILTER PMLIBDIRS PMLIBPARENTDIRS POLLUTE PPM_INSTALL_EXEC
|
PL_FILES PM PM_FILTER PMLIBDIRS PMLIBPARENTDIRS POLLUTE PPM_INSTALL_EXEC
|
||||||
PPM_INSTALL_SCRIPT PREREQ_FATAL PREREQ_PM PREREQ_PRINT PRINT_PREREQ
|
PPM_INSTALL_SCRIPT 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 VERSION VERSION_FROM XS XSOPT XSPROTOARG
|
||||||
@ -61,7 +61,7 @@ index 55c9181..e9be4a6 100644
|
|||||||
XS_VERSION clean depend dist dynamic_lib linkext macro realclean
|
XS_VERSION clean depend dist dynamic_lib linkext macro realclean
|
||||||
tool_autosplit
|
tool_autosplit
|
||||||
|
|
||||||
@@ -431,7 +431,27 @@ sub new {
|
@@ -432,7 +432,27 @@ sub new {
|
||||||
# PRINT_PREREQ is RedHatism.
|
# PRINT_PREREQ is RedHatism.
|
||||||
if ("@ARGV" =~ /\bPRINT_PREREQ\b/) {
|
if ("@ARGV" =~ /\bPRINT_PREREQ\b/) {
|
||||||
$self->_PRINT_PREREQ;
|
$self->_PRINT_PREREQ;
|
||||||
@ -90,7 +90,7 @@ index 55c9181..e9be4a6 100644
|
|||||||
|
|
||||||
print "MakeMaker (v$VERSION)\n" if $Verbose;
|
print "MakeMaker (v$VERSION)\n" if $Verbose;
|
||||||
if (-f "MANIFEST" && ! -f "Makefile" && ! $ENV{PERL_CORE}){
|
if (-f "MANIFEST" && ! -f "Makefile" && ! $ENV{PERL_CORE}){
|
||||||
@@ -2603,6 +2623,40 @@ precedence. A typemap in the current directory has highest
|
@@ -2608,6 +2628,40 @@ precedence. A typemap in the current directory has highest
|
||||||
precedence, even if it isn't listed in TYPEMAPS. The default system
|
precedence, even if it isn't listed in TYPEMAPS. The default system
|
||||||
typemap has lowest precedence.
|
typemap has lowest precedence.
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
%global cpan_name ExtUtils-MakeMaker
|
%global cpan_name ExtUtils-MakeMaker
|
||||||
%global cpan_version 6.82
|
%global cpan_version 6.84
|
||||||
|
|
||||||
Name: perl-%{cpan_name}
|
Name: perl-%{cpan_name}
|
||||||
Version: %(echo '%{cpan_version}' | tr _ .)
|
Version: %(echo '%{cpan_version}' | tr _ .)
|
||||||
@ -11,7 +11,7 @@ URL: http://search.cpan.org/dist/%{cpan_name}/
|
|||||||
Source0: http://www.cpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{cpan_version}.tar.gz
|
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.
|
# Do not set RPATH to perl shared-library modules by default. Bug #773622.
|
||||||
# This is copy from `perl' package. This is distributor extension.
|
# This is copy from `perl' package. This is distributor extension.
|
||||||
Patch0: %{cpan_name}-6.82-USE_MM_LD_RUN_PATH.patch
|
Patch0: %{cpan_name}-6.84-USE_MM_LD_RUN_PATH.patch
|
||||||
# Link to libperl.so explicitly. Bug #960048.
|
# Link to libperl.so explicitly. Bug #960048.
|
||||||
Patch1: %{cpan_name}-6.80-Link-to-libperl-explicitly-on-Linux.patch
|
Patch1: %{cpan_name}-6.80-Link-to-libperl-explicitly-on-Linux.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -111,6 +111,9 @@ make test
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Dec 02 2013 Petr Pisar <ppisar@redhat.com> - 6.84-1
|
||||||
|
- 6.84 bump
|
||||||
|
|
||||||
* Tue Nov 05 2013 Petr Pisar <ppisar@redhat.com> - 6.82-1
|
* Tue Nov 05 2013 Petr Pisar <ppisar@redhat.com> - 6.82-1
|
||||||
- 6.82 bump
|
- 6.82 bump
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user