[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/12: maint: Generate AUTHORS and ChangeLog reproducibly.
From: |
guix-commits |
Subject: |
05/12: maint: Generate AUTHORS and ChangeLog reproducibly. |
Date: |
Sat, 6 Apr 2024 17:16:32 -0400 (EDT) |
janneke pushed a commit to branch wip-tarball
in repository guix.
commit 535e975e124a2c9f82cf683728ca25fcf30f7948
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Apr 3 23:45:59 2024 +0200
maint: Generate AUTHORS and ChangeLog reproducibly.
* Makefile.am (gen-ChangeLog): Set LC_ALL=en_US.UTF-8 TZ=UTC0.
(gen-AUTHORS): Likewise.
Change-Id: I109ceffdf07b8dde6385b6b509366c47564c9f31
---
Makefile.am | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Makefile.am b/Makefile.am
index a5e49bc406..7af88b2988 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -974,6 +974,8 @@ gen-tarball-version:
gen-ChangeLog:
$(AM_V_GEN)if test -e .git; then \
+ export LC_ALL=en_US.UTF-8; \
+ export TZ=UTC0; \
$(top_srcdir)/build-aux/gitlog-to-changelog \
> $(distdir)/ChangeLog.tmp; \
rm -f $(distdir)/ChangeLog; \
@@ -983,6 +985,8 @@ gen-ChangeLog:
gen-AUTHORS:
$(AM_V_GEN)if test -e .git; then \
rm -f "$(distdir)/AUTHORS"; \
+ export LC_ALL=en_US.UTF-8; \
+ export TZ=UTC0; \
$(top_builddir)/pre-inst-env "$(GUILE)" \
"$(top_srcdir)/build-aux/generate-authors.scm" \
"$(top_srcdir)" "$(distdir)/AUTHORS"; \
- branch wip-tarball created (now 933766d5b3), guix-commits, 2024/04/06
- 01/12: maint: Cater for running `make dist' from a worktree., guix-commits, 2024/04/06
- 06/12: maint: Generate 'doc/version-LANG.texi' reproducibly., guix-commits, 2024/04/06
- 07/12: maint: Use xgettext.scm wrapper to create .PO files reproducibly., guix-commits, 2024/04/06
- 02/12: maint: Use reproducible timestamps and name for tarball., guix-commits, 2024/04/06
- 03/12: maint: Generate 'doc/version.texi' reproducibly., guix-commits, 2024/04/06
- 04/12: maint: Help help2man generate reproducible man-pages., guix-commits, 2024/04/06
- 05/12: maint: Generate AUTHORS and ChangeLog reproducibly.,
guix-commits <=
- 12/12: maint: Ensure generated file reproducibility for dist., guix-commits, 2024/04/06
- 08/12: maint: Use reproducible Git timestamp for POT-Creation-Date., guix-commits, 2024/04/06
- 10/12: maint: Avoid PNG and PDF generation to fail silently., guix-commits, 2024/04/06
- 09/12: maint: Remove %%CreationDate from generated EPS files, guix-commits, 2024/04/06
- 11/12: maint: Reset CreationDate metadata on generated PDFs., guix-commits, 2024/04/06