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 0A021158042 for ; Sat, 9 Nov 2024 08:35:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E4DDE070D; Sat, 9 Nov 2024 08:35:41 +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 5620FE070D for ; Sat, 9 Nov 2024 08:35:41 +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 55E57335D77 for ; Sat, 9 Nov 2024 08:35:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8B7B197F for ; Sat, 9 Nov 2024 08:35:38 +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: <1731141277.fb3b943a30bcae4e6d74c475134b1efea346be00.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jnr-x86asm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r2.ebuild dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r3.ebuild X-VCS-Directories: dev-java/jnr-x86asm/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: fb3b943a30bcae4e6d74c475134b1efea346be00 X-VCS-Branch: master Date: Sat, 9 Nov 2024 08:35:38 +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: 43ba95b6-01c8-476c-88be-b7d54e6423bd X-Archives-Hash: 83a1dc2307fdfe63df9cb6c9b79b7a40 commit: fb3b943a30bcae4e6d74c475134b1efea346be00 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Nov 7 08:23:56 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Nov 9 08:34:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb3b943a dev-java/jnr-x86asm: style update, update EAPI 7 -> 8 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/39233/commits/57192efd2b8eeb5cabf47cd0b9fc65ce6be4962d Signed-off-by: Miroslav Šulc gentoo.org> .../{jnr-x86asm-1.0.2-r2.ebuild => jnr-x86asm-1.0.2-r3.ebuild} | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r2.ebuild b/dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r3.ebuild similarity index 78% rename from dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r2.ebuild rename to dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r3.ebuild index 0888c3430d26..19f8951a3e12 100644 --- a/dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r2.ebuild +++ b/dev-java/jnr-x86asm/jnr-x86asm-1.0.2-r3.ebuild @@ -1,7 +1,8 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + JAVA_PKG_IUSE="doc source" MAVEN_ID="com.github.jnr:jnr-x86asm:1.0.2" @@ -9,17 +10,14 @@ inherit java-pkg-2 java-pkg-simple DESCRIPTION="A pure-java port of asmjit" HOMEPAGE="https://github.com/jnr/jnr-x86asm" -SRC_URI="https://github.com/jnr/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/jnr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P}" LICENSE="MIT" SLOT="1.0" KEYWORDS="amd64 arm64 ppc64" -IUSE="" DEPEND=">=virtual/jdk-1.8:*" RDEPEND=">=virtual/jre-1.8:*" -S="${WORKDIR}/${P}" - JAVA_SRC_DIR="src/main/java" -JAVA_ANT_ENCODING="UTF-8"