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/ant/
Date: Wed, 20 Mar 2019 17:28:01
Message-Id: 1553102820.48a6ebb589c7912365d8b7c368d2823c1cf9bee1.fordfrog@gentoo
1 commit: 48a6ebb589c7912365d8b7c368d2823c1cf9bee1
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 20 16:59:32 2019 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 20 17:27:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48a6ebb5
7
8 dev-java/ant-1.9.2-r1: removed obsolete
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-java/ant/ant-1.9.2-r1.ebuild | 59 ----------------------------------------
14 1 file changed, 59 deletions(-)
15
16 diff --git a/dev-java/ant/ant-1.9.2-r1.ebuild b/dev-java/ant/ant-1.9.2-r1.ebuild
17 deleted file mode 100644
18 index b9f778d065f..00000000000
19 --- a/dev-java/ant/ant-1.9.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,59 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit versionator
27 -
28 -DESCRIPTION="Java-based build tool similar to 'make' that uses XML configuration files"
29 -HOMEPAGE="https://ant.apache.org/"
30 -
31 -LICENSE="Apache-2.0"
32 -SLOT="0"
33 -KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
34 -
35 -IUSE="X +antlr +bcel +bsf +commonslogging +commonsnet jai +javamail +jdepend jmf
36 - +jsch +log4j +oro +regexp +resolver testutil"
37 -
38 -DEPEND="~dev-java/ant-core-${PV}"
39 -
40 -RDEPEND="${DEPEND}
41 - ~dev-java/ant-core-${PV}
42 - ~dev-java/ant-junit-${PV}
43 - !dev-java/ant-optional
44 - !dev-java/ant-tasks
45 - ~dev-java/ant-apache-xalan2-${PV}
46 - antlr? ( ~dev-java/ant-antlr-${PV} )
47 - bcel? ( ~dev-java/ant-apache-bcel-${PV} )
48 - bsf? ( ~dev-java/ant-apache-bsf-${PV} )
49 - log4j? ( ~dev-java/ant-apache-log4j-${PV} )
50 - oro? ( ~dev-java/ant-apache-oro-${PV} )
51 - regexp? ( ~dev-java/ant-apache-regexp-${PV} )
52 - resolver? ( ~dev-java/ant-apache-resolver-${PV} )
53 - commonslogging? ( ~dev-java/ant-commons-logging-${PV} )
54 - commonsnet? ( ~dev-java/ant-commons-net-${PV} )
55 - jai? ( ~dev-java/ant-jai-${PV} )
56 - javamail? ( ~dev-java/ant-javamail-${PV} )
57 - jdepend? ( ~dev-java/ant-jdepend-${PV} )
58 - jmf? ( ~dev-java/ant-jmf-${PV} )
59 - jsch? ( ~dev-java/ant-jsch-${PV} )
60 - testutil? ( ~dev-java/ant-testutil-${PV} )
61 - X? ( ~dev-java/ant-swing-${PV} )
62 -"
63 -
64 -S="${WORKDIR}"
65 -
66 -src_compile() { :; }
67 -
68 -pkg_postinst() {
69 - if [[ -n ${REPLACING_VERSIONS} ]]; then
70 - # if we update from a version below 1.7.1
71 - if ! version_is_at_least 1.7.1 ${REPLACING_VERSIONS}; then
72 - elog "Since 1.7.1, the ant-tasks meta-ebuild has been removed and its USE"
73 - elog "flags have been moved to dev-java/ant."
74 - elog
75 - elog "You may now freely set the USE flags of this package without breaking"
76 - elog "building of Java packages, which depend on the exact ant tasks they need."
77 - elog "The USE flags default to enabled (except X, jai and jmf) for convenience."
78 - fi
79 - fi
80 -}