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 248DD158094 for ; Wed, 27 Jul 2022 08:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6257AE110B; Wed, 27 Jul 2022 08:54:33 +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 3F4D1E110A for ; Wed, 27 Jul 2022 08:54:33 +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 2A600340DAB for ; Wed, 27 Jul 2022 08:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 900174FB for ; Wed, 27 Jul 2022 08:54:30 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1658912064.a49039b788cb9a538ff4f8c88446b801d50fc03b.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/angus-activation/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/angus-activation/angus-activation-1.0.0-r1.ebuild X-VCS-Directories: dev-java/angus-activation/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: a49039b788cb9a538ff4f8c88446b801d50fc03b X-VCS-Branch: master Date: Wed, 27 Jul 2022 08:54:30 +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: bc2403da-741e-4a25-b8bb-c442f201eec8 X-Archives-Hash: c8de18844b1e85a4263c521542c3499d commit: a49039b788cb9a538ff4f8c88446b801d50fc03b Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sun Jul 17 14:43:15 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jul 27 08:54:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49039b7 dev-java/angus-activation: java 11 for module-info Bug: https://bugs.gentoo.org/858560 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> .../angus-activation-1.0.0-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-java/angus-activation/angus-activation-1.0.0-r1.ebuild b/dev-java/angus-activation/angus-activation-1.0.0-r1.ebuild new file mode 100644 index 000000000000..9349e1ca9b70 --- /dev/null +++ b/dev-java/angus-activation/angus-activation-1.0.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Skeleton command: +# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/eclipse-ee4j/angus-activation/archive/refs/tags/1.0.0.tar.gz --slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild angus-activation-1.0.0-r1.ebuild + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="org.eclipse.angus:angus-activation:1.0.0" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Provides the implementation of the Jakarta Activation Specification" +HOMEPAGE="https://github.com/eclipse-ee4j/angus-activation" +SRC_URI="https://github.com/eclipse-ee4j/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="EPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=" + dev-java/jakarta-activation-api:2 + >=virtual/jdk-11:*" + +RDEPEND=">=virtual/jre-1.8:*" + +DOCS=( ../{CONTRIBUTING,NOTICE,README}.md ) + +S="${WORKDIR}/${P}/activation-registry" + +JAVA_CLASSPATH_EXTRA="jakarta-activation-api-2" +JAVA_SRC_DIR="src/main/java" +JAVA_RESOURCE_DIRS="src/main/resources"