Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/automake/files/
Date: Tue, 09 Jan 2018 02:02:19
Message-Id: 1515420164.ef1e731e2c28f8548f3e66aec20a1cada5518c91.polynomial-c@gentoo
1 commit: ef1e731e2c28f8548f3e66aec20a1cada5518c91
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 6 08:54:28 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 8 14:02:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1e731e
7
8 sys-devel/automake: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/6769
11
12 .../automake/files/automake-1.15-mdate-tz.patch | 53 ----------------------
13 1 file changed, 53 deletions(-)
14
15 diff --git a/sys-devel/automake/files/automake-1.15-mdate-tz.patch b/sys-devel/automake/files/automake-1.15-mdate-tz.patch
16 deleted file mode 100644
17 index e00f2bf329d..00000000000
18 --- a/sys-devel/automake/files/automake-1.15-mdate-tz.patch
19 +++ /dev/null
20 @@ -1,53 +0,0 @@
21 -https://bugs.gentoo.org/520818
22 -https://bugs.gentoo.org/574492
23 -https://lists.gnu.org/archive/html/bug-automake/2014-10/msg00003.html
24 -https://lists.gnu.org/archive/html/bug-automake/2014-10/msg00004.html
25 -
26 -https://debbugs.gnu.org/20314
27 -https://bugs.debian.org/782345
28 -https://lists.gnu.org/archive/html/automake-patches/2015-04/msg00000.html
29 -
30 -From: Reiner Herrmann <reiner@××××××××.de>
31 -Date: Sat, 18 Jul 2015 14:10:35 -0400
32 -Subject: Make output of mdate-sh deterministic
33 -
34 -mdate-sh pretty-prints the modification time of a file.
35 -But it's output can vary depending on the timezone of
36 -the caller. Someone in timezone GMT-12 will get a different
37 -result (day) than someone in timezone GMT+12.
38 -
39 -As this output is also used to create/update stamp files,
40 -which influence the further build process, the build result
41 -can vary.
42 -To enable reproducible builds and to have a more deterministic
43 -build behavior, this change fixes the timezone to UTC.
44 -
45 -Signed-off-by: Reiner Herrmann <reiner at reiner-h.de>
46 ----
47 - lib/mdate-sh | 6 +++++-
48 - 1 file changed, 5 insertions(+), 1 deletion(-)
49 -
50 -diff --git a/lib/mdate-sh b/lib/mdate-sh
51 -index e8dfaca..9e2c0c9 100755
52 ---- a/lib/mdate-sh
53 -+++ b/lib/mdate-sh
54 -@@ -1,7 +1,7 @@
55 - #!/bin/sh
56 - # Get modification time of a file or directory and pretty-print it.
57 -
58 --scriptversion=2010-08-21.06; # UTC
59 -+scriptversion=2015-04-09.19; # UTC
60 -
61 - # Copyright (C) 1995-2014 Free Software Foundation, Inc.
62 - # written by Ulrich Drepper <drepper@××××××××××.edu>, June 1995
63 -@@ -74,6 +74,10 @@ export LC_ALL
64 - LC_TIME=C
65 - export LC_TIME
66 -
67 -+# Use UTC to get reproducible result
68 -+TZ=UTC
69 -+export TZ
70 -+
71 - # GNU ls changes its time format in response to the TIME_STYLE
72 - # variable. Since we cannot assume 'unset' works, revert this
73 - # variable to its documented default.