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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AAC21158041 for ; Wed, 3 Apr 2024 18:44:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70FA2E2ADB; Wed, 3 Apr 2024 18:44:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 131D1E2ADA for ; Wed, 3 Apr 2024 18:44:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02ED634309B for ; Wed, 3 Apr 2024 18:44:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5231D1606 for ; Wed, 3 Apr 2024 18:44:42 +0000 (UTC) From: "Robert Greener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robert Greener" Message-ID: <1712169828.7b290faa3669cd7a05c2e43fb5b06e3ef7477269.me@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-java/corretto-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-java/corretto-bin/corretto-bin-8.402.08.1-r1.ebuild X-VCS-Directories: dev-java/corretto-bin/ X-VCS-Committer: me X-VCS-Committer-Name: Robert Greener X-VCS-Revision: 7b290faa3669cd7a05c2e43fb5b06e3ef7477269 X-VCS-Branch: dev Date: Wed, 3 Apr 2024 18:44:42 +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: 5ff9eb93-c2e5-460e-9397-ca855912e8b1 X-Archives-Hash: f5491faf2e4b4fdd2fb2c1ebd6988752 commit: 7b290faa3669cd7a05c2e43fb5b06e3ef7477269 Author: Robert Greener r0bert dev> AuthorDate: Wed Apr 3 18:42:41 2024 +0000 Commit: Robert Greener r0bert dev> CommitDate: Wed Apr 3 18:43:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b290faa dev-java/corretto-bin: New revision 8.402.08.1-r1 Remove faulty use flags Bug: https://bugs.gentoo.org/928434 Signed-off-by: Robert Greener r0bert.dev> .../corretto-bin/corretto-bin-8.402.08.1-r1.ebuild | 78 ++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/dev-java/corretto-bin/corretto-bin-8.402.08.1-r1.ebuild b/dev-java/corretto-bin/corretto-bin-8.402.08.1-r1.ebuild new file mode 100644 index 0000000000..ff357b12e6 --- /dev/null +++ b/dev-java/corretto-bin/corretto-bin-8.402.08.1-r1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-vm-2 toolchain-funcs + +MY_PV=${PV/_p/+} +SLOT=$(ver_cut 1) + +SRC_URI=" + https://corretto.aws/downloads/resources/${PV}/amazon-corretto-${PV}-linux-x64.tar.gz +" + +DESCRIPTION="Prebuilt Java JDK binaries provided by Amazon Web Services" +HOMEPAGE="https://aws.amazon.com/corretto" +LICENSE="GPL-2-with-classpath-exception" +KEYWORDS="~amd64" +IUSE="cups headless-awt selinux source" + +RDEPEND=" + >=sys-apps/baselayout-java-0.1.0-r1 + kernel_linux? ( + media-libs/fontconfig:1.0 + media-libs/freetype:2 + media-libs/harfbuzz + elibc_glibc? ( >=sys-libs/glibc-2.2.5:* ) + elibc_musl? ( sys-libs/musl ) + sys-libs/zlib + cups? ( net-print/cups ) + selinux? ( sec-policy/selinux-java ) + !headless-awt? ( + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXi + x11-libs/libXrender + x11-libs/libXtst + ) + )" + +RESTRICT="preserve-libs splitdebug" +QA_PREBUILT="*" + +S="${WORKDIR}/amazon-corretto-${MY_PV}-linux-x64" + +pkg_pretend() { + if [[ "$(tc-is-softfloat)" != "no" ]]; then + die "These binaries require a hardfloat system." + fi +} + +src_install() { + local dest="/opt/${P}" + local ddest="${ED}/${dest#/}" + + if use headless-awt ; then + rm -v lib/amd64/libjawt.so || die + fi + + if ! use source ; then + rm -v src.zip || die + fi + + dodir "${dest}" + cp -pPR * "${ddest}" || die + + # provide stable symlink + dosym "${P}" "/opt/${PN}-${SLOT}" + + java-vm_install-env "${FILESDIR}"/${PN}-8.env.sh + java-vm_set-pax-markings "${ddest}" + java-vm_revdep-mask + java-vm_sandbox-predict /dev/random /proc/self/coredump_filter +} + +pkg_postinst() { + java-vm-2_pkg_postinst +} \ No newline at end of file