[libglib-perl] 22/25: Drop sort_podify_signals patch: applied upstream.

Intrigeri intrigeri at moszumanska.debian.org
Tue Dec 29 18:43:56 UTC 2015


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

intrigeri pushed a commit to branch experimental
in repository libglib-perl.

commit 54c5eff8f3548440c80a722bd410bb84a1e094a3
Author: intrigeri <intrigeri at boum.org>
Date:   Tue Dec 29 18:05:26 2015 +0000

    Drop sort_podify_signals patch: applied upstream.
---
 debian/patches/series              |  1 -
 debian/patches/sort_podify_signals | 22 ----------------------
 2 files changed, 23 deletions(-)

diff --git a/debian/patches/series b/debian/patches/series
index e54ec90..e114de1 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 remove-version-checking
-sort_podify_signals
 Add-missing-information-to-POD.patch
 Properly-escape-dash-in-generated-POD.patch
diff --git a/debian/patches/sort_podify_signals b/debian/patches/sort_podify_signals
deleted file mode 100644
index 491e71c..0000000
--- a/debian/patches/sort_podify_signals
+++ /dev/null
@@ -1,22 +0,0 @@
-Description: sort the output of podify_signals
- The output of Glib::Type->list_signals is unsorted. This results in the 
- generated pod files to be in random order which makes packages using signals 
- compile not reproducibly [1]. It was suggested to Glib upstream [2] to sort
- the output of g_signal_list_ids but it got rejected. Thus the change has to 
- be made here. 
- [1] https://wiki.debian.org/ReproducibleBuilds/About
- [2] https://bugzilla.gnome.org/show_bug.cgi?id=743863  
-Author: akira <marivalenm at gmail.com>
-Bug: https://bugzilla.gnome.org/show_bug.cgi?id=748796
-
---- libglib-perl-1.305.orig/lib/Glib/GenPod.pm
-+++ libglib-perl-1.305/lib/Glib/GenPod.pm
-@@ -716,7 +716,7 @@ sub podify_signals {
- 	my @sigs = Glib::Type->list_signals (shift);
- 	return undef unless @sigs;
- 	$str = "=over\n\n";
--	foreach (@sigs) {
-+	foreach (sort {$a->{signal_name} cmp $b->{signal_name} } @sigs) {
- 		$str .= '=item ';
- 		$str .= convert_type ($_->{return_type}).' = '
- 			if exists $_->{return_type};

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



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