diff options
author | 2009-08-16 09:22:08 +0000 | |
---|---|---|
committer | 2009-08-16 09:22:08 +0000 | |
commit | f2cb50000154bcd9a7643823469f7b673f5f52e3 (patch) | |
tree | f0132471596fa8867372ed6e0555d4dfad2b6728 /dev-perl/Sub-Uplevel | |
parent | Migrate to EAPI 2 in order to drop built_with_use call. (diff) | |
download | gentoo-2-f2cb50000154bcd9a7643823469f7b673f5f52e3.tar.gz gentoo-2-f2cb50000154bcd9a7643823469f7b673f5f52e3.tar.bz2 gentoo-2-f2cb50000154bcd9a7643823469f7b673f5f52e3.zip |
Remove unused patch
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/Sub-Uplevel')
-rw-r--r-- | dev-perl/Sub-Uplevel/ChangeLog | 5 | ||||
-rw-r--r-- | dev-perl/Sub-Uplevel/files/uplevel.patch | 11 |
2 files changed, 4 insertions, 12 deletions
diff --git a/dev-perl/Sub-Uplevel/ChangeLog b/dev-perl/Sub-Uplevel/ChangeLog index 49aafd725f84..b368d5dc87e4 100644 --- a/dev-perl/Sub-Uplevel/ChangeLog +++ b/dev-perl/Sub-Uplevel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-perl/Sub-Uplevel # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Uplevel/ChangeLog,v 1.60 2009/07/16 09:19:02 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Sub-Uplevel/ChangeLog,v 1.61 2009/08/16 09:22:08 tove Exp $ + + 16 Aug 2009; Torsten Veller <tove@gentoo.org> -files/uplevel.patch: + Remove unused patch 16 Jul 2009; Torsten Veller <tove@gentoo.org> -Sub-Uplevel-0.16.ebuild, -Sub-Uplevel-0.19.01.ebuild: diff --git a/dev-perl/Sub-Uplevel/files/uplevel.patch b/dev-perl/Sub-Uplevel/files/uplevel.patch deleted file mode 100644 index e6ad3d48ce9f..000000000000 --- a/dev-perl/Sub-Uplevel/files/uplevel.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/Sub/Uplevel.pm.orig 2006-03-18 19:33:47.000000000 -0500 -+++ lib/Sub/Uplevel.pm 2006-03-18 19:35:03.000000000 -0500 -@@ -120,7 +120,7 @@ before or after Sub::Uplevel::uplevel(). - # Yes, we need a C style for loop here since $height changes - for( my $up = 1; $up <= $height + 1; $up++ ) { - my @caller = CORE::caller($up); -- if( $caller[0] eq __PACKAGE__ ) { -+ if( defined $caller[0] && $caller[0] eq __PACKAGE__ ) { - $height++; - $height += $Up_Frames unless $saw_uplevel; - $saw_uplevel = 1; |