diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2021-04-13 11:01:41 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-04-14 16:41:43 +0200 |
commit | 1d803b3f2b662d31ac3ab47abafc6aea09fdf80b (patch) | |
tree | 2da123bff0b89daf72667dd8c3a2e45c19c3a8f1 /dev-java/jaxen | |
parent | www-apps/grafana-bin: bump to v7.5.4 (diff) | |
download | gentoo-1d803b3f2b662d31ac3ab47abafc6aea09fdf80b.tar.gz gentoo-1d803b3f2b662d31ac3ab47abafc6aea09fdf80b.tar.bz2 gentoo-1d803b3f2b662d31ac3ab47abafc6aea09fdf80b.zip |
dev-java/jaxen: bug https://bugs.gentoo.org/739894
Closes: https://bugs.gentoo.org/739894
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/20353/commits/2bd5ea67f87385106092c8ca44cca70ba67a0c71
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java/jaxen')
-rw-r--r-- | dev-java/jaxen/jaxen-1.1.6-r2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-java/jaxen/jaxen-1.1.6-r2.ebuild b/dev-java/jaxen/jaxen-1.1.6-r2.ebuild new file mode 100644 index 000000000000..bc0878f8ca6d --- /dev/null +++ b/dev-java/jaxen/jaxen-1.1.6-r2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="A Java XPath Engine" +HOMEPAGE="https://github.com/codehaus" +SRC_URI="https://repo1.maven.org/maven2/${PN}/${PN}/${PV}/${P}-sources.jar -> ${P}.jar" + +LICENSE="JDOM" +SLOT="1.1" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RDEPEND=" + ${CDEPEND} + >=virtual/jre-1.8:*" + +DEPEND=" + ${CDEPEND} + >=virtual/jdk-1.8:*" + +JAVA_SRC_DIR="org" + +src_prepare() { + default + + # xom depends on jaxen already. if we don't remove xom packages here and + # require jaxen to depend on xom, we end up in a circular dep. + # I fear though that removing those classes might bite us somewhere down + # the line... + rm -rv org/jaxen/{dom4j,jdom,xom} || die +} |