[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70169] [PATCH v2 03/12] maint: Generate 'doc/version.texi' reproduc
From: |
Janneke Nieuwenhuizen |
Subject: |
[bug#70169] [PATCH v2 03/12] maint: Generate 'doc/version.texi' reproducibly. |
Date: |
Sat, 6 Apr 2024 23:17:55 +0200 |
From: Timothy Sample <samplet@ngyro.com>
* 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 8df003b891..5f014b9c3d 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.
#
@@ -247,3 +248,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.
+$(srcdir)/doc/stamp-vti: $(srcdir)/doc/guix.texi $(top_srcdir)/configure
+ $(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
--
2.41.0
- [bug#70169] [PATCH v2 02/12] maint: Use reproducible timestamps and name for tarball., (continued)
- [bug#70169] [PATCH v2 02/12] maint: Use reproducible timestamps and name for tarball., Janneke Nieuwenhuizen, 2024/04/06
- [bug#70169] [PATCH v2 01/12] maint: Cater for running `make dist' from a worktree., Janneke Nieuwenhuizen, 2024/04/06
- [bug#70169] [PATCH v2 04/12] maint: Help help2man generate reproducible man-pages., Janneke Nieuwenhuizen, 2024/04/06
- [bug#70169] [PATCH v2 04/12] maint: Help help2man generate reproducible man-pages., Ludovic Courtès, 2024/04/08
- [bug#70169] [PATCH v2 04/12] maint: Help help2man generate reproducible man-pages., Janneke Nieuwenhuizen, 2024/04/08
[bug#70169] [PATCH v2 06/12] maint: Generate 'doc/version-LANG.texi' reproducibly., Janneke Nieuwenhuizen, 2024/04/06
[bug#70169] [PATCH v2 10/12] maint: Avoid PNG and PDF generation to fail silently., Janneke Nieuwenhuizen, 2024/04/06
[bug#70169] [PATCH v2 03/12] maint: Generate 'doc/version.texi' reproducibly.,
Janneke Nieuwenhuizen <=
[bug#70169] [PATCH v2 08/12] maint: Use reproducible Git timestamp for POT-Creation-Date., Janneke Nieuwenhuizen, 2024/04/06
[bug#70169] [PATCH v2 05/12] maint: Generate AUTHORS and ChangeLog reproducibly., Janneke Nieuwenhuizen, 2024/04/06
[bug#70169] [PATCH v2 07/12] maint: Use xgettext.scm wrapper to create .PO files reproducibly., Janneke Nieuwenhuizen, 2024/04/06
[bug#70169] [PATCH v2 09/12] maint: Remove %%CreationDate from generated EPS files, Janneke Nieuwenhuizen, 2024/04/06
[bug#70169] [PATCH v2 11/12] maint: Reset CreationDate metadata on generated PDFs., Janneke Nieuwenhuizen, 2024/04/06