From unknown Fri Jun 13 11:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40387] [PATCH] gnu: Set JAVA_HOME for all Java development kits. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 02 Apr 2020 08:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 40387 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 40387@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.158581504230091 (code B ref -1); Thu, 02 Apr 2020 08:11:01 +0000 Received: (at submit) by debbugs.gnu.org; 2 Apr 2020 08:10:42 +0000 Received: from localhost ([127.0.0.1]:39118 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJuvy-0007pF-AL for submit@debbugs.gnu.org; Thu, 02 Apr 2020 04:10:42 -0400 Received: from lists.gnu.org ([209.51.188.17]:56721) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJuvx-0007p5-4W for submit@debbugs.gnu.org; Thu, 02 Apr 2020 04:10:41 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35033) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJuvv-0000M1-Sb for guix-patches@gnu.org; Thu, 02 Apr 2020 04:10:41 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_40,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJuvu-0000W9-AI for guix-patches@gnu.org; Thu, 02 Apr 2020 04:10:39 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:60571) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jJuvu-0000Tj-4S for guix-patches@gnu.org; Thu, 02 Apr 2020 04:10:38 -0400 Received: from localhost.localdomain (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 5B6EE100018 for ; Thu, 2 Apr 2020 08:10:34 +0000 (UTC) From: Pierre Neidhardt Date: Thu, 2 Apr 2020 10:10:17 +0200 Message-Id: <20200402081017.28866-1-mail@ambrevar.xyz> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-GND-Spam-Score: 173 X-GND-Status: SPAM X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.178.231 X-Spam-Score: 1.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: -0.5 (/) * gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9)[native-search-paths]: Set JAVA_HOME to "jre". This fixes issues for which the Java tooling could not find Jars, e.g. tools.jar. --- gnu/packages/java.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 4d305aac49..ca6c64fc1e 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1078,6 +1078,10 @@ machine."))) (sha256 (base32 "0835lkw8vib1xhp8lxnybhlvzdh699hbi4mclxanydjk63zbpxk0")))))) + (native-search-paths + (list (search-path-specification + (variable "JAVA_HOME") + (files '("jre"))))) (home-page "http://icedtea.classpath.org") (synopsis "Java development kit") (description @@ -1620,6 +1624,10 @@ bootstrapping purposes.") ("lcms" ,lcms) ("zlib" ,zlib) ("gtk" ,gtk+-2))) + (native-search-paths + (list (search-path-specification + (variable "JAVA_HOME") + (files '("jre"))))) (home-page "http://icedtea.classpath.org") (synopsis "Java development kit") (description @@ -1923,6 +1931,10 @@ new Date();")) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) + (native-search-paths + (list (search-path-specification + (variable "JAVA_HOME") + (files '("jre"))))) (home-page "https://openjdk.java.net/projects/jdk9/") (synopsis "Java development kit") (description -- 2.25.1 From unknown Fri Jun 13 11:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40387] Acknowledgement ([PATCH] gnu: Set JAVA_HOME for all Java development kits.) Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 02 Apr 2020 08:29:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40387 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 40387@debbugs.gnu.org Cc: Roel Janssen Received: via spool by 40387-submit@debbugs.gnu.org id=B40387.15858161371435 (code B ref 40387); Thu, 02 Apr 2020 08:29:02 +0000 Received: (at 40387) by debbugs.gnu.org; 2 Apr 2020 08:28:57 +0000 Received: from localhost ([127.0.0.1]:39125 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJvDb-0000N2-Rb for submit@debbugs.gnu.org; Thu, 02 Apr 2020 04:28:57 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:37521) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJvDZ-0000MY-RQ for 40387@debbugs.gnu.org; Thu, 02 Apr 2020 04:28:54 -0400 X-Originating-IP: 78.199.129.170 Received: from mimimi (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 98236E000D; Thu, 2 Apr 2020 08:28:46 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: References: <20200402081017.28866-1-mail@ambrevar.xyz> Date: Thu, 02 Apr 2020 10:28:45 +0200 Message-ID: <87zhbu9tqa.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: I cannot test this patch unfortunately, build icedtea-8 fails for me with --88--- INFO: ZIP_DEBUGINFO_FILES=1 echo Generating precompiled header precompiled.hpp.gch Generating precompiled header precompiled.hpp.gch m [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.196 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.196 listed in wl.mailspike.net] 1.5 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: I cannot test this patch unfortunately, build icedtea-8 fails for me with --88--- INFO: ZIP_DEBUGINFO_FILES=1 echo Generating precompiled header precompiled.hpp.gch Generating precompiled header precompiled.hpp.gch m [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.196 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.196 listed in wl.mailspike.net] 1.5 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I cannot test this patch unfortunately, build icedtea-8 fails for me with =2D-8<---------------cut here---------------start------------->8--- INFO: ZIP_DEBUGINFO_FILES=3D1 echo Generating precompiled header precompiled.hpp.gch Generating precompiled header precompiled.hpp.gch mkdir -p . /gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin/g++ -DLINUX -D_GN= U_SOURCE -DAMD64 -DPRODUCT -I. -I/tmp/guix-build-icedtea-3.7.0.drv-0/icedte= a-2.6.13/openjdk/hotspot/src/share/vm/prims -I/tmp/guix-build-icedtea-3.7.0= .drv-0/icedtea-2.6.13/openjdk/hotspot/src/share/vm -I/tmp/guix-build-icedte= a-3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/src/share/vm/precompiled -I/tm= p/guix-build-icedtea-3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/src/cpu/x86= /vm -I/tmp/guix-build-icedtea-3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/sr= c/os_cpu/linux_x86/vm -I/tmp/guix-build-icedtea-3.7.0.drv-0/icedtea-2.6.13/= openjdk/hotspot/src/os/linux/vm -I/tmp/guix-build-icedtea-3.7.0.drv-0/icedt= ea-2.6.13/openjdk/hotspot/src/os/posix/vm -I../generated -DHOTSPOT_RELEASE_= VERSION=3D"\"25.161-b12\"" -DHOTSPOT_BUILD_TARGET=3D"\"product\"" -DHOTSPOT= _BUILD_USER=3D"\"nixbld\"" -DHOTSPOT_LIB_ARCH=3D\"amd64\" -DHOTSPOT_VM_DIST= RO=3D"\"OpenJDK\"" -DDERIVATIVE_ID=3D"\"IcedTea 3.7.0\"" -DDISTRIBUTION_ID= =3D"\"Custom build\"" -DTARGET_OS_FAMILY_linux -DTARGET_ARCH_x86 -DTARGET_= ARCH_MODEL_x86_64 -DTARGET_OS_ARCH_linux_x86 -DTARGET_OS_ARCH_MODEL_linux_x= 86_64 -DTARGET_COMPILER_gcc -DCOMPILER2 -DCOMPILER1 -fPIC -fno-rtti -fno-ex= ceptions -D_REENTRANT -fcheck-new -fvisibility=3Dhidden -m64 -pipe -fno-st= rict-aliasing -g -fno-omit-frame-pointer -O3 -DVM_LITTLE_ENDIAN -D_LP64= =3D1 -Wpointer-arith -Wsign-compare -Wundef -Wunused-function -Wunused-val= ue -g -O2 -fno-delete-null-pointer-checks -fno-lifetime-dse -std=3Dgnu++9= 8 -c -MMD -MP -MF ../generated/dependencies/precompiled.hpp.gch.d -fpch-dep= s -x c++-header /tmp/guix-build-icedtea-3.7.0.drv-0/icedtea-2.6.13/openjdk/= hotspot/src/share/vm/precompiled/precompiled.hpp -o precompiled.hpp.gch=20 In file included from /tmp/guix-build-icedtea-3.7.0.drv-0/icedtea-2.6.13/op= enjdk/hotspot/src/share/vm/precompiled/precompiled.hpp:315:0: /tmp/guix-build-icedtea-3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/src/shar= e/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.hpp:250:2: fat= al error: can't write PCH file: No space left on device }; ^ compilation terminated. =2D-8<---------------cut here---------------end--------------->8--- Even though I do have enough space and memory left. Unsure what's going on. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl6Foj0ACgkQm9z0l6S7 zH/aTQf/ZGpSM3zt9D1lBn0ayrkYM1NrDobzZPRyiKE+jtYeTNQtNX9Q3aBE7A+K GJGQtCpWcQZGhoLqdlfRQhTEQ4yquLkfn2lsjZFxvgyakMRkli4VsyZ3RC/oZuKj CTBeCU/66t5E3mNROqQz6IcitgEuom/xRW6W33P8TGCi2Ce8M6hwyPtKF2bfF2um otuF8GuUCurgOcGJajmGNKjtMYZWWjjteAODDDNC3Q9ZOATrlFlQ03WCdjwGQq8R 4AwvKQf0b0agFEJSDATTbncN0RiPdXEKtNOIC8dicjN0SJWY064OVGVQwQuWSkx+ xXl6oRVNW1QEhQKnI3lmDqpfm84+9Q== =Kt36 -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 13 11:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40387] Acknowledgement ([PATCH] gnu: Set JAVA_HOME for all Java development kits.) Resent-From: Roel Janssen Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 02 Apr 2020 08:58:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40387 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt , 40387@debbugs.gnu.org Received: via spool by 40387-submit@debbugs.gnu.org id=B40387.15858178287302 (code B ref 40387); Thu, 02 Apr 2020 08:58:02 +0000 Received: (at 40387) by debbugs.gnu.org; 2 Apr 2020 08:57:08 +0000 Received: from localhost ([127.0.0.1]:39148 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJveu-0001th-2i for submit@debbugs.gnu.org; Thu, 02 Apr 2020 04:57:08 -0400 Received: from eggs.gnu.org ([209.51.188.92]:60127) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJves-0001sq-CS for 40387@debbugs.gnu.org; Thu, 02 Apr 2020 04:57:06 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:52468) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jJvem-000516-Jv; Thu, 02 Apr 2020 04:57:00 -0400 Received: from 2001-1c02-0b03-a700-f532-4553-7f2a-9b68.cable.dynamic.v6.ziggo.nl ([2001:1c02:b03:a700:f532:4553:7f2a:9b68]:59144) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jJvel-0004Fc-Dy; Thu, 02 Apr 2020 04:57:00 -0400 Message-ID: <9e3d44f966ddc66c4c1cfcd8928381a351e96a06.camel@gnu.org> From: Roel Janssen Date: Thu, 02 Apr 2020 10:56:54 +0200 In-Reply-To: <87zhbu9tqa.fsf@ambrevar.xyz> References: <20200402081017.28866-1-mail@ambrevar.xyz> <87zhbu9tqa.fsf@ambrevar.xyz> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.4 (3.34.4-1.fc31) MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) 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.7 (-) On Thu, 2020-04-02 at 10:28 +0200, Pierre Neidhardt wrote: > I cannot test this patch unfortunately, build icedtea-8 fails for me > with > > > --8<---------------cut here---------------start------------->8--- > INFO: ZIP_DEBUGINFO_FILES=1 > echo Generating precompiled header precompiled.hpp.gch > Generating precompiled header precompiled.hpp.gch > mkdir -p . > /gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin/g++ -DLINUX > -D_GNU_SOURCE -DAMD64 -DPRODUCT -I. -I/tmp/guix-build-icedtea-3.7.0.drv- > 0/icedtea-2.6.13/openjdk/hotspot/src/share/vm/prims -I/tmp/guix-build-icedtea- > 3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/src/share/vm -I/tmp/guix-build- > icedtea-3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/src/share/vm/precompiled > -I/tmp/guix-build-icedtea-3.7.0.drv-0/icedtea- > 2.6.13/openjdk/hotspot/src/cpu/x86/vm -I/tmp/guix-build-icedtea-3.7.0.drv- > 0/icedtea-2.6.13/openjdk/hotspot/src/os_cpu/linux_x86/vm -I/tmp/guix-build- > icedtea-3.7.0.drv-0/icedtea-2.6.13/openjdk/hotspot/src/os/linux/vm > -I/tmp/guix-build-icedtea-3.7.0.drv-0/icedtea- > 2.6.13/openjdk/hotspot/src/os/posix/vm -I../generated > -DHOTSPOT_RELEASE_VERSION="\"25.161-b12\"" > -DHOTSPOT_BUILD_TARGET="\"product\"" -DHOTSPOT_BUILD_USER="\"nixbld\"" > -DHOTSPOT_LIB_ARCH=\"amd64\" -DHOTSPOT_VM_DISTRO="\"OpenJDK\"" > -DDERIVATIVE_ID="\"IcedTea 3.7.0\"" -DDISTRIBUTION_ID="\"Custom build\"" - > DTARGET_OS_FAMILY_linux -DTARGET_ARCH_x86 -DTARGET_ARCH_MODEL_x86_64 > -DTARGET_OS_ARCH_linux_x86 -DTARGET_OS_ARCH_MODEL_linux_x86_64 > -DTARGET_COMPILER_gcc -DCOMPILER2 -DCOMPILER1 -fPIC -fno-rtti -fno-exceptions > -D_REENTRANT -fcheck-new -fvisibility=hidden -m64 -pipe -fno-strict- > aliasing -g -fno-omit-frame-pointer -O3 -DVM_LITTLE_ENDIAN -D_LP64=1 - > Wpointer-arith -Wsign-compare -Wundef -Wunused-function -Wunused-value -g > -O2 -fno-delete-null-pointer-checks -fno-lifetime-dse -std=gnu++98 -c -MMD -MP > -MF ../generated/dependencies/precompiled.hpp.gch.d -fpch-deps -x c++-header > /tmp/guix-build-icedtea-3.7.0.drv-0/icedtea- > 2.6.13/openjdk/hotspot/src/share/vm/precompiled/precompiled.hpp -o > precompiled.hpp.gch > In file included from /tmp/guix-build-icedtea-3.7.0.drv-0/icedtea- > 2.6.13/openjdk/hotspot/src/share/vm/precompiled/precompiled.hpp:315:0: > /tmp/guix-build-icedtea-3.7.0.drv-0/icedtea- > 2.6.13/openjdk/hotspot/src/share/vm/gc_implementation/parallelScavenge/paralle > lScavengeHeap.hpp:250:2: fatal error: can't write PCH file: No space left on > device > }; > ^ > compilation terminated. > --8<---------------cut here---------------end--------------->8--- > > Even though I do have enough space and memory left. > Unsure what's going on. > Is your /tmp a separate partition, and full at the time this build fails? Kind regards, Roel Janssen From unknown Fri Jun 13 11:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40387] Acknowledgement ([PATCH] gnu: Set JAVA_HOME for all Java development kits.) Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 02 Apr 2020 09:04:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40387 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Roel Janssen , 40387@debbugs.gnu.org Received: via spool by 40387-submit@debbugs.gnu.org id=B40387.15858182348795 (code B ref 40387); Thu, 02 Apr 2020 09:04:02 +0000 Received: (at 40387) by debbugs.gnu.org; 2 Apr 2020 09:03:54 +0000 Received: from localhost ([127.0.0.1]:39160 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJvlR-0002Hk-K9 for submit@debbugs.gnu.org; Thu, 02 Apr 2020 05:03:53 -0400 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:58433) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJvlP-0002HJ-LP for 40387@debbugs.gnu.org; Thu, 02 Apr 2020 05:03:52 -0400 X-Originating-IP: 78.199.129.170 Received: from mimimi (moi44-1-78-199-129-170.fbx.proxad.net [78.199.129.170]) (Authenticated sender: mail@ambrevar.xyz) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id A423040005; Thu, 2 Apr 2020 09:03:44 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <9e3d44f966ddc66c4c1cfcd8928381a351e96a06.camel@gnu.org> References: <20200402081017.28866-1-mail@ambrevar.xyz> <87zhbu9tqa.fsf@ambrevar.xyz> <9e3d44f966ddc66c4c1cfcd8928381a351e96a06.camel@gnu.org> Date: Thu, 02 Apr 2020 11:03:42 +0200 Message-ID: <87d08qi7ip.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: /tmp is a separate partition but it's a tmpfs, it uses my virtual memory which is largely free (5GiB+). -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.194 listed in wl.mailspike.net] 1.5 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 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.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: /tmp is a separate partition but it's a tmpfs, it uses my virtual memory which is largely free (5GiB+). -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 URIBL_BLOCKED ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [URIs: ambrevar.xyz] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.194 listed in wl.mailspike.net] 1.5 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable /tmp is a separate partition but it's a tmpfs, it uses my virtual memory which is largely free (5GiB+). =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl6Fqm4ACgkQm9z0l6S7 zH9HAAf/WF1oFhFq1bBbcX7lA5BWV09xuUaACM22wCM62LjP0CI1GrGW0e7lRm8Z z10zmDhCF9lcfH244MJCtLnhYRy+sZ2Tv9TmsQGu/iUX921rkqdcGzHA8Kdwbluu gQ2dUryNDs5h5KPm/f06Cix8DmNxcRFM4aw8bPgz3LIN5slUXa7SAURiY+e1/2UT u7GvvGIJP5eALGgfKIXevzU0gyF8xmpMtGeOxx+TmKYdBui9a80FiA65jZ62pLiP N9IWuc1cMoDaTmczyC7OE6crDFuufvMW0YgWNlUujq6YpkgUDxQmiYCC/4hfy9tc bBcrqjoxiz00Bojwaj4pVIlmMPagfA== =kzjA -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 13 11:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40387] [PATCH] gnu: Set JAVA_HOME for all Java development kits. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 18 Dec 2020 11:18:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40387 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Pierre Neidhardt Cc: 40387@debbugs.gnu.org Received: via spool by 40387-submit@debbugs.gnu.org id=B40387.160829026431879 (code B ref 40387); Fri, 18 Dec 2020 11:18:02 +0000 Received: (at 40387) by debbugs.gnu.org; 18 Dec 2020 11:17:44 +0000 Received: from localhost ([127.0.0.1]:37844 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kqDlY-0008I7-Ii for submit@debbugs.gnu.org; Fri, 18 Dec 2020 06:17:44 -0500 Received: from mira.cbaines.net ([212.71.252.8]:54568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kqDlW-0008Hy-Fc for 40387@debbugs.gnu.org; Fri, 18 Dec 2020 06:17:43 -0500 Received: from localhost (188.30.130.172.threembb.co.uk [188.30.130.172]) by mira.cbaines.net (Postfix) with ESMTPSA id 519F527BC05; Fri, 18 Dec 2020 11:17:41 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id ab8f6eb5; Fri, 18 Dec 2020 11:17:39 +0000 (UTC) References: <20200402081017.28866-1-mail@ambrevar.xyz> User-agent: mu4e 1.4.13; emacs 27.1 From: Christopher Baines In-reply-to: <20200402081017.28866-1-mail@ambrevar.xyz> Date: Fri, 18 Dec 2020 11:17:35 +0000 Message-ID: <874kkj2wj4.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 2.0 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Pierre Neidhardt writes: > * gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9)[native-search-paths]: > Set JAVA_HOME to "jre". > This fixes issues for which the Java tooling could not find Jars, > e.g. tools.jar. Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 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 (+) --=-=-= Content-Type: text/plain Pierre Neidhardt writes: > * gnu/packages/java.scm (icedtea-6, icedtea-7, openjdk9)[native-search-paths]: > Set JAVA_HOME to "jre". > This fixes issues for which the Java tooling could not find Jars, > e.g. tools.jar. Which tools have you observed not to work? I tried running javac and I got the help output at least. Thanks, Chris --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKkBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAl/cj9BfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh aW5lcy5uZXQACgkQXiijOwuE9XfPOg/4i9dYiAQ9chXoZzYMxFhw88+jTwULEg8N 2ekLQvrQd9+QNPr/jlBSRWqiAD9cZ57R0ak0VTsG+LQEr8rgAMXkQuUItcXk7TDJ Pn4j7fkmWfTma/EtYb4Px56UVygC5LwYEAYdr9DoVCsBJM5zfyZtdJK8fpBSrLKr hWjkmeq0u+Q8MQJ1GhwLGngIH0o4Pzt/00i+wFQ+bQ7YT0V/AYZ2lq5EAxC9lBce yX9G+S9GvxZEHMNVN/Wq1Ks5PM3kFlrUsb2yzwFByrzNv1EgirEPVXTBUYfE1As8 0oTWovv6u3BNDr7xLF1HxS/S4p82y2/JVJEdjSgaZesBBsaHVzXfjeTRJwh2c/fv N6sO4qlhPOo4NSR1Bb2qb/a/VyuGF32d/LkGNdt7iCQ1W0Mw9r5NQmBBXgwP42R5 UiHq2c/NRlEOaPL0sQC0s0kytw4HOkpjfdW+TBq0hsiue92E2cDaBqWnMn1NGGF2 Wrt0fxeQAOji/Exq9CjiPyv32Cy83yIyMAU5L3jkLXT70z2AhgV34952bIX03rew RBAlcbTeEy2bOBCLgs8c7nDF2cH2efuRSr7LqazLvllPZ3NsCDU8XBP9oOmF+RVo Y2tHYq2+J+/5atDbn8S/wafA5EjVjCEI2BVe/PMZiUkIqPG9JE2jpYmK3zkUA/WO gPAO2M7BSA== =oVJm -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 13 11:31:32 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40387] [PATCH] gnu: Set JAVA_HOME for all Java development kits. Resent-From: Pierre Neidhardt Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 18 Dec 2020 12:32:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40387 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Christopher Baines Cc: 40387@debbugs.gnu.org Received: via spool by 40387-submit@debbugs.gnu.org id=B40387.160829469312266 (code B ref 40387); Fri, 18 Dec 2020 12:32:01 +0000 Received: (at 40387) by debbugs.gnu.org; 18 Dec 2020 12:31:33 +0000 Received: from localhost ([127.0.0.1]:37996 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kqEuy-0003BX-Ob for submit@debbugs.gnu.org; Fri, 18 Dec 2020 07:31:33 -0500 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:45109) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kqEuw-00033q-DK for 40387@debbugs.gnu.org; Fri, 18 Dec 2020 07:31:31 -0500 X-Originating-IP: 91.165.152.159 Received: from mimimi (91-165-152-159.subs.proxad.net [91.165.152.159]) (Authenticated sender: mail@ambrevar.xyz) by relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 5DE704000F; Fri, 18 Dec 2020 12:31:22 +0000 (UTC) From: Pierre Neidhardt In-Reply-To: <874kkj2wj4.fsf@cbaines.net> References: <20200402081017.28866-1-mail@ambrevar.xyz> <874kkj2wj4.fsf@cbaines.net> Date: Fri, 18 Dec 2020 13:31:21 +0100 Message-ID: <87h7ojgusm.fsf@ambrevar.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.4 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Sorry, I forgot, I've moved on since then. Maybe it was for some Clojure thing. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.194 listed in wl.mailspike.net] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.1 FROM_SUSPICIOUS_NTLD From abused NTLD 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.4 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Sorry, I forgot, I've moved on since then. Maybe it was for some Clojure thing. -- Pierre Neidhardt https://ambrevar.xyz/ Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [217.70.183.194 listed in list.dnswl.org] 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [217.70.183.194 listed in wl.mailspike.net] 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: ambrevar.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 0.1 FROM_SUSPICIOUS_NTLD From abused NTLD 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Sorry, I forgot, I've moved on since then. Maybe it was for some Clojure thing. =2D-=20 Pierre Neidhardt https://ambrevar.xyz/ --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFGBAEBCAAwFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAl/coRkSHG1haWxAYW1i cmV2YXIueHl6AAoJEJvc9Jeku8x/92IH/3Q+L23AeOGyIEK4nsgh+LZyrXTbA5sN xx6NtT5iFHmrWwvAHONQovPR3mseh/0rr0HYBMauHAsD6pTJKO+u58UhKCQBdxVL wdrUQyLL5w2s9aXbwgV0yLQm9CnOpfG7/ak0GfG+WDlPaOtNyH98bFnQUSMk7HX3 Zoa/GcZSyunE6wvhjOvO0JpO7X8Lmn3rZlre5NOkZCXoVXt0rnDEKZV1Yruydrti 02T87hrLvVp40g3DfxhKAYWX5oPQ1GPXKTG0wToN7l01miEcWTs1NtfMCtZD93+2 cUZsmbIkRrAkNNo//9sMbLVMmckc0g4CQnM74b1hfPGh0MYiss7hd3Q= =Ghi1 -----END PGP SIGNATURE----- --=-=-=--