emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#25934: closed ([PATCH] gnu: icedtea-8: Do not embe


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#25934: closed ([PATCH] gnu: icedtea-8: Do not embed build time.)
Date: Thu, 02 Mar 2017 20:52:02 +0000

Your message dated Thu, 02 Mar 2017 21:51:05 +0100
with message-id <address@hidden>
and subject line Re: bug#25934: [PATCH] gnu: icedtea-8: Do not embed build time.
has caused the debbugs.gnu.org bug report #25934,
regarding [PATCH] gnu: icedtea-8: Do not embed build time.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
25934: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25934
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: icedtea-8: Do not embed build time. Date: Thu, 2 Mar 2017 12:39:09 +0100
* gnu/packages/java.scm (icedtea-8)[source]: Modify snippet to erase the
embedded build time.
---
 gnu/packages/java.scm | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index cf4ba69d6..1ff106cb9 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2015, 2016 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2016 Leo Famulari <address@hidden>
 ;;; Copyright © 2016, 2017 Roel Janssen <address@hidden>
 ;;; Copyright © 2017 Carlo Zancanaro <address@hidden>
@@ -855,10 +855,15 @@ IcedTea build harness.")
                   "02vmxa6gc6gizcri1fy797qmmm9y77vgi7gy9pwkk4agcw4zyr5p"))
                 (modules '((guix build utils)))
                 (snippet
-                 '(substitute* "Makefile.am"
-                    ;; do not leak information about the build host
-                    (("DISTRIBUTION_ID=\"\\$\\(DIST_ID\\)\"")
-                     "DISTRIBUTION_ID=\"\\\"guix\\\"\"")))))
+                 '(begin
+                    (substitute* "acinclude.m4"
+                      ;; Do not embed build time
+                      (("(DIST_ID=\"Custom build).*$" _ prefix)
+                       (string-append prefix "\"\n"))
+                      ;; Do not leak information about the build host
+                      (("DIST_NAME=\"\\$build_os\"")
+                       "DIST_NAME=\"guix\""))
+                    #t))))
       (arguments
        (substitute-keyword-arguments (package-arguments icedtea-7)
          ((#:configure-flags flags)
-- 
2.12.0





--- End Message ---
--- Begin Message --- Subject: Re: bug#25934: [PATCH] gnu: icedtea-8: Do not embed build time. Date: Thu, 02 Mar 2017 21:51:05 +0100 User-agent: mu4e 0.9.18; emacs 25.1.1
> * gnu/packages/java.scm (icedtea-8)[source]: Modify snippet to erase the
> embedded build time.

Since I’ve just pushed the patch to remove icedtea-6, which causes a
rebuild of icedtea-8 I went ahead and also pushed this one to master
with commit 0c729ef4e.

~~ Ricardo



--- End Message ---

reply via email to

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