From c065b972ed294769a41936d6b9feb336473af5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Boskovits?= Date: Sat, 4 Nov 2017 15:28:47 +0100 Subject: Fix SOURCE_DATE_EPOCH ignored bug (#2735) * Fix SOURCE_DATE_EPOCH ignored bug Fix a bug in networkx/release.py that makes build non-reproducible. --- networkx/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networkx/release.py b/networkx/release.py index e81fc0c0..6322cf0d 100644 --- a/networkx/release.py +++ b/networkx/release.py @@ -135,7 +135,7 @@ def get_revision(): def get_info(dynamic=True): # Date information - date_info = datetime.datetime.now() + date_info = datetime.datetime.utcfromtimestamp(int(os.environ.get('SOURCE_DATE_EPOCH', time.time()))) date = time.asctime(date_info.timetuple()) revision, version, version_info, vcs_info = None, None, None, None -- 2.14.2 ized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/build/linux-initrd.scm
AgeCommit message (Expand)Author
2020-12-15store-copy: 'populate-store' can optionally deduplicate files....Until now deduplication was performed as an additional pass after copying files, which involve re-traversing all the files that had just been copied. * guix/store/deduplication.scm (copy-file/deduplicate): New procedure. * tests/store-deduplication.scm ("copy-file/deduplicate"): New test. * guix/build/store-copy.scm (populate-store): Add #:deduplicate? parameter and honor it. * tests/gexp.scm ("gexp->derivation, store copy"): Pass #:deduplicate? #f to 'populate-store'. * gnu/build/image.scm (initialize-root-partition): Pass #:deduplicate? to 'populate-store'. Pass #:deduplicate? #f to 'register-closure'. * gnu/build/vm.scm (root-partition-initializer): Likewise. * gnu/build/install.scm (populate-single-profile-directory): Pass #:deduplicate? #f to 'populate-store'. * gnu/build/linux-initrd.scm (build-initrd): Likewise. * guix/scripts/pack.scm (self-contained-tarball)[import-module?]: New procedure. [build]: Pass it as an argument to 'source-module-closure'. * guix/scripts/pack.scm (squashfs-image)[build]: Wrap in 'with-extensions'. * gnu/system/linux-initrd.scm (expression->initrd)[import-module?]: New procedure. [builder]: Pass it to 'source-module-closure'. * gnu/system/install.scm (cow-store-service-type)[import-module?]: New procedure. Pass it to 'source-module-closure'. Ludovic Courtès
2020-11-21linux-initrd: Remove unnecessary timestamp reset phase....* gnu/build/linux-initrd.scm (write-cpio-archive): Mention timestamps in docstring. (build-initrd): Remove unnecessary timestamp reset phase. Ludovic Courtès