[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/08: maint: Generate 'version.texi' reproducibly.
From: |
guix-commits |
Subject: |
03/08: maint: Generate 'version.texi' reproducibly. |
Date: |
Wed, 3 Apr 2024 02:44:07 -0400 (EDT) |
janneke pushed a commit to branch wip-tarball
in repository guix.
commit 305c21df53d531fd1a38cbb58a0b106c589f0f96
Author: Timothy Sample <samplet@ngyro.com>
AuthorDate: Tue Dec 10 14:53:51 2019 -0500
maint: Generate 'version.texi' reproducibly.
* doc/local.mk ($(srcdir)/doc/stamp-vti): New rule (overriding one provided
by Automake).
Co-authored-by: Janneke Nieuwenhuizen <janneke@gnu.org>
Change-Id: If44965e9a3ecfb45865c58ee7a558951be8d15ae
---
doc/local.mk | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/doc/local.mk b/doc/local.mk
index 0ff317a19e..936a561986 100644
--- a/doc/local.mk
+++ b/doc/local.mk
@@ -5,6 +5,7 @@
# Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
# Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
# Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
+# Copyright © 2019 Timothy Sample <samplet@ngyro.com>
#
# This file is part of GNU Guix.
#
@@ -248,3 +249,22 @@ $(srcdir)/%D%/guix-daemon.1: guix-daemon$(EXEEXT)
endif
endif
+
+# Reproducible tarball
+
+# Generate 'version.texi' reproducibly using metadata from Git rather
+# than using metadata from the filesystem.
+override $(srcdir)/doc/stamp-vti: $(srcdir)/doc/guix.texi
+ $(AM_V_GEN)set -e \
+ export LC_ALL=C; \
+ export TZ=UTC0; \
+ timestamp=$$(git log --pretty=format:%ct -n1 -- $< 2>/dev/null \
+ || echo $(SOURCE_DATE_EPOCH)) \
+ dmy=$$(date --date="@$$timestamp" "+%-d %B %Y"); \
+ my=$$(date --date="@$$timestamp" "+%B %Y"); \
+ { echo "@set UPDATED $$dmy"; \
+ echo "@set UPDATED-MONTH $$my"; \
+ echo "@set EDITION $(VERSION)"; \
+ echo "@set VERSION $(VERSION)"; } > $@-t; \
+ mv $@-t $@
+ @cp $@ $(srcdir)/doc/version.texi
- branch wip-tarball created (now 91d5da26fa), guix-commits, 2024/04/03
- 02/08: maint: Use reproducible timestamps and name for tarball., guix-commits, 2024/04/03
- 05/08: maint: Help help2man generate reproducible man-pages., guix-commits, 2024/04/03
- 06/08: maint: Generate 'version-LANG.texi' reproducibly., guix-commits, 2024/04/03
- 01/08: maint: Cater for running `make dist' from a worktree., guix-commits, 2024/04/03
- 04/08: maint: Ensure generated file reproducibility for dist., guix-commits, 2024/04/03
- 03/08: maint: Generate 'version.texi' reproducibly.,
guix-commits <=
- 07/08: maint: Use reproducible POT-Creation-Date., guix-commits, 2024/04/03
- 08/08: maint: Update PO upon "make dist"., guix-commits, 2024/04/03