commit:     851995b129a1437543040ad112a9c6d24f77c6da
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Sun May 15 04:42:27 2022 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sun May 15 06:51:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=851995b1

dev-java/testng: drop 6.9.10

Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/25492
Bug: https://bugs.gentoo.org/844130
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-java/testng/testng-6.9.10.ebuild | 69 ------------------------------------
 1 file changed, 69 deletions(-)

diff --git a/dev-java/testng/testng-6.9.10.ebuild 
b/dev-java/testng/testng-6.9.10.ebuild
deleted file mode 100644
index c644e8005e27..000000000000
--- a/dev-java/testng/testng-6.9.10.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="Testing framework inspired by JUnit and NUnit with new features"
-HOMEPAGE="https://testng.org/";
-SRC_URI="https://github.com/cbeust/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="Apache-2.0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-SLOT="0"
-IUSE="test"
-RESTRICT="test" # Occasionally fail or run *REALLY* slowly.
-
-CDEPEND="dev-java/bsh:0
-       dev-java/guice:4
-       dev-java/junit:4
-       dev-java/ant-core:0
-       dev-java/snakeyaml:0
-       dev-java/jcommander:0"
-
-DEPEND="${CDEPEND}
-       >=virtual/jdk-1.7
-       test? ( dev-java/assertj-core:2 )"
-
-RDEPEND="${CDEPEND}
-       >=virtual/jre-1.7"
-
-S="${WORKDIR}/${P}"
-JAVA_SRC_DIR="src/main/java"
-JAVA_GENTOO_CLASSPATH="ant-core,bsh,guice-4,jcommander,junit-4,snakeyaml"
-
-java_prepare() {
-       java-pkg_clean ! -path "./src/*"
-
-       cp -v src/generated/java/org/testng/internal/VersionTemplateJava \
-          src/main/java/org/testng/internal/Version.java || die
-}
-
-src_compile() {
-       java-pkg-simple_src_compile
-       java-pkg_addres ${PN}.jar src/main/resources
-}
-
-src_test() {
-       local DIR=src/test/java
-       local RES=src/test/resources
-       local CP=${PN}.jar:$(java-pkg_getjars --with-dependencies 
"${JAVA_GENTOO_CLASSPATH},assertj-core-2")
-
-       ejavac -cp "${CP}" -d ${DIR} $(find ${DIR} -name "*.java")
-       java -cp "${RES}:${DIR}:${CP}" -Dtest.resources.dir=${RES} 
org.testng.TestNG -listener test.invokedmethodlistener.MyListener 
src/test/resources/testng.xml || die
-}
-
-src_install() {
-       java-pkg-simple_src_install
-       java-pkg_dolauncher ${PN} --main org.testng.TestNG
-       java-pkg_register-ant-task
-
-       dodoc {ANNOUNCEMENT,CHANGES,TODO}.txt
-
-       if use doc; then
-               docinto html
-               dodoc -r doc
-       fi
-}

Reply via email to