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 9E31A158090 for ; Thu, 5 May 2022 08:54:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C449BE0636; Thu, 5 May 2022 08:54:26 +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 9442BE0636 for ; Thu, 5 May 2022 08:54:25 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57D63341849 for ; Thu, 5 May 2022 08:54:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77EBE3BF for ; Thu, 5 May 2022 08:54:22 +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: <1651740855.1e76dc4cdbe3398fa5abb282e9e838c733a1d723.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jopt-simple/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jopt-simple/jopt-simple-5.0-r1.ebuild X-VCS-Directories: dev-java/jopt-simple/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 1e76dc4cdbe3398fa5abb282e9e838c733a1d723 X-VCS-Branch: master Date: Thu, 5 May 2022 08:54:22 +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: 95d0fb96-27dc-4e73-874c-f9c40a620512 X-Archives-Hash: 3d164696ca302747041a753a6376e0af commit: 1e76dc4cdbe3398fa5abb282e9e838c733a1d723 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Mon May 2 10:38:11 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu May 5 08:54:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e76dc4c dev-java/jopt-simple: add JAVA_RESOURCE_DIRS Absence of resources causing test failures in jmh-core-1.35 update EAPI 6 -> 8 update SRC_URI update HOMEPAGE Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> dev-java/jopt-simple/jopt-simple-5.0-r1.ebuild | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-java/jopt-simple/jopt-simple-5.0-r1.ebuild b/dev-java/jopt-simple/jopt-simple-5.0-r1.ebuild new file mode 100644 index 000000000000..7f09eeaea934 --- /dev/null +++ b/dev-java/jopt-simple/jopt-simple-5.0-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="A Java library for parsing command line options" +HOMEPAGE="https://jopt-simple.github.io/jopt-simple/" +SRC_URI="https://github.com/jopt-simple/jopt-simple/archive/jopt-simple-${PV}.tar.gz" + +LICENSE="MIT" +SLOT="0" + +KEYWORDS="~amd64 ~ppc64 ~x86" + +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" + +S="${WORKDIR}/${PN}-${PN}-01719a6" + +JAVA_SRC_DIR="src/main/java" +JAVA_RESOURCE_DIRS="src/main/resources" + +src_install() { + einstalldocs + java-pkg-simple_src_install +}