[libgnupg-interface-perl] 01/02: Drop Make-get_secret_keys-and-get_public_keys-methods-wor.patch: neither upstream nor I can reproduce the bug it fixed anymore.

Intrigeri intrigeri at moszumanska.debian.org
Mon Mar 31 11:11:41 UTC 2014


This is an automated email from the git hooks/post-receive script.

intrigeri pushed a commit to branch master
in repository libgnupg-interface-perl.

commit bc1f843bb597c3267688e4569fd0063afd97cf40
Author: intrigeri <intrigeri at boum.org>
Date:   Mon Mar 31 10:46:51 2014 +0000

    Drop Make-get_secret_keys-and-get_public_keys-methods-wor.patch: neither upstream nor I can reproduce the bug it fixed anymore.
---
 ...cret_keys-and-get_public_keys-methods-wor.patch | 64 ----------------------
 debian/patches/series                              |  1 -
 2 files changed, 65 deletions(-)

diff --git a/debian/patches/Make-get_secret_keys-and-get_public_keys-methods-wor.patch b/debian/patches/Make-get_secret_keys-and-get_public_keys-methods-wor.patch
deleted file mode 100644
index af3fa76..0000000
--- a/debian/patches/Make-get_secret_keys-and-get_public_keys-methods-wor.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-Description: Make get_secret_keys and get_public_keys methods work with no arguments.
-Origin: vendor
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=62177
-Forwarded: yes
-Author: intrigeri <intrigeri at debian.org>
-Last-Update: Sun, 16 Oct 2011 00:46:51 +0200
-
----
- lib/GnuPG/Interface.pm |   30 ++++++++++++++++++------------
- 1 files changed, 18 insertions(+), 12 deletions(-)
-
---- a/lib/GnuPG/Interface.pm
-+++ b/lib/GnuPG/Interface.pm
-@@ -438,10 +438,12 @@
-             # --fixed-list-mode uses epoch time for creation and expiration date strings.
-             # For backward compatibility, we convert them back using GMT;
-             my $expiration_date_string;
--            if ($expiration_date eq '') {
--              $expiration_date = undef;
--            } else {
--              $expiration_date_string = $self->_downrez_date($expiration_date);
-+            if (defined $expiration_date) {
-+              if ($expiration_date eq '') {
-+                $expiration_date = undef;
-+              } else {
-+                $expiration_date_string = $self->_downrez_date($expiration_date);
-+              }
-             }
-             my $creation_date_string = $self->_downrez_date($creation_date);
- 
-@@ -483,10 +485,12 @@
-             ) = @fields[ 1, 3 .. 6, 9, 10 ];
- 
-             my $expiration_date_string;
--            if ($expiration_date eq '') {
--              $expiration_date = undef;
--            } else {
--              $expiration_date_string = $self->_downrez_date($expiration_date);
-+            if (defined $expiration_date) {
-+              if ($expiration_date eq '') {
-+                $expiration_date = undef;
-+              } else {
-+                $expiration_date_string = $self->_downrez_date($expiration_date);
-+              }
-             }
-             my $signature_date_string = $self->_downrez_date($signature_date);
- 
-@@ -555,10 +559,12 @@
-             ) = @fields[ 1 .. 11 ];
- 
-             my $expiration_date_string;
--            if ($expiration_date eq '') {
--              $expiration_date = undef;
--            } else {
--              $expiration_date_string = $self->_downrez_date($expiration_date);
-+            if (defined $expiration_date) {
-+                if ($expiration_date eq '') {
-+                    $expiration_date = undef;
-+                } else {
-+                    $expiration_date_string = $self->_downrez_date($expiration_date);
-+                }
-             }
-             my $creation_date_string = $self->_downrez_date($creation_date);
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 6b76b09..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-Make-get_secret_keys-and-get_public_keys-methods-wor.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libgnupg-interface-perl.git



More information about the Pkg-perl-cvs-commits mailing list