[libcairo-perl] 03/06: Drop 0001-Generate-cairo-perl-auto.typemap-and-cairo-perl-auto.patch.

gregor herrmann gregoa at debian.org
Mon Oct 26 14:47:49 UTC 2015


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

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

commit 478a165a6770db7e669d1e83bfe4057a57d3007d
Author: gregor herrmann <gregoa at debian.org>
Date:   Mon Oct 26 15:41:18 2015 +0100

    Drop 0001-Generate-cairo-perl-auto.typemap-and-cairo-perl-auto.patch.
    
    The patch is merged upstream.
---
 ...iro-perl-auto.typemap-and-cairo-perl-auto.patch | 96 ----------------------
 debian/patches/series                              |  1 -
 2 files changed, 97 deletions(-)

diff --git a/debian/patches/0001-Generate-cairo-perl-auto.typemap-and-cairo-perl-auto.patch b/debian/patches/0001-Generate-cairo-perl-auto.typemap-and-cairo-perl-auto.patch
deleted file mode 100644
index 1a0ecfa..0000000
--- a/debian/patches/0001-Generate-cairo-perl-auto.typemap-and-cairo-perl-auto.patch
+++ /dev/null
@@ -1,96 +0,0 @@
-From: intrigeri <intrigeri at boum.org>
-Date: Sun, 3 May 2015 09:33:16 +0000
-Bug: https://bugzilla.gnome.org/show_bug.cgi?id=748911
-Forwarded: yes
-Subject: Generate cairo-perl-auto.typemap and cairo-perl-auto.h in a
- deterministic way.
-
-These files are auto-generated by iterating over hash keys, that are randomly
-ordered, which prevents this package from being built reproducibly. Let's sort
-these keys so that the generated output is deterministic.
----
- inc/MakeHelper.pm | 18 +++++++++---------
- 1 file changed, 9 insertions(+), 9 deletions(-)
-
-diff --git a/inc/MakeHelper.pm b/inc/MakeHelper.pm
-index cc2ef28..56fef63 100644
---- a/inc/MakeHelper.pm
-+++ b/inc/MakeHelper.pm
-@@ -110,12 +110,12 @@ EOS
- 		$1;
- 	}
- 
--	foreach (keys %objects, keys %structs, keys %enums, keys %flags)
-+	foreach (sort(keys %objects, keys %structs, keys %enums, keys %flags))
- 	{
- 		print TYPEMAP "$_\tT_CAIROPERL_GENERIC_WRAPPER\n";
- 	}
- 
--	foreach (keys %objects, keys %structs)
-+	foreach (sort(keys %objects, keys %structs))
- 	{
- 		my $trunk = $_;
- 		$trunk =~ s/ \*//;
-@@ -125,7 +125,7 @@ EOS
- 		print TYPEMAP "const ${trunk}_ornull *\tT_CAIROPERL_GENERIC_WRAPPER\n";
- 	}
- 
--	foreach (keys %objects)
-+	foreach (sort(keys %objects))
- 	{
- 		my $trunk = $_;
- 		$trunk =~ s/ \*//;
-@@ -196,7 +196,7 @@ EOS
- 
- 	print HEADER "\n/* objects */\n\n";
- 
--	foreach (keys %objects)
-+	foreach (sort(keys %objects))
- 	{
- 		/^(.+) \*/;
- 		my $type = $1;
-@@ -226,7 +226,7 @@ EOS
- 
- 	print HEADER "\n/* structs */\n\n";
- 
--	foreach (keys %structs)
-+	foreach (sort(keys %structs))
- 	{
- 		/^(.+) \*/;
- 		my $type = $1;
-@@ -253,7 +253,7 @@ EOS
- 
- 	print HEADER "\n/* enums */\n\n";
- 
--	foreach my $type (keys %enums)
-+	foreach my $type (sort(keys %enums))
- 	{
- 		my $mangled = mangle ($type);
- 		my $name = name ($type);
-@@ -280,7 +280,7 @@ EOS
- 
- 	print HEADER "\n/* flags */\n\n";
- 
--	foreach my $type (keys %flags)
-+	foreach my $type (sort(keys %flags))
- 	{
- 		my $mangled = mangle ($type);
- 		my $name = name ($type);
-@@ -380,7 +380,7 @@ sub do_enums
- 
- EOS
- 
--	foreach my $type (keys %enums)
-+	foreach my $type (sort(keys %enums))
- 	{
- 		my $name = name($type);
- 		my @enum_values = @{$enums{$type}};
-@@ -492,7 +492,7 @@ sub do_flags
- 
- EOS
- 
--	foreach my $type (keys %flags)
-+	foreach my $type (sort(keys %flags))
- 	{
- 		my $name = name($type);
- 		my @flag_values = @{$flags{$type}};
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 8b752c4..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-Generate-cairo-perl-auto.typemap-and-cairo-perl-auto.patch

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



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