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/animal-sniffer-annotations/
Date: Tue, 21 Dec 2021 08:04:17
Message-Id: 1640073503.42a42ef750bf0c8a859d25cf856e770f22b189a1.fordfrog@gentoo
1 commit: 42a42ef750bf0c8a859d25cf856e770f22b189a1
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 21 07:58:23 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 21 07:58:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42a42ef7
7
8 dev-java/animal-sniffer-annotations: eapi8, min java 1.8
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 .../animal-sniffer-annotations-1.15-r1.ebuild | 22 ++++++++++++++++++++++
14 1 file changed, 22 insertions(+)
15
16 diff --git a/dev-java/animal-sniffer-annotations/animal-sniffer-annotations-1.15-r1.ebuild b/dev-java/animal-sniffer-annotations/animal-sniffer-annotations-1.15-r1.ebuild
17 new file mode 100644
18 index 000000000000..deb9566f57c0
19 --- /dev/null
20 +++ b/dev-java/animal-sniffer-annotations/animal-sniffer-annotations-1.15-r1.ebuild
21 @@ -0,0 +1,22 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +MY_PN="${PN%-annotations}"
28 +JAVA_PKG_IUSE="doc source"
29 +
30 +inherit java-pkg-2 java-pkg-simple
31 +
32 +DESCRIPTION="Java annotations for marking methods that Animal Sniffer should ignore"
33 +HOMEPAGE="http://www.mojohaus.org/animal-sniffer/animal-sniffer-annotations/"
34 +SRC_URI="https://github.com/mojohaus/${MY_PN}/archive/${MY_PN}-parent-${PV}.tar.gz"
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
38 +
39 +DEPEND=">=virtual/jdk-1.8:*"
40 +RDEPEND=">=virtual/jre-1.8:*"
41 +
42 +S="${WORKDIR}/${MY_PN}-${MY_PN}-parent-${PV}/${PN}"
43 +JAVA_SRC_DIR="src/main/java"