Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jopt-simple/
Date: Tue, 18 Jan 2022 17:14:20
Message-Id: 1642526051.6eefd39ff699c311ea3d2e5ca8540b435575a126.fordfrog@gentoo
1 commit: 6eefd39ff699c311ea3d2e5ca8540b435575a126
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Tue Jan 18 10:03:57 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 18 17:14:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eefd39f
7
8 dev-java/jopt-simple: EAPI 8, min java 1.8:*
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
12 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
13
14 dev-java/jopt-simple/jopt-simple-4.6-r1.ebuild | 23 +++++++++++++++++++++++
15 1 file changed, 23 insertions(+)
16
17 diff --git a/dev-java/jopt-simple/jopt-simple-4.6-r1.ebuild b/dev-java/jopt-simple/jopt-simple-4.6-r1.ebuild
18 new file mode 100644
19 index 000000000000..d53d799d1b99
20 --- /dev/null
21 +++ b/dev-java/jopt-simple/jopt-simple-4.6-r1.ebuild
22 @@ -0,0 +1,23 @@
23 +# Copyright 1999-2022 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=8
27 +
28 +JAVA_PKG_IUSE="doc source"
29 +
30 +inherit java-pkg-2 java-pkg-simple
31 +
32 +DESCRIPTION="A Java library for parsing command line options"
33 +HOMEPAGE="https://pholser.github.com/jopt-simple/"
34 +SRC_URI="https://github.com/pholser/${PN}/tarball/${P} -> ${P}.tar.gz"
35 +
36 +LICENSE="MIT"
37 +SLOT="4.6"
38 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
39 +
40 +RDEPEND=">=virtual/jre-1.8:*"
41 +DEPEND=">=virtual/jdk-1.8:*"
42 +
43 +JAVA_SRC_DIR="src/main/java"
44 +
45 +S="${WORKDIR}/${PN}-${PN}-8808a39"