guix-commits
[Top][All Lists]
Advanced

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

04/09: gnu: openmpi: Make binaries reproducible.


From: Eric Bavier
Subject: 04/09: gnu: openmpi: Make binaries reproducible.
Date: Thu, 21 Jul 2016 04:49:41 +0000 (UTC)

bavier pushed a commit to branch master
in repository guix.

commit 9474a4b3ec568164583a4ca7aa3c01d02ac014da
Author: Eric Bavier <address@hidden>
Date:   Fri Jul 8 16:00:07 2016 -0500

    gnu: openmpi: Make binaries reproducible.
    
    * gnu/packages/mpi.scm (openmpi)[arguments]: Remove timestamps from
    source files.  Delete installed configure logs.
---
 gnu/packages/mpi.scm |   15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 254f2a5..68937a2 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -128,7 +128,20 @@ bind processes, and much more.")
                            ,(string-append "--with-valgrind="
                                            (assoc-ref %build-inputs 
"valgrind"))
                            ,(string-append "--with-hwloc="
-                                           (assoc-ref %build-inputs 
"hwloc")))))
+                                           (assoc-ref %build-inputs "hwloc")))
+       #:phases (modify-phases %standard-phases
+                  (add-before 'build 'scrub-timestamps ;reproducibility
+                    (lambda _
+                      (substitute* '("ompi/tools/ompi_info/param.c"
+                                     "orte/tools/orte-info/param.c"
+                                     "oshmem/tools/oshmem_info/param.c")
+                        ((".*(Built|Configured) on.*") ""))
+                      #t))
+                  (add-after 'install 'remove-logs ;reproducibility
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let ((out (assoc-ref outputs "out")))
+                        (for-each delete-file (find-files out "config.log"))
+                        #t))))))
     (home-page "http://www.open-mpi.org";)
     (synopsis "MPI-2 implementation")
     (description



reply via email to

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