[libencode-jis2k-perl] 01/03: Make the XS code reproducible by sorting hash keys.

Niko Tyni ntyni at moszumanska.debian.org
Mon Jun 1 17:41:15 UTC 2015


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

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

commit c7c0495d6b26123b5ede418ea24a78879a8af7eb
Author: Niko Tyni <ntyni at debian.org>
Date:   Mon Jun 1 20:32:04 2015 +0300

    Make the XS code reproducible by sorting hash keys.
---
 ...XS-code-reproducible-by-sorting-hash-keys.patch | 60 ++++++++++++++++++++++
 debian/patches/series                              |  1 +
 2 files changed, 61 insertions(+)

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
new file mode 100644
index 0000000..a02cc42
--- /dev/null
+++ b/debian/patches/0001-Make-the-XS-code-reproducible-by-sorting-hash-keys.patch
@@ -0,0 +1,60 @@
+From 490886f85f22c84268702fad88163e7e6392fe6f Mon Sep 17 00:00:00 2001
+From: Niko Tyni <ntyni at debian.org>
+Date: Mon, 1 Jun 2015 20:32:04 +0300
+Subject: [PATCH] Make the XS code reproducible by sorting hash keys.
+
+---
+ 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
new file mode 100644
index 0000000..0f5733c
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+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



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