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

gregoa pushed a commit to branch master
in repository libencode-jis2k-perl.

commit 21f826ac17769bedb93068881990d84d275daf9e
Author: gregor herrmann <gre...@debian.org>
Date:   Sat Jul 4 20:57:09 2015 +0200

    Drop 0001-Make-the-XS-code-reproducible-by-sorting-hash-keys.patch.
    
    Merged upstream.
---
 ...XS-code-reproducible-by-sorting-hash-keys.patch | 61 ----------------------
 debian/patches/series                              |  1 -
 2 files changed, 62 deletions(-)

diff --git 
a/debian/patches/0001-Make-the-XS-code-reproducible-by-sorting-hash-keys.patch 
b/debian/patches/0001-Make-the-XS-code-reproducible-by-sorting-hash-keys.patch
deleted file mode 100644
index 4714305..0000000
--- 
a/debian/patches/0001-Make-the-XS-code-reproducible-by-sorting-hash-keys.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From 490886f85f22c84268702fad88163e7e6392fe6f Mon Sep 17 00:00:00 2001
-From: Niko Tyni <nt...@debian.org>
-Date: Mon, 1 Jun 2015 20:32:04 +0300
-Subject: [PATCH] Make the XS code reproducible by sorting hash keys.
-
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=104967
----
- Makefile.PL | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index bd7e649..3f494d8 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -74,7 +74,7 @@ sub post_initialize
-     $self->{'C'} = ["$name.c"];
-     # $self->{'H'} = [$self->catfile($self->updir,'encode.h')];
-     my %xs;
--    foreach my $table (keys %tables) {
-+    foreach my $table (sort keys %tables) {
-       push (@{$self->{'C'}},"$table.c");
-       # Do NOT add $table.h etc. to H_FILES unless we own up as to how they
-       # get built.
-@@ -92,7 +92,7 @@ sub post_initialize
- #define U8 U8
- #include "encode.h"
- END
--    foreach my $table (keys %tables) {
-+    foreach my $table (sort keys %tables) {
-       print XS qq[#include "${table}.h"\n];
-     }
-     print XS <<"END";
-@@ -121,7 +121,7 @@ PROTOTYPES: DISABLE
- BOOT:
- {
- END
--    foreach my $table (keys %tables) {
-+    foreach my $table (sort keys %tables) {
-       print XS qq[#include "${table}.exh"\n];
-     }
-     print XS "}\n";
-@@ -135,14 +135,14 @@ sub postamble
-     my $dir  = "."; # $self->catdir('Encode');
-     my $str  = "# $name\$(OBJ_EXT) depends on .h and .exh files not .c files 
- but all written by enc2xs\n";
-     $str    .= "$name.c : $name.xs ";
--    foreach my $table (keys %tables)
-+    foreach my $table (sort keys %tables)
-     {
-       $str .= " $table.c";
-     }
-     $str .= "\n\n";
-     $str .= "$name\$(OBJ_EXT) : $name.c\n\n";
- 
--    foreach my $table (keys %tables)
-+    foreach my $table (sort keys %tables)
-     {
-       my $numlines = 1;
-       my $lengthsofar = length($str);
--- 
-2.1.4
-
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 0f5733c..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-Make-the-XS-code-reproducible-by-sorting-hash-keys.patch

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to