[libpdf-reuse-perl] 01/01: Remove patch that has been fixed upstream

Robin Sheat eythian-guest at moszumanska.debian.org
Tue Dec 16 22:50:46 UTC 2014


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

eythian-guest pushed a commit to branch master
in repository libpdf-reuse-perl.

commit 7d72c7db6d4827018e1356cdf359b599a57e9bb4
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Dec 17 11:48:24 2014 +1300

    Remove patch that has been fixed upstream
    
    It was fixed in a different way, so wasn't totally obvious.
---
 debian/changelog                           |  3 +--
 debian/patches/series                      |  1 -
 debian/patches/uninitialized_warning.patch | 22 ----------------------
 3 files changed, 1 insertion(+), 25 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 930ffbe..24c32bb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -24,8 +24,7 @@ libpdf-reuse-perl (0.36-1) unstable; urgency=low
   * Added debian/source/format, modified debian/rules to not invoke quilt
     manually.
   * Updated Standards-Version
-  * Removed fix-pod.patch as it's upstream
-  * Updated uninitialized_warning.patch to remove conflicts
+  * Removed fix-pod.patch and uninitialized_warning.patch as they're upstream
 
  -- Robin Sheat <robin at catalyst.net.nz>  Tue, 16 Dec 2014 17:32:39 +1300
 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 859348f..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-uninitialized_warning.patch
diff --git a/debian/patches/uninitialized_warning.patch b/debian/patches/uninitialized_warning.patch
deleted file mode 100644
index cc7820a..0000000
--- a/debian/patches/uninitialized_warning.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Author: Patrick Matth�i <patrick.matthaei at web.de>
-Description: avoid warnings about
-             "Use of uninitialized value $string in unpack ..."
-Bug: #506214
-             
-Index: libpdf-reuse-perl/Reuse.pm
-===================================================================
---- libpdf-reuse-perl.orig/Reuse.pm	2014-12-16 17:49:43.277638652 +1300
-+++ libpdf-reuse-perl/Reuse.pm	2014-12-16 17:50:32.117713106 +1300
-@@ -1285,8 +1285,10 @@
- 
-    if (ref($PDF::Reuse::Util::font_widths{$Font}) eq 'ARRAY')
-    {   my @font_table = @{ $PDF::Reuse::Util::font_widths{$Font} };
--       for (unpack ("C*", $string))
--       {  $w += $font_table[$_];
-+       if (defined $string) {
-+           for (unpack ("C*", $string))
-+           {  $w += $font_table[$_];
-+           }
-        }
-    }
-    else

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



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