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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D06513835B for ; Thu, 24 Jun 2021 17:33:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 860CBE08E8; Thu, 24 Jun 2021 17:33:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C872E08E5 for ; Thu, 24 Jun 2021 17:33:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5805B33BE39 for ; Thu, 24 Jun 2021 17:33:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8126797 for ; Thu, 24 Jun 2021 17:33:02 +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: <1624555975.d36524fec1d6dd7320b9db2d98e3a05895eadff7.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jakarta-activation-api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild X-VCS-Directories: dev-java/jakarta-activation-api/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: d36524fec1d6dd7320b9db2d98e3a05895eadff7 X-VCS-Branch: master Date: Thu, 24 Jun 2021 17:33:02 +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: 6b4d5fa7-78c6-4c13-a506-f8b1877748ca X-Archives-Hash: c1a6c1418179ddf3e1539de643c6580c commit: d36524fec1d6dd7320b9db2d98e3a05895eadff7 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Jun 19 11:37:54 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Thu Jun 24 17:32:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36524fe dev-java/jakarta-activation-api: allow java 1.8:* Bug: https://bugs.gentoo.org/797289 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/21326/commits/8d05bbc33254abd623a9a8fb974b7c680c839dc8 Signed-off-by: Miroslav Šulc gentoo.org> .../jakarta-activation-api-2.0.1-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild b/dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild new file mode 100644 index 00000000000..2029f27d62b --- /dev/null +++ b/dev-java/jakarta-activation-api/jakarta-activation-api-2.0.1-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 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/jaf/archive/refs/tags/2.0.1.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jakarta-activation-2.0.1.ebuild + +EAPI=7 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="jakarta.activation:jakarta.activation-api:2.0.1" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="Jakarta Activation API jar" +HOMEPAGE="https://eclipse-ee4j.github.io/jaf/" +SRC_URI="https://github.com/eclipse-ee4j/jaf/archive/refs/tags/${PV}.tar.gz -> jakarta-activation-${PV}.tar.gz" + +LICENSE="EPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" + +DOCS=( ../{CONTRIBUTING,LICENSE,NOTICE,README}.md ) + +S="${WORKDIR}/jaf-${PV}/activation" + +JAVA_SRC_DIR="src/main/java" +JAVA_RESOURCE_DIRS="src/main/resources" + +src_install() { + default + java-pkg-simple_src_install +}