File: reproducible_build.patch

package info (click to toggle)
libelixirfm-perl 1.1.976-4
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 348 kB
  • ctags: 125
  • sloc: perl: 2,260; makefile: 14
file content (19 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: make build reproducible by sorting hash keys
Origin: vendor
Bug-Debian: https://bugs.debian.org/778953
Forwarded: not-yet
Author: Chris Lamb <lamby@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-05-02

--- a/lib/ElixirFM/Data/Compose.PL
+++ b/lib/ElixirFM/Data/Compose.PL
@@ -49,7 +49,7 @@
 }
 
 
-printf "%s\t=> %s,\n", Data::Dumper->Dump([$_]), Data::Dumper->Dump([$data->{$_}]) foreach keys %{$data};
+printf "%s\t=> %s,\n", Data::Dumper->Dump([$_]), Data::Dumper->Dump([$data->{$_}]) foreach sort keys %{$data};
 
 
 print << 'PM';