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 D58191581F3 for ; Mon, 25 Nov 2024 08:08:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30E88E08F3; Mon, 25 Nov 2024 08:08:25 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D828AE08CA for ; Mon, 25 Nov 2024 08:08:24 +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 C8F7034131D for ; Mon, 25 Nov 2024 08:08:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF6A811DF for ; Mon, 25 Nov 2024 08:08:21 +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: <1732522087.8bb121db2c1ea5f04034d98d260f1b54f3034cd9.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-0.5.1-r1.ebuild app-portage/java-ebuilder/java-ebuilder-0.5.1-r2.ebuild X-VCS-Directories: app-portage/java-ebuilder/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 8bb121db2c1ea5f04034d98d260f1b54f3034cd9 X-VCS-Branch: master Date: Mon, 25 Nov 2024 08:08:21 +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: 541e5612-333a-47ad-ad95-64065e0d4553 X-Archives-Hash: dc80be415a1807b5cb9815c5c2ff49a9 commit: 8bb121db2c1ea5f04034d98d260f1b54f3034cd9 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Nov 8 09:01:48 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Mon Nov 25 08:08:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb121db app-portage/java-ebuilder: 0.5.1-r2 style update, update EAPI 7 -> 8 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/39233/commits/2e046dbf3ae986c71bd849613d368105e6f012bf Signed-off-by: Miroslav Šulc gentoo.org> ....5.1-r1.ebuild => java-ebuilder-0.5.1-r2.ebuild} | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/app-portage/java-ebuilder/java-ebuilder-0.5.1-r1.ebuild b/app-portage/java-ebuilder/java-ebuilder-0.5.1-r2.ebuild similarity index 89% rename from app-portage/java-ebuilder/java-ebuilder-0.5.1-r1.ebuild rename to app-portage/java-ebuilder/java-ebuilder-0.5.1-r2.ebuild index c62803f47eab..35a8ab160d0c 100644 --- a/app-portage/java-ebuilder/java-ebuilder-0.5.1-r1.ebuild +++ b/app-portage/java-ebuilder/java-ebuilder-0.5.1-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 2016-2023 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 }