Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/spice-jndikit/
Date: Mon, 04 Jun 2018 01:12:43
Message-Id: 1528074742.5ba602eb502aaa662c323b9316b1b28ae61954ea.bman@gentoo
1 commit: 5ba602eb502aaa662c323b9316b1b28ae61954ea
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 18:58:07 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 4 01:12:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba602eb
7
8 dev-java/spice-jndikit: drop old EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-java/spice-jndikit/Manifest | 1 -
13 dev-java/spice-jndikit/spice-jndikit-1.2.ebuild | 46 -------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-java/spice-jndikit/Manifest b/dev-java/spice-jndikit/Manifest
17 index a05633e99d3..32619405542 100644
18 --- a/dev-java/spice-jndikit/Manifest
19 +++ b/dev-java/spice-jndikit/Manifest
20 @@ -1,2 +1 @@
21 -DIST spice-jndikit-1.2-src.tar.gz 23084 BLAKE2B 66a00c3c155a006193c87ab2271def35c50cf722c29b4acbf9c2af0aaf19dbfda8be0bfe0ae44dfdecb8a5383334e542833284cd9212436cb837adca049afefe SHA512 bdb508eac32c8dac05be45553a6877e214dce4135c9ae96b95764254df4c0e57f2a7be3905301b096f140014e04e4fe6b517b7757553de26d73a513f7ff06244
22 DIST spice-jndikit-1.4.zip 55185 BLAKE2B 4d5068a3f2e12d287ecd657e2092a2e73e6637f2285dcea58b6d8c820508f21f1ceb508514813b34cf9c1a7536cbc530aba1edf0ca80603b3008e3afa240582a SHA512 798a1671cf79a9ecf7777a2b5b6caa0074dcca97cecb445c8dad9a44144cc71fed312f7a13d4b7e12f09eb23b0525b38bca62d67866db76f03ceb5a7a0501501
23
24 diff --git a/dev-java/spice-jndikit/spice-jndikit-1.2.ebuild b/dev-java/spice-jndikit/spice-jndikit-1.2.ebuild
25 deleted file mode 100644
26 index 26737e6041f..00000000000
27 --- a/dev-java/spice-jndikit/spice-jndikit-1.2.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=0
34 -
35 -JAVA_PKG_IUSE="doc source test"
36 -
37 -inherit java-pkg-2 java-ant-2
38 -
39 -DESCRIPTION="JNDI Kit is a toolkit designed to help with the construction of JNDI providers"
40 -HOMEPAGE="https://github.com/codehaus"
41 -SRC_URI="http://dist.codehaus.org/spice/distributions/${P}-src.tar.gz"
42 -LICENSE="Spice-1.1"
43 -SLOT="0"
44 -KEYWORDS="~x86"
45 -
46 -RDEPEND=">=virtual/jre-1.4"
47 -DEPEND="
48 - >=virtual/jdk-1.4
49 - test? ( dev-java/ant-junit )"
50 -
51 -src_unpack() {
52 - unpack ${A}
53 - cd "${S}"
54 - java-ant_ignore-system-classes
55 - java-ant_rewrite-classpath
56 -}
57 -
58 -src_compile() {
59 - java-pkg-2_src_compile
60 - cd target/classes
61 - rmic org.codehaus.spice.jndikit.rmi.server.RMINamingProviderImpl \
62 - || die "rmic failed"
63 -}
64 -
65 -src_test() {
66 - einfo "Tests need a network connection so they will fail without it"
67 - ANT_TASKS="ant-junit" eant test -DJunit.present=true \
68 - -Dgentoo.classpath="$(java-pkg_getjars --build-only junit)"
69 -}
70 -
71 -src_install() {
72 - java-pkg_newjar target/${P}.jar
73 - use doc && java-pkg_dojavadoc dist/docs/api
74 - use source && java-pkg_dosrc src/java/*
75 -}