[libchart-perl] 05/07: Drop fix-defined- at array-is-deprecated-warning.patch, applied upstream

Axel Beckert abe at deuxchevaux.org
Sat May 2 08:00:09 UTC 2015


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

abe pushed a commit to branch master
in repository libchart-perl.

commit d364c9ff4361b1cd57761d91a361691f00f3b4dc
Author: Axel Beckert <abe at deuxchevaux.org>
Date:   Sat May 2 09:52:46 2015 +0200

    Drop fix-defined- at array-is-deprecated-warning.patch, applied upstream
---
 debian/changelog                                   |  2 ++
 .../fix-defined- at array-is-deprecated-warning.patch | 25 ----------------------
 debian/patches/series                              |  1 -
 3 files changed, 2 insertions(+), 26 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6fe543a..dc140f7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ libchart-perl (2.4.10-1) UNRELEASED; urgency=medium
 
   * Add debian/upstream/metadata
   * Import upstream version 2.4.10
+    + Drop debian/patches/fix-defined- at array-is-deprecated-warning.patch,
+      applied upstream.
 
  -- Axel Beckert <abe at debian.org>  Sat, 02 May 2015 09:47:49 +0200
 
diff --git a/debian/patches/fix-defined- at array-is-deprecated-warning.patch b/debian/patches/fix-defined- at array-is-deprecated-warning.patch
deleted file mode 100644
index 39a1996..0000000
--- a/debian/patches/fix-defined- at array-is-deprecated-warning.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: Fixes perl deprecation warning "defined(@array) is deprecated"
-Author: Axel Beckert <abe at debian.org>
-
-Index: libchart-perl/Chart/Base.pm
-===================================================================
---- libchart-perl.orig/Chart/Base.pm	2014-09-22 12:57:55.081667298 +0200
-+++ libchart-perl/Chart/Base.pm	2014-09-22 12:59:14.080676145 +0200
-@@ -178,7 +178,7 @@
-     if ( ( ref $_[0] ) =~ /^ARRAY/ )
-     {
-         my $rdata = shift;
--        @data = @$rdata if defined @$rdata;
-+        @data = @$rdata if @$rdata;
-     }
-     elsif ( ( ref \$_[0] ) =~ /^SCALAR/ )
-     {
-@@ -230,7 +230,7 @@
-     if ( ( ref $_[0] ) =~ /^ARRAY/ )
-     {
-         my $rdata = shift;
--        @data = @$rdata if defined @$rdata;
-+        @data = @$rdata if @$rdata;
-     }
-     elsif ( ( ref \$_[0] ) =~ /^SCALAR/ )
-     {
diff --git a/debian/patches/series b/debian/patches/series
index 11a4b7c..fabed6c 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 pod.patch
 debian-bug-709533.patch
-fix-defined- at array-is-deprecated-warning.patch
 create-samples-directory-before-package-build.patch

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



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