This is an automated email from the git hooks/post-receive script. gregoa pushed a commit to branch master in repository libgraphviz-perl.
commit fe95112344bb2b5f6b36f47b4e1941753c1f146d Author: gregor herrmann <[email protected]> Date: Sat Jan 23 00:18:00 2016 +0100 Drop 0001-Fix-Devel-GraphVizProf-module-syntax.patch (merged upstream). --- ...0001-Fix-Devel-GraphVizProf-module-syntax.patch | 38 ---------------------- debian/patches/series | 1 - 2 files changed, 39 deletions(-) diff --git a/debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch b/debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch deleted file mode 100644 index c9c85d0..0000000 --- a/debian/patches/0001-Fix-Devel-GraphVizProf-module-syntax.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 477b3a61eab6755032a39cd327f298799d81c4d0 Mon Sep 17 00:00:00 2001 -From: Niko Tyni <[email protected]> -Date: Sun, 27 Dec 2015 18:10:58 +0200 -Subject: [PATCH] Fix Devel::GraphVizProf module syntax - -The defined(@array) syntax became a hard failure with Perl 5.22. - -Bug-Debian: https://bugs.debian.org/809095 -Bug: https://github.com/ronsavage/GraphViz/pull/3 ---- - lib/Devel/GraphVizProf.pm | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/lib/Devel/GraphVizProf.pm b/lib/Devel/GraphVizProf.pm -index b14dded..0e657fe 100644 ---- a/lib/Devel/GraphVizProf.pm -+++ b/lib/Devel/GraphVizProf.pm -@@ -56,7 +56,7 @@ sub DB { - # evals which do not define subroutines will disappear. - no strict 'refs'; - $DB::listings{$filename} = \@{"main::_<$filename"} if -- defined(@{"main::_<$filename"}); -+ @{"main::_<$filename"}; - use strict 'refs'; - - # warn $DB::prevl . " -> " . $line . "\n"; -@@ -197,7 +197,7 @@ sub sub { - if (defined($DB::sub{$DB::sub})) { - my($m,$s) = ($DB::sub{$DB::sub} =~ /.+(?=:)|[^:-]+/g); - $DB::profiles{$m}->[$s]++; -- $DB::listings{$m} = \@{"main::_<$m"} if defined(@{"main::_<$m"}); -+ $DB::listings{$m} = \@{"main::_<$m"} if @{"main::_<$m"}; - } - goto &$DB::sub; - } --- -2.6.4 - diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index ad16547..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -0001-Fix-Devel-GraphVizProf-module-syntax.patch -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libgraphviz-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
