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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD4C01581F3 for ; Mon, 25 Nov 2024 08:07:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23255E08CA; Mon, 25 Nov 2024 08:07:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 052DDE08CA for ; Mon, 25 Nov 2024 08:07:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4807C340DD9 for ; Mon, 25 Nov 2024 08:07:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD3C911DF for ; Mon, 25 Nov 2024 08:07:40 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1732522015.e27d9405c80f4b0265be93be46cfd2b5c6b15ac6.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/java-ebuilder/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/java-ebuilder/java-ebuilder-9999.ebuild X-VCS-Directories: app-portage/java-ebuilder/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: e27d9405c80f4b0265be93be46cfd2b5c6b15ac6 X-VCS-Branch: master Date: Mon, 25 Nov 2024 08:07:40 +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: 3439865c-31d4-455e-b368-509819c23655 X-Archives-Hash: 5307b66cabcd08cfcaf0ede419ba7b83 commit: e27d9405c80f4b0265be93be46cfd2b5c6b15ac6 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Nov 8 08:57:32 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Mon Nov 25 08:06:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e27d9405 app-portage/java-ebuilder: 9999 style update, update EAPI 7 -> 8 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/39233/commits/e98aedbde1de6c287cc69a9df067284ddf5eff5b Signed-off-by: Miroslav Šulc gentoo.org> app-portage/java-ebuilder/java-ebuilder-9999.ebuild | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/app-portage/java-ebuilder/java-ebuilder-9999.ebuild b/app-portage/java-ebuilder/java-ebuilder-9999.ebuild index 664ccaef394d..46a67f637268 100644 --- a/app-portage/java-ebuilder/java-ebuilder-9999.ebuild +++ b/app-portage/java-ebuilder/java-ebuilder-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 2016-2021 Gentoo Authors +# Copyright 2016-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 if [[ ${PV} == 9999 ]]; then ECLASS="git-r3" @@ -15,25 +15,24 @@ inherit java-pkg-2 java-pkg-simple prefix ${ECLASS} DESCRIPTION="Java team tool for semi-automatic creation of ebuilds from pom.xml" HOMEPAGE="https://github.com/gentoo/java-ebuilder" +S="${WORKDIR}/${P}" LICENSE="GPL-2" SLOT="0" DEPEND=">=virtual/jdk-1.8:*" -RDEPEND=">=virtual/jre-1.8:* +RDEPEND=" + >=virtual/jre-1.8:* sys-process/parallel - >=dev-java/maven-bin-3" - -S="${WORKDIR}/${P}" - -JAVA_SRC_DIR="src/main/java" -JAVA_RESOURCE_DIRS="src/main/resources" + >=dev-java/maven-bin-3 +" -JAVA_LAUNCHER_FILENAME=${PN} JAVA_MAIN_CLASS="org.gentoo.java.ebuilder.Main" +JAVA_RESOURCE_DIRS="src/main/resources" +JAVA_SRC_DIR="src/main/java" src_prepare() { - default + java-pkg-2_src_prepare hprefixify scripts/{bin/*,resources/Makefiles/*,movl} java-ebuilder.conf }