From unknown Mon Jun 23 07:52:03 2025 X-Loop: help-debbugs@gnu.org Subject: bug#25934: [PATCH] gnu: icedtea-8: Do not embed build time. Resent-From: Ricardo Wurmus Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 02 Mar 2017 11:40:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 25934 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 25934@debbugs.gnu.org Cc: Ricardo Wurmus X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.148845477329754 (code B ref -1); Thu, 02 Mar 2017 11:40:01 +0000 Received: (at submit) by debbugs.gnu.org; 2 Mar 2017 11:39:33 +0000 Received: from localhost ([127.0.0.1]:35427 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cjP4y-0007jl-15 for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:32 -0500 Received: from eggs.gnu.org ([208.118.235.92]:49617) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cjP4w-0007jW-1Z for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjP4q-0008Q0-2w for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:21 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50162) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjP4p-0008Pw-Vo for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:20 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjP4o-0003Ea-Ot for guix-patches@gnu.org; Thu, 02 Mar 2017 06:39:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjP4k-0008Pe-Nf for guix-patches@gnu.org; Thu, 02 Mar 2017 06:39:18 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21117) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjP4k-0008PR-HB for guix-patches@gnu.org; Thu, 02 Mar 2017 06:39:14 -0500 Received: from localhost (141.80.148.118 [141.80.148.118]) by mx.zohomail.com with SMTPS id 1488454753068485.0873384529576; Thu, 2 Mar 2017 03:39:13 -0800 (PST) From: Ricardo Wurmus Date: Thu, 2 Mar 2017 12:39:09 +0100 Message-Id: <20170302113909.26536-1-rekado@elephly.net> X-Mailer: git-send-email 2.12.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) * 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 +;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016, 2017 Roel Janssen ;;; Copyright © 2017 Carlo Zancanaro @@ -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 From unknown Mon Jun 23 07:52:03 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Ricardo Wurmus Subject: bug#25934: closed (Re: bug#25934: [PATCH] gnu: icedtea-8: Do not embed build time.) Message-ID: References: <874lzbwgg6.fsf@elephly.net> <20170302113909.26536-1-rekado@elephly.net> X-Gnu-PR-Message: they-closed 25934 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 25934@debbugs.gnu.org Date: Thu, 02 Mar 2017 20:52:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1488487922-31547-1" This is a multi-part message in MIME format... ------------=_1488487922-31547-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #25934: [PATCH] gnu: icedtea-8: Do not embed build time. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 25934@debbugs.gnu.org. --=20 25934: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D25934 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1488487922-31547-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 25934-done) by debbugs.gnu.org; 2 Mar 2017 20:51:12 +0000 Received: from localhost ([127.0.0.1]:36984 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cjXgu-0008Be-Bi for submit@debbugs.gnu.org; Thu, 02 Mar 2017 15:51:12 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21002) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cjXgt-0008BV-2O for 25934-done@debbugs.gnu.org; Thu, 02 Mar 2017 15:51:11 -0500 Received: from localhost (x4d0c9006.dyn.telefonica.de [77.12.144.6]) by mx.zohomail.com with SMTPS id 148848786795728.188514934875343; Thu, 2 Mar 2017 12:51:07 -0800 (PST) References: <20170302113909.26536-1-rekado@elephly.net> User-agent: mu4e 0.9.18; emacs 25.1.1 From: Ricardo Wurmus To: 25934-done@debbugs.gnu.org Subject: Re: bug#25934: [PATCH] gnu: icedtea-8: Do not embed build time. In-reply-to: <20170302113909.26536-1-rekado@elephly.net> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Thu, 02 Mar 2017 21:51:05 +0100 Message-ID: <874lzbwgg6.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 25934-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) > * 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 ------------=_1488487922-31547-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 2 Mar 2017 11:39:33 +0000 Received: from localhost ([127.0.0.1]:35427 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cjP4y-0007jl-15 for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:32 -0500 Received: from eggs.gnu.org ([208.118.235.92]:49617) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cjP4w-0007jW-1Z for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjP4q-0008Q0-2w for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:21 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_40 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50162) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjP4p-0008Pw-Vo for submit@debbugs.gnu.org; Thu, 02 Mar 2017 06:39:20 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjP4o-0003Ea-Ot for guix-patches@gnu.org; Thu, 02 Mar 2017 06:39:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjP4k-0008Pe-Nf for guix-patches@gnu.org; Thu, 02 Mar 2017 06:39:18 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21117) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cjP4k-0008PR-HB for guix-patches@gnu.org; Thu, 02 Mar 2017 06:39:14 -0500 Received: from localhost (141.80.148.118 [141.80.148.118]) by mx.zohomail.com with SMTPS id 1488454753068485.0873384529576; Thu, 2 Mar 2017 03:39:13 -0800 (PST) From: Ricardo Wurmus To: guix-patches@gnu.org Subject: [PATCH] gnu: icedtea-8: Do not embed build time. Date: Thu, 2 Mar 2017 12:39:09 +0100 Message-Id: <20170302113909.26536-1-rekado@elephly.net> X-Mailer: git-send-email 2.12.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit Cc: Ricardo Wurmus X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) * 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 +;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016, 2017 Roel Janssen ;;; Copyright © 2017 Carlo Zancanaro @@ -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 ------------=_1488487922-31547-1--