diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2009-09-18 14:05:08 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2009-09-18 14:05:08 +0000 |
commit | 0dc420f0fb95c1e8dd800770e486ac7e6f21c911 (patch) | |
tree | 2511e741f29d1c0667ab607740bc508e1e0364ed /www-apache/mod_perl/files | |
parent | Removed diaria from p.mask, package is gone. (diff) | |
download | gentoo-2-0dc420f0fb95c1e8dd800770e486ac7e6f21c911.tar.gz gentoo-2-0dc420f0fb95c1e8dd800770e486ac7e6f21c911.tar.bz2 gentoo-2-0dc420f0fb95c1e8dd800770e486ac7e6f21c911.zip |
remove old ebuilds
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'www-apache/mod_perl/files')
-rw-r--r-- | www-apache/mod_perl/files/RegistryCooker.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/www-apache/mod_perl/files/RegistryCooker.patch b/www-apache/mod_perl/files/RegistryCooker.patch deleted file mode 100644 index f95dc85ee6c0..000000000000 --- a/www-apache/mod_perl/files/RegistryCooker.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff -Naurp mod_perl-2.0.3-old/Changes mod_perl-2.0.3/Changes ---- mod_perl-2.0.3-old/Changes 2006-11-29 03:02:17.000000000 -0500 -+++ mod_perl-2.0.3/Changes 2007-03-30 19:05:50.000000000 -0400 -@@ -10,6 +10,11 @@ Also refer to the Apache::Test changes l - - =over 3 - -+=item 2.0.4-dev -+ -+fix unescaped variable interprolation in regular expression -+[Randal L. Schwartz <merlyn[at]stonehenge.com>, Fred Moyer <fred[at]redhotpenguin.com>] -+ - =item 2.0.3 November 28, 2006 - - Prevent things in %INC that are not stat() able -diff -Naurp mod_perl-2.0.3-old/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm mod_perl-2.0.3/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm ---- mod_perl-2.0.3-old/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm 2006-11-19 18:31:41.000000000 -0500 -+++ mod_perl-2.0.3/ModPerl-Registry/lib/ModPerl/RegistryCooker.pm 2007-03-30 19:08:05.000000000 -0400 -@@ -337,7 +337,7 @@ sub namespace_from_uri { - my $self = shift; - - my $path_info = $self->{REQ}->path_info; -- my $script_name = $path_info && $self->{URI} =~ /$path_info$/ -+ my $script_name = $path_info && $self->{URI} =~ /\Q$path_info\E$/ - ? substr($self->{URI}, 0, length($self->{URI}) - length($path_info)) - : $self->{URI}; - |