From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 937B1158086 for ; Fri, 8 Oct 2021 19:56:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDA50E081B; Fri, 8 Oct 2021 19:56:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B4A92E081B for ; Fri, 8 Oct 2021 19:56:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9ABE6342F28 for ; Fri, 8 Oct 2021 19:56:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 392A6114 for ; Fri, 8 Oct 2021 19:56:43 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1633722983.937163a02fd0674f641c8de36539c896f19bb143.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/openjdk-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/openjdk-bin/openjdk-bin-17_p35.ebuild X-VCS-Directories: dev-java/openjdk-bin/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 937163a02fd0674f641c8de36539c896f19bb143 X-VCS-Branch: master Date: Fri, 8 Oct 2021 19:56:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3be154c1-5c82-4f87-9ef7-44c011bcbe03 X-Archives-Hash: b81334e7411f58d4739b0419936c26f4 commit: 937163a02fd0674f641c8de36539c896f19bb143 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Oct 8 19:55:01 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Oct 8 19:56:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937163a0 dev-java/openjdk-bin: improve postinst wording on openjdk17 Signed-off-by: Georgy Yakovlev gentoo.org> dev-java/openjdk-bin/openjdk-bin-17_p35.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-java/openjdk-bin/openjdk-bin-17_p35.ebuild b/dev-java/openjdk-bin/openjdk-bin-17_p35.ebuild index e21153320a4..e7f74791530 100644 --- a/dev-java/openjdk-bin/openjdk-bin-17_p35.ebuild +++ b/dev-java/openjdk-bin/openjdk-bin-17_p35.ebuild @@ -125,12 +125,12 @@ pkg_postinst() { if use gentoo-vm ; then ewarn "WARNING! You have enabled the gentoo-vm USE flag, making this JDK" ewarn "recognised by the system. This will almost certainly break" - ewarn "many java ebuilds as they are not ready for openjdk-11" + ewarn "many java ebuilds as they are not ready for openjdk-${SLOT}" else ewarn "The experimental gentoo-vm USE flag has not been enabled so this JDK" ewarn "will not be recognised by the system. For example, simply calling" ewarn "\"java\" will launch a different JVM. This is necessary until Gentoo" - ewarn "fully supports Java 11. This JDK must therefore be invoked using its" + ewarn "fully supports Java ${SLOT}. This JDK must therefore be invoked using its" ewarn "absolute location under ${EPREFIX}/opt/${P}." fi }