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/libg/
Date: Fri, 30 Apr 2021 13:59:39
Message-Id: 1619791167.981daaafc1b4a9b249184ac223791e3a31a58401.fordfrog@gentoo
1 commit: 981daaafc1b4a9b249184ac223791e3a31a58401
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 30 13:59:27 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 13:59:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981daaaf
7
8 dev-java/libg: dropped obsolete 2.1.0-r1
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-java/libg/libg-2.1.0-r1.ebuild | 47 --------------------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/dev-java/libg/libg-2.1.0-r1.ebuild b/dev-java/libg/libg-2.1.0-r1.ebuild
17 deleted file mode 100644
18 index 8b7b14cea8d..00000000000
19 --- a/dev-java/libg/libg-2.1.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="5"
26 -
27 -JAVA_PKG_IUSE="test"
28 -
29 -inherit java-pkg-2 java-ant-2
30 -
31 -DESCRIPTION="Lots of small utilities for bndlib, a swiss army knife for OSGi"
32 -HOMEPAGE="http://www.aqute.biz/Bnd/Bnd"
33 -SRC_URI="https://github.com/bndtools/bnd/archive/${PV}.REL.tar.gz -> bndlib-${PV}.tar.gz"
34 -
35 -LICENSE="Apache-2.0"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~ppc64 x86"
38 -
39 -# Tests depend on biz.aQute.junit, which depends on biz.aQute.bndlib, which on
40 -# its own turn again depends on aQute.libg again; we can temporarily assume that
41 -# if bndlib tests pass that libg is sufficiently tested, in the future we should
42 -# look whether it is feasible to combine the packages or otherwise temporarily
43 -# build biz.aquite.bndlib and biz.aqute.junit in this package.
44 -RESTRICT="test"
45 -
46 -DEPEND=">=virtual/jdk-1.5"
47 -RDEPEND=">=virtual/jre-1.5"
48 -
49 -S="${WORKDIR}/bnd-${PV}.REL/aQute.${PN}"
50 -
51 -EANT_BUILD_TARGET="build"
52 -
53 -java_prepare() {
54 - # Move the correct build.xml into place, needed for testing.
55 - cp ../cnf/build.xml . || die "Failed to move build file into the right place."
56 -
57 - # Remove bundled jar files.
58 - find . -name '*.jar' -delete
59 -
60 - # Remove test files
61 - if ! use test ; then
62 - find src/test -name '*.java' -delete || die "Failed to remove test files."
63 - fi
64 -}
65 -
66 -src_install() {
67 - java-pkg_newjar generated/aQute.${PN}.jar
68 -}