[libauthen-captcha-perl] 05/10: Drop patches, applied upstream.
gregor herrmann
gregoa at debian.org
Wed Mar 12 18:33:09 UTC 2014
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libauthen-captcha-perl.
commit 62f5d6494fac32bfe2f6ea201bd6355f8be8a484
Author: gregor herrmann <gregoa at debian.org>
Date: Wed Mar 12 19:21:39 2014 +0100
Drop patches, applied upstream.
---
debian/patches/fix409731_not-taint-safe.patch | 36 ---------------------------
debian/patches/fix_spelling_error.patch | 29 ---------------------
debian/patches/series | 2 --
3 files changed, 67 deletions(-)
diff --git a/debian/patches/fix409731_not-taint-safe.patch b/debian/patches/fix409731_not-taint-safe.patch
deleted file mode 100644
index 1cea1c3..0000000
--- a/debian/patches/fix409731_not-taint-safe.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-Description: fix a security issue reported by perl -T
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=409731
-Bug: https://rt.cpan.org/Ticket/Display.html?id=81832
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=81832
-Reviewed-By: Xavier Guimard <x.guimard at free.fr>
-Author: Ernesto Hernández-Novich <emhn at usb.ve>
-
---- a/Captcha.pm
-+++ b/Captcha.pm
-@@ -232,7 +232,11 @@ sub check_code
- foreach my $line (@data)
- {
- $line =~ s/\n//;
-- my ($data_time,$data_code) = split(/::/,$line);
-+ # Fixes Debian Bug #409731
-+ # Extract untainted time and code
-+ # Patch provided by Chris Dunlop <chris at onthe.net.au>
-+ # applied by Ernesto Hernández-Novich <emhn at usb.ve>
-+ my ($data_time,$data_code) = $line =~ m/(^\d+)::([[:xdigit:]]{32})$/;
-
- my $png_file = File::Spec->catfile($self->output_folder(),$data_code . ".png");
- if ($data_code eq $crypt)
-@@ -351,7 +355,12 @@ sub _save_code
- foreach my $line (@data)
- {
- $line =~ s/\n//;
-- my ($data_time,$data_code) = split(/::/,$line);
-+ # Fixes Debian Bug #409731
-+ # Extract untainted time and code
-+ # Patch provided by Chris Dunlop <chris at onthe.net.au>
-+ # applied by Ernesto Hernández-Novich <emhn at usb.ve>
-+ my ($data_time,$data_code) = $line =~ m/(^\d+)::([[:xdigit:]]{32})$/;
-+
- if ( (($current_time - $data_time) > ($self->expire())) ||
- ($data_code eq $md5) )
- { # remove expired captcha, or a dup
diff --git a/debian/patches/fix_spelling_error.patch b/debian/patches/fix_spelling_error.patch
deleted file mode 100644
index 865f5ea..0000000
--- a/debian/patches/fix_spelling_error.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Description: This patch fixes a POD spelling error.
-Forwarded: https://rt.cpan.org/Ticket/Display.html?id=69645
-Author: Ernesto Hernández-Novich <emhn at usb.ve>
-
---- a/Captcha.pm
-+++ b/Captcha.pm
-@@ -543,7 +543,7 @@
- # set the data_folder. contains flatfile db to maintain state
- $captcha->data_folder('/some/folder');
-
-- # set directory to hold publicly accessable images
-+ # set directory to hold publicly accessible images
- $captcha->output_folder('/some/http/folder');
-
- # Alternitively, any of the methods to set variables may also be
-@@ -676,11 +676,11 @@
- =item C<$captcha-E<gt>data_folder( '/some/folder' );>
-
- Required. Sets the directory to hold the flatfile database that will be used to store the current non-expired valid captcha md5sum's.
--Must be writable by the process running the script (usually the web server user, which is usually either "apache" or "http"), but should not be accessable to the end user.
-+Must be writable by the process running the script (usually the web server user, which is usually either "apache" or "http"), but should not be accessible to the end user.
-
- =item C<$captcha-E<gt>output_folder( '/some/folder' );>
-
--Required. Sets the directory to hold the generated Captcha image files. This is usually a web accessable directory so that the user can view the images in here, but it doesn't have to be web accessable (you could be attaching the images to an e-mail for some verification, or some other Captcha implementation).
-+Required. Sets the directory to hold the generated Captcha image files. This is usually a web accessible directory so that the user can view the images in here, but it doesn't have to be web accessible (you could be attaching the images to an e-mail for some verification, or some other Captcha implementation).
- Must be writable by the process running the script (usually the web server user, which is usually either "apache" or "http").
-
- =item C<$captcha-E<gt>images_folder( '/some/folder' );>
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 7f84c5c..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-fix409731_not-taint-safe.patch
-fix_spelling_error.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libauthen-captcha-perl.git
More information about the Pkg-perl-cvs-commits
mailing list