From unknown Mon Jun 23 07:47:47 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#25934 <25934@debbugs.gnu.org> To: bug#25934 <25934@debbugs.gnu.org> Subject: Status: [PATCH] gnu: icedtea-8: Do not embed build time. Reply-To: bug#25934 <25934@debbugs.gnu.org> Date: Mon, 23 Jun 2025 14:47:47 +0000 retitle 25934 [PATCH] gnu: icedtea-8: Do not embed build time. reassign 25934 guix-patches submitter 25934 Ricardo Wurmus severity 25934 normal tag 25934 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 02 06:39:33 2017 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 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 02 15:51:12 2017 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 From unknown Mon Jun 23 07:47:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 31 Mar 2017 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator