guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: gnustandards: Build reproducibly.


From: guix-commits
Subject: branch master updated: gnu: gnustandards: Build reproducibly.
Date: Thu, 02 Jun 2022 14:52:00 -0400

This is an automated email from the git hooks/post-receive script.

vagrantc pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 615239d5ca gnu: gnustandards: Build reproducibly.
615239d5ca is described below

commit 615239d5caa5f668894bfccbb35f5ffa6b756615
Author: Vagrant Cascadian <vagrant@reproducible-builds.org>
AuthorDate: Thu Jun 2 11:44:28 2022 -0700

    gnu: gnustandards: Build reproducibly.
    
    Avoid embedding timestamp in info.gz files.
    
    * gnu/packages/gnu-doc.scm (gnustandards)[arguments]: Pass "-n" to gzip
      invocations.
---
 gnu/packages/gnu-doc.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnu-doc.scm b/gnu/packages/gnu-doc.scm
index 9fb746ee97..22fc976425 100644
--- a/gnu/packages/gnu-doc.scm
+++ b/gnu/packages/gnu-doc.scm
@@ -89,8 +89,8 @@ list.")
                     (string-append source "/maintain.texi"))
             (invoke "makeinfo" "--output" info-dir
                     (string-append source "/standards.texi"))
-            (invoke "gzip" (string-append info-dir "/maintain.info"))
-            (invoke "gzip" (string-append info-dir "/standards.info"))))))
+            (invoke "gzip" "-n" (string-append info-dir "/maintain.info"))
+            (invoke "gzip" "-n" (string-append info-dir "/standards.info"))))))
     (home-page "https://www.gnu.org/prep/standards/";)
     (synopsis "GNU coding standards and maintainer information")
     (description "The GNU Coding Standards were written by Richard Stallman



reply via email to

[Prev in Thread] Current Thread [Next in Thread]