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/osgi-core-api/
Date: Thu, 03 Dec 2015 21:19:34
Message-Id: 1449177546.d718007741f4865466524b0bce10323a0112de59.monsieurp@gentoo
1 commit: d718007741f4865466524b0bce10323a0112de59
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 17:13:27 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 21:19:06 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7180077
7
8 dev-java/osgi-core-api: EAPI 5 bump.
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 .../osgi-core-api/osgi-core-api-5.0.0-r1.ebuild | 31 ++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/dev-java/osgi-core-api/osgi-core-api-5.0.0-r1.ebuild b/dev-java/osgi-core-api/osgi-core-api-5.0.0-r1.ebuild
17 new file mode 100644
18 index 0000000..30ac8b1
19 --- /dev/null
20 +++ b/dev-java/osgi-core-api/osgi-core-api-5.0.0-r1.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2015 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=5
27 +
28 +JAVA_PKG_IUSE="doc source"
29 +
30 +inherit java-pkg-2 java-pkg-simple
31 +
32 +DESCRIPTION="OSGi Service Platform Core API (Companion Code)"
33 +HOMEPAGE="http://www.osgi.org/Specifications/HomePage"
34 +SRC_URI="http://www.osgi.org/download/r5/osgi.core-${PV}.jar"
35 +
36 +LICENSE="Apache-2.0"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE=""
40 +
41 +RDEPEND="
42 + >=virtual/jre-1.6"
43 +
44 +DEPEND="
45 + >=virtual/jdk-1.6
46 + app-arch/unzip"
47 +
48 +JAVA_SRC_DIR="OSGI-OPT/src"
49 +
50 +java_prepare() {
51 + rm -r org || die
52 +}