[Pkg-urxvt-maintainers] [SCM] Git repository for pkg-urxvt branch, master, updated. debian/9.18-3

Ryan Kavanagh rak at alioth.debian.org
Mon Sep 2 03:47:54 UTC 2013


Gitweb-URL: http://git.debian.org/?p=pkg-kde//srv/git.debian.org/git/pkg-urxvt/pkg-urxvt.git;a=commitdiff;h=3061cf5

The following commit has been merged in the master branch:
commit 3061cf570db28a1dc70db4468d013bf080d453af
Author: Ryan Kavanagh <rak at debian.org>
Date:   Sun Sep 1 08:39:17 2013 -0400

    Tabbed extension now works with Perl 5.18 (Closes: #721456), 15_perl_518.diff
---
 debian/patches/15_perl_518.diff |   23 +++++++++++++++++++++++
 debian/patches/series           |    1 +
 2 files changed, 24 insertions(+)

diff --git a/debian/patches/15_perl_518.diff b/debian/patches/15_perl_518.diff
new file mode 100644
index 0000000..27656e3
--- /dev/null
+++ b/debian/patches/15_perl_518.diff
@@ -0,0 +1,23 @@
+Description: Fix tabbed extension to conform to Perl 5.18
+ Perl 5.18 no longer implicitly puts parentheses around qw(..), but instead
+ requires them explicitly. The lack of these caused the tabbed extension to
+ fail.
+Origin: http://bugs.debian.org/721456
+Author: gregor herrmann <gregoa at debian.org>
+Bug-Debian: http://bugs.debian.org/721456
+Applied-Upstream: already applied ages ago
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: rxvt-unicode/src/perl/tabbed
+===================================================================
+--- rxvt-unicode.orig/src/perl/tabbed	2013-02-16 19:41:38.000000000 -0500
++++ rxvt-unicode/src/perl/tabbed	2013-09-01 08:29:58.048828703 -0400
+@@ -402,7 +402,7 @@
+ # simply proxies all interesting calls back to the tabbed class.
+ 
+ {
+-   for my $hook qw(start destroy key_press property_notify) {
++   for my $hook (qw(start destroy key_press property_notify)) {
+       eval qq{
+          sub on_$hook {
+             my \$parent = \$_[0]{term}{parent}
diff --git a/debian/patches/series b/debian/patches/series
index fad621c..6a53730 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -6,3 +6,4 @@
 12_hyphen_minus_sign.diff
 13_section_mismatch.diff
 14_pod_errors.diff
+15_perl_518.diff

-- 
Git repository for pkg-urxvt




More information about the Pkg-urxvt-maintainers mailing list