summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2022-02-16 23:18:51 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2022-02-16 23:18:51 +0100
commite63c4012f7a33258f58efc374d02eeaeed9f4f49 (patch)
tree32a14209537f58f8684d68a5896b81aa75b7f308
parentdev-java/mchange-commons: removed obsolete 0.2.10 (diff)
downloadgentoo-e63c4012f7a33258f58efc374d02eeaeed9f4f49.tar.gz
gentoo-e63c4012f7a33258f58efc374d02eeaeed9f4f49.tar.bz2
gentoo-e63c4012f7a33258f58efc374d02eeaeed9f4f49.zip
dev-java/xmlunit: removed obsolete 1.6
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
-rw-r--r--dev-java/xmlunit/xmlunit-1.6.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/dev-java/xmlunit/xmlunit-1.6.ebuild b/dev-java/xmlunit/xmlunit-1.6.ebuild
deleted file mode 100644
index b6e5dc47b97b..000000000000
--- a/dev-java/xmlunit/xmlunit-1.6.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="XMLUnit extends JUnit and NUnit to enable unit testing of XML"
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
-HOMEPAGE="http://xmlunit.sourceforge.net/"
-
-LICENSE="BSD"
-SLOT="1"
-KEYWORDS="amd64 ppc64 x86"
-
-CDEPEND="dev-java/junit:0"
-
-DEPEND=">=virtual/jdk-1.6
- app-arch/unzip:0
- doc? ( app-text/docbook-xsl-stylesheets:0 )
- test? (
- dev-java/ant-junit:0
- dev-java/ant-core:0
- )
- ${CDEPEND}"
-
-RDEPEND=">=virtual/jre-1.6
- ${CDEPEND}"
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="junit"
-
-EANT_DOC_TARGET="users-guide-html javadocs"
-EANT_ANT_TASKS="ant-core"
-EANT_EXTRA_ARGS="-Ddb5.xsl=/usr/share/sgml/docbook/xsl-stylesheets"
-
-src_test() {
- ANT_TASKS="ant-junit ant-core" eant test
-}
-
-src_install() {
- java-pkg_newjar "build/lib/${P}.jar"
-
- dodoc README.txt
-
- if use doc; then
- java-pkg_dojavadoc build/doc/api
- dohtml build/doc/userguide/html/*
- fi
-
- use source && java-pkg_dosrc src/java/org
-}