summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2024-12-21 08:32:32 -0500
committerSam James <sam@gentoo.org>2024-12-21 20:31:46 +0000
commit3e741a59225386424227493e39576917f523912d (patch)
tree8d381476566afc77f91012f7e9b24c5d397b1219 /dev-perl/HTTP-Body
parentdev-perl/HTML-Tagset: Drop old versions (diff)
downloadgentoo-3e741a59225386424227493e39576917f523912d.tar.gz
gentoo-3e741a59225386424227493e39576917f523912d.tar.bz2
gentoo-3e741a59225386424227493e39576917f523912d.zip
dev-perl/HTTP-Body: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-perl/HTTP-Body')
-rw-r--r--dev-perl/HTTP-Body/HTTP-Body-1.220.0-r1.ebuild45
-rw-r--r--dev-perl/HTTP-Body/Manifest1
-rw-r--r--dev-perl/HTTP-Body/files/HTTP-Body-1.190.0-CVE-2013-4407.patch31
3 files changed, 0 insertions, 77 deletions
diff --git a/dev-perl/HTTP-Body/HTTP-Body-1.220.0-r1.ebuild b/dev-perl/HTTP-Body/HTTP-Body-1.220.0-r1.ebuild
deleted file mode 100644
index 59a843fa9274..000000000000
--- a/dev-perl/HTTP-Body/HTTP-Body-1.220.0-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_AUTHOR=GETTY
-DIST_VERSION=1.22
-inherit perl-module
-
-DESCRIPTION="HTTP Body Parser"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# HTTP::Headers -> HTTP-Message
-# HTTP::Request::Common -> HTTP-Message
-# IO::File -> IO
-RDEPEND="
- virtual/perl-Carp
- virtual/perl-Digest-MD5
- >=virtual/perl-File-Temp-0.140.0
- dev-perl/HTTP-Message
- >=virtual/perl-IO-1.140.0
-"
-BDEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- virtual/perl-Encode
- virtual/perl-File-Spec
- >=virtual/perl-File-Temp-0.140.0
- dev-perl/HTTP-Message
- dev-perl/Test-Deep
- >=virtual/perl-Test-Simple-0.860.0
- )
-"
-
-PERL_RM_FILES=(
- t/02pod.t
- t/03podcoverage.t
- t/04critic.t
-)
-
-PATCHES=( "${FILESDIR}/${PN}-1.190.0-CVE-2013-4407.patch" )
diff --git a/dev-perl/HTTP-Body/Manifest b/dev-perl/HTTP-Body/Manifest
index 381c6924aeb3..02289d6db01a 100644
--- a/dev-perl/HTTP-Body/Manifest
+++ b/dev-perl/HTTP-Body/Manifest
@@ -1,2 +1 @@
-DIST HTTP-Body-1.22.tar.gz 26163 BLAKE2B c6b2cf67fd9964fe253251dd91a67b11563c3cb157ad670733254acb3d44fcede97dcfb84d09ed52bc9f8cc60275838abd8f110aa01aed3bb18400bcc108b255 SHA512 62665989d76699a3c3747d8f4e23d2009488bc229220bcf6fc07fc425e6ac5118f6ea48c75af681c2f29e9ed644d7a7979368cc36df77aca0544786b523c9cfe
DIST HTTP-Body-1.23.tar.gz 26980 BLAKE2B 2ad08b894a26a06089dff6294f978583d49ee5aa770fb195d01fc6db7a39bda0cb831ed5137afabbc75598e2dbe3fb8dd0681f688776270d01f99498abb17c23 SHA512 b02fb8652ceebdaa858ff12fe759ded62eefa7f23e5bf8b90e31a52d4433f13d29986f9646141b92a6a4ea58e1be007c6f675c3e2b26559fa0ff9333e69f3ebb
diff --git a/dev-perl/HTTP-Body/files/HTTP-Body-1.190.0-CVE-2013-4407.patch b/dev-perl/HTTP-Body/files/HTTP-Body-1.190.0-CVE-2013-4407.patch
deleted file mode 100644
index 292cac3aa6f4..000000000000
--- a/dev-perl/HTTP-Body/files/HTTP-Body-1.190.0-CVE-2013-4407.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Description: Allow only word characters in filename suffixes
- CVE-2013-4407: Allow only word characters in filename suffixes. An
- attacker able to upload files to a service that uses
- HTTP::Body::Multipart could use this issue to upload a file and create
- a specifically-crafted temporary filename on the server, that when
- processed without further validation, could allow execution of commands
- on the server.
-Origin: vendor
-Bug: https://rt.cpan.org/Ticket/Display.html?id=88342
-Bug-Debian: http://bugs.debian.org/721634
-Bug-RedHat: https://bugzilla.redhat.com/show_bug.cgi?id=1005669
-Forwarded: no
-Author: Salvatore Bonaccorso <carnil@debian.org>
-Last-Update: 2013-10-21
-
-Updated by Andreas K. Huettel <dilfridge@gentoo.org> for HTTP-Body-1.19
-
-diff -ruN HTTP-Body-1.19.orig/lib/HTTP/Body/MultiPart.pm HTTP-Body-1.19/lib/HTTP/Body/MultiPart.pm
---- HTTP-Body-1.19.orig/lib/HTTP/Body/MultiPart.pm 2013-12-06 16:07:25.000000000 +0100
-+++ HTTP-Body-1.19/lib/HTTP/Body/MultiPart.pm 2014-11-30 23:17:19.652051615 +0100
-@@ -258,8 +258,8 @@
-
- =cut
-
--our $basename_regexp = qr/[^.]+(\.[^\\\/]+)$/;
--#our $basename_regexp = qr/(\.\w+(?:\.\w+)*)$/;
-+#our $basename_regexp = qr/[^.]+(\.[^\\\/]+)$/;
-+our $basename_regexp = qr/(\.\w+(?:\.\w+)*)$/;
-
- sub handler {
- my ( $self, $part ) = @_;