# HG changeset patch # User Bernhard M. Wiedemann # Date 1502609999 -7200 # Sun Aug 13 09:39:59 2017 +0200 # Node ID a98e00eed893f62dd8349fc2894abca3aff4b33a # Parent 41ce01b7d413b3654211da0147857e7d6a1495de Facilitate reproducible builds by allowing to externally hold constant the build date and time. See https://reproducible-builds.org/specs/source-date-epoch/ Backport asap. diff -r 41ce01b7d413 -r a98e00eed893 NEWS --- a/NEWS Sun Aug 13 09:39:56 2017 +0200 +++ b/NEWS Sun Aug 13 09:39:59 2017 +0200 @@ -48,6 +48,12 @@ https://github.com/akrzemi1/Optional where only "optional.hpp" is needed. +- The environment variable SOURCE_DATE_EPOCH overrides the build + timestamp as recorded by the signatures. See + https://reproducible-builds.org/specs/source-date-epoch/ + for details. + + * Version 4.2 "Compressor Road" diff -r 41ce01b7d413 -r a98e00eed893 src/DefaultSig.pm --- a/src/DefaultSig.pm Sun Aug 13 09:39:56 2017 +0200 +++ b/src/DefaultSig.pm Sun Aug 13 09:39:59 2017 +0200 @@ -109,9 +109,10 @@ sub update_date_and_time { my $self = shift; + my $now = $ENV{SOURCE_DATE_EPOCH} || time; my ($second, $minute, $hour, $day_of_month, $month, $year, - $day_of_week) = $self->is_using_gmt() ? gmtime : localtime; + $day_of_week) = $self->is_using_gmt() ? gmtime($now) : localtime($now); $self->{DATE} = $self->format_date($day_of_month, $month, $year + 1900, $day_of_week, $self->weekdays->[$day_of_week], class='right' method='get' action='/guix/log/gnu/packages/distributed.scm'>
path: root/gnu/packages/distributed.scm
packages/gcc.scm?id=a365777ebd6296e548422da57de0c2884114fd8d'>gnu: gcc-10: Update to 10.3.0....* gnu/packages/gcc.scm (gcc-10): Update to 10.3.0.
AgeCommit message (Expand)Author
2024-11-02gnu: Add distcc....* gnu/packages/distributed.scm (distcc): New package. Change-Id: Ibf486fbb5661e31769d8f987fc787ddfb514e57c NoƩ Lopez
2024-10-28gnu: Remove boinc-server....boinc-server is not supposed to be installed this (or any other) packaged way. Also, it uses a completely different versioning scheme. * gnu/packages/distributed.scm (boinc-server): Delete variable. Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Change-Id: I85c7176424c7db65eb5233bfefab01c62a0d757c Vitalii Koshura
2024-09-12gnu: boinc-client, boinc-server: Update to 8.0.2....Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Change-Id: If7748f84ee8259338170bf7ffc4accd7be33f291 Vitalii Koshura
Efraim Flashner
2021-03-25gnu: gcc: Fix comment about gfortran....Added by: cb4805e34c9997edca14743516b9a0fde6303d1c Fixes: 0681f05486d901c92637c098bb7afddef35068b0 * gnu/packages/gcc.scm (gcc): Fix comment about gfortran. Signed-off-by: Christopher Baines <mail@cbaines.net> Vincent Legoll
2021-03-23gnu: gcc-4.7: On powerpc64le, fix /lib64 references....Fixes: <https://bugs.gnu.org/46253>. * gnu/packages/gcc.scm (gcc-4.7)[#:phases][pre-configure]: When the gcc/config/rs6000 directory exists, replace "/lib64" with "/lib" in all files within it. Note that this fix will be picked up by any package that re-uses the pre-configure phase from gcc-4.7 (e.g., all the usual gcc packages). (make-libstdc++)[#:phases][fix-rs6000-libdir]: New phase, which does the same as above. It was necessary to duplicate the fix here because make-libstdc++ does not re-use the pre-configure phase from gcc-4.7. Chris Marusich