Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/gnu-jaf/
Date: Fri, 31 Aug 2018 22:13:01
Message-Id: 1535753545.ee1c330e2f6f203ab049f3fe5c4a951f98da1910.monsieurp@gentoo
1 commit: ee1c330e2f6f203ab049f3fe5c4a951f98da1910
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 18:35:42 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 31 22:12:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee1c330e
7
8 dev-java/gnu-jaf: version bump.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-java/gnu-jaf/Manifest | 1 +
13 dev-java/gnu-jaf/gnu-jaf-1.1.2.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-java/gnu-jaf/Manifest b/dev-java/gnu-jaf/Manifest
17 index b807a1f5418..06deb19ee89 100644
18 --- a/dev-java/gnu-jaf/Manifest
19 +++ b/dev-java/gnu-jaf/Manifest
20 @@ -1 +1,2 @@
21 DIST activation-1.1.1.tar.gz 157018 BLAKE2B e9135b4c0996601c7963a46363e8ede3ba81e83e532637a92d83c89586eb52bd11be84ee37f5e8f31e372564f7c14aac4123726ba20712f5cef89a1e4bcd01f3 SHA512 d323644df13a4572bf1c10e7175c1c4cfa3078483886bba7b308989c215a23e12939b054124dbaf0437a4c5fdcb551b4e2189c09afc078218963389e4b3c3b7d
22 +DIST activation-1.1.2.tar.gz 290644 BLAKE2B 15ec89a5c757bb134b9ec71e384a80dea5394b9b6463ca1fe44e2e622993fa8809231379b262b0a54595c32451a49ef508bea45ce82120138efe07d81939a817 SHA512 26534f7bb47daddf97b850ab74fc8ef2c5bd62d12cfb96e28e235071af7dcfc7761fa15f2d8f3a2d194f035665cef127812b7476af6cc81f6d6374f1fa725584
23
24 diff --git a/dev-java/gnu-jaf/gnu-jaf-1.1.2.ebuild b/dev-java/gnu-jaf/gnu-jaf-1.1.2.ebuild
25 new file mode 100644
26 index 00000000000..a51b85e9f95
27 --- /dev/null
28 +++ b/dev-java/gnu-jaf/gnu-jaf-1.1.2.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +JAVA_PKG_IUSE="doc source"
36 +inherit java-pkg-2 java-ant-2
37 +
38 +DESCRIPTION="GNU implementation of the JavaBeans Activation Framework"
39 +HOMEPAGE="https://www.gnu.org/software/classpathx/jaf/jaf.html"
40 +SRC_URI="mirror://gnu/classpathx/activation-${PV}.tar.gz"
41 +
42 +LICENSE="GPL-2-with-linking-exception"
43 +SLOT="1"
44 +KEYWORDS="~amd64 ~ppc64 ~x86"
45 +
46 +DEPEND=">=virtual/jdk-1.8"
47 +RDEPEND=">=virtual/jre-1.8"
48 +
49 +S="${WORKDIR}/activation-${PV}"
50 +
51 +EANT_BUILD_TARGET="activation.jar"
52 +
53 +src_install() {
54 + java-pkg_dojar activation.jar
55 + einstalldocs
56 + use doc && java-pkg_dojavadoc docs
57 + use source && java-pkg_dosrc source/*
58 +}