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/jaxen/
Date: Sun, 18 Apr 2021 14:37:50
Message-Id: 1618756653.32cb01b62afda801850f94351b0e98c85835cc8b.fordfrog@gentoo
1 commit: 32cb01b62afda801850f94351b0e98c85835cc8b
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Sat Apr 17 00:34:33 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 14:37:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32cb01b6
7
8 dev-java/jaxen: remove obsolete version
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
12 Closes: https://github.com/gentoo/gentoo/pull/20412/commits/e170e46fab3c453f69a5a777ada66793c0ee08ee
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 dev-java/jaxen/jaxen-1.2.0.ebuild | 63 ---------------------------------------
16 1 file changed, 63 deletions(-)
17
18 diff --git a/dev-java/jaxen/jaxen-1.2.0.ebuild b/dev-java/jaxen/jaxen-1.2.0.ebuild
19 deleted file mode 100644
20 index a3bec68c55b..00000000000
21 --- a/dev-java/jaxen/jaxen-1.2.0.ebuild
22 +++ /dev/null
23 @@ -1,63 +0,0 @@
24 -# Copyright 1999-2021 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -# Skeleton command:
28 -# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/jaxen-xpath/jaxen/archive/refs/tags/v1.2.0.tar.gz --slot 1.2 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild jaxen-1.2.0.ebuild
29 -
30 -EAPI=7
31 -
32 -JAVA_PKG_IUSE="doc source test"
33 -MAVEN_ID="jaxen:jaxen:1.2.0"
34 -JAVA_TESTING_FRAMEWORKS="junit"
35 -
36 -inherit java-pkg-2 java-pkg-simple
37 -
38 -DESCRIPTION="Jaxen is a universal XPath engine for Java."
39 -HOMEPAGE="http://www.cafeconleche.org/jaxen/"
40 -SRC_URI="https://github.com/${PN}-xpath/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="1.2"
44 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
45 -
46 -# It seems that most tests depend on dom4j, jdom and xom which all depend on jaxen
47 -RESTRICT="test"
48 -
49 -# Compile dependencies
50 -# POM: pom.xml
51 -# xerces:xercesImpl:2.6.2 -> >=dev-java/xerces-2.12.0:2
52 -# xml-apis:xml-apis:1.3.02 -> >=dev-java/xml-commons-external-1.4.01:1.4
53 -# POM: pom.xml
54 -# test? junit:junit:3.8.2 -> >=dev-java/junit-3.8.2:0
55 -
56 -DEPEND="
57 - >=virtual/jdk-1.8:*
58 - ${CDEPEND}
59 - >=dev-java/xerces-2.12.0:2
60 -"
61 -
62 -RDEPEND="
63 - >=virtual/jre-1.8:*
64 - ${CDEPEND}
65 -"
66 -
67 -S="${WORKDIR}"
68 -
69 -DOCS=( "${P}"/{LICENSE.txt,README.md} )
70 -
71 -JAVA_CLASSPATH_EXTRA="xerces-2"
72 -JAVA_SRC_DIR="${P}/src/java/main"
73 -
74 -src_prepare() {
75 - default
76 -
77 - # solve cyclic deps by removing these dirs
78 - # dom4j, jdom and xom depend on jaxen
79 - # https://bugs.gentoo.org/739894#c9
80 - rm -rv "${JAVA_SRC_DIR}"/org/jaxen/{dom4j,jdom,xom} || die
81 -}
82 -
83 -src_install() {
84 - default
85 - java-pkg-simple_src_install
86 -}