[SCM] Debian packaging of libmojolicious-perl branch, master, updated. debian/2.98+dfsg-2-6-gdd2e6d6

CSILLAG Tamas cstamas at cstamas.hu
Wed Dec 19 17:17:30 UTC 2012


The following commit has been merged in the master branch:
commit e0a838d437521f7f5c3f872eb194c17bb9a81e33
Author: CSILLAG Tamas <cstamas at cstamas.hu>
Date:   Wed Dec 12 01:09:18 2012 +0100

    drop unneeded patch

diff --git a/debian/patches/dont-clobber-dollar-_ b/debian/patches/dont-clobber-dollar-_
deleted file mode 100644
index 0e902a0..0000000
--- a/debian/patches/dont-clobber-dollar-_
+++ /dev/null
@@ -1,24 +0,0 @@
-Description: Dont clobber  $_ global variable
- replace $_ with a lexical varable. A similar patch has 
- been applied upstream.
- .
- This patch should be removed for Mojolicous >= 3.38
-Bug: Debian-686750
-Author: dod
-Applied-Upstream: yes
---- a/lib/Mojo/Transaction/WebSocket.pm
-+++ b/lib/Mojo/Transaction/WebSocket.pm
-@@ -297,9 +297,10 @@
- 
-   # 512 byte mask
-   $mask = $mask x 128;
--  my $output = '';
--  $output .= $_ ^ $mask while length($_ = substr($input, 0, 512, '')) == 512;
--  return $output .= $_ ^ substr($mask, 0, length, '');
-+  my $buffer = my $output = '';
-+  $output .= $buffer ^ $mask 
-+	while length($buffer = substr($input, 0, 512, '')) == 512;
-+  return $output .= $buffer ^ substr($mask, 0, length $buffer, '');
- }
- 
- 1;
diff --git a/debian/patches/series b/debian/patches/series
index 95da166..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +0,0 @@
-dont-clobber-dollar-_

-- 
Debian packaging of libmojolicious-perl



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