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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CF815158094 for ; Thu, 28 Jul 2022 09:10:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1200EE0B19; Thu, 28 Jul 2022 09:10:28 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2609E0B19 for ; Thu, 28 Jul 2022 09:10:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A4E46340DBB for ; Thu, 28 Jul 2022 09:10:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 229EB52C for ; Thu, 28 Jul 2022 09:10:25 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1658999412.8d3939bf10cbb2cccf035c06100a6358b8ee034c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/apiguardian-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/apiguardian-api/apiguardian-api-1.1.2-r1.ebuild X-VCS-Directories: dev-java/apiguardian-api/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8d3939bf10cbb2cccf035c06100a6358b8ee034c X-VCS-Branch: master Date: Thu, 28 Jul 2022 09:10:25 +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: 7f97a6b4-3305-4b4d-8ae6-5c2b4bf8b706 X-Archives-Hash: 6255a7a2725d5b45969bcc59d1178500 commit: 8d3939bf10cbb2cccf035c06100a6358b8ee034c Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Jul 21 16:27:46 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 28 09:10:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d3939bf dev-java/apiguardian-api: java 11 for module-info Bug: https://bugs.gentoo.org/859808 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/26509 Signed-off-by: Sam James gentoo.org> .../apiguardian-api-1.1.2-r1.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-java/apiguardian-api/apiguardian-api-1.1.2-r1.ebuild b/dev-java/apiguardian-api/apiguardian-api-1.1.2-r1.ebuild new file mode 100644 index 000000000000..53885481c686 --- /dev/null +++ b/dev-java/apiguardian-api/apiguardian-api-1.1.2-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="org.apiguardian:apiguardian-api:1.1.2" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="@org.apiguardian.api.API Java annotation provider" +HOMEPAGE="https://github.com/apiguardian-team/apiguardian" +SRC_URI="https://github.com/apiguardian-team/apiguardian/archive/r${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=">=virtual/jdk-11:*" +RDEPEND=">=virtual/jre-1.8:*" + +S="${WORKDIR}/${PN%-api}-r${PV}" + +JAVA_SRC_DIR=( src/{main,module}/java )