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/cdegroot-db/
Date: Fri, 04 May 2018 20:49:20
Message-Id: 1525466939.b0e6102949c20052715e7a0f615f1309fa75bce1.monsieurp@gentoo
1 commit: b0e6102949c20052715e7a0f615f1309fa75bce1
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed May 2 10:14:07 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri May 4 20:48:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e61029
7
8 dev-java/cdegroot-db: remove old.
9
10 Closes: https://github.com/gentoo/gentoo/pull/8240
11
12 dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild | 42 -------------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild b/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild
16 deleted file mode 100644
17 index 8554e3bd7a3..00000000000
18 --- a/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild
19 +++ /dev/null
20 @@ -1,42 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=0
25 -
26 -JAVA_PKG_IUSE="doc source"
27 -
28 -inherit eutils java-pkg-2 java-ant-2
29 -
30 -DESCRIPTION="OO database written in Java"
31 -HOMEPAGE="http://www.cdegroot.com/software/db/"
32 -SRC_URI="http://www.cdegroot.com/software/db/download/com.${P/-/.}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="1"
36 -KEYWORDS="amd64 ppc64 x86"
37 -IUSE="doc source"
38 -
39 -DEPEND=">=virtual/jdk-1.4"
40 -RDEPEND=">=virtual/jre-1.4"
41 -
42 -S=${WORKDIR}/com.${P/-/.}
43 -
44 -src_unpack() {
45 - unpack ${A}
46 - cd "${S}"
47 - rm -rv src/db/test || die
48 - rm -v lib/*.jar || die
49 -
50 - cp "${FILESDIR}/build.xml" "${S}/build.xml"
51 - epatch "${FILESDIR}/${P}-gentoo.patch"
52 -}
53 -
54 -EANT_DOC_TARGET="docs"
55 -
56 -src_install() {
57 - java-pkg_dojar dist/${PN}.jar
58 -
59 - dodoc TODO VERSION CHANGES BUGS README || die
60 - use doc && java-pkg_dojavadoc docs
61 - use source && java-pkg_dosrc src/*
62 -}