commit:     ddc4b403f0397f32bf32109593dea46ff2c0b87d
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 25 14:11:15 2015 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Oct 25 14:32:17 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddc4b403

dev-java/testng: Clean up broken version.

Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-java/testng/files/build-tests.xml | 188 ----------------------------------
 dev-java/testng/testng-6.8-r2.ebuild  |  89 ----------------
 2 files changed, 277 deletions(-)

diff --git a/dev-java/testng/files/build-tests.xml 
b/dev-java/testng/files/build-tests.xml
deleted file mode 100644
index e94606b..0000000
--- a/dev-java/testng/files/build-tests.xml
+++ /dev/null
@@ -1,188 +0,0 @@
-<!-- From: https://github.com/cbeust/testng/blob/master/build-tests.xml -->
-
-<project name="testng" default="all" basedir=".">
-
-  <property file="build.properties"/>
-
-  <property name="report.dir" value="${test.output.dir}"/>
-  <property name="junit.report.dir" value="${report.dir}/test-tmp"/>
-  <property name="testng.report.dir" value="${report.dir}"/>
-
-  <target name="all" depends="prepare,compile,run,reports,done"/>
-
-  <!-- ==================================================================== -->
-  <!-- Compile                                                              -->
-  <!-- ==================================================================== -->
-  <path id="compile.cp">
-    <pathelement location="${testng.jar}" />
-    <fileset dir="${lib.dir}" includes="${guice2.jar}" />
-    <fileset dir="${lib.dir}" includes="${junit.jar}" />
-  </path>
-
-  <target name="env:info">
-    <echo>
-BASEDIR          =${basedir}
-TEST.DIR         =${test.dir}
-TEST.BUILD.DIR   =${test.build.dir}
-REPORT.DIR       =${report.dir}
-JUNIT.REPORT.DIR =${junit.report.dir}
-TESTNG.REPORT.DIR=${testng.report.dir}
-    </echo>
-  </target>
-
-  <target name="compile" depends="prepare">
-    <echo message="                                 -- Compiling tests --"/>
-
-    <property name="build.compiler" value="modern"/>
-    <javac debug="true"
-           source="1.5"
-           classpathref="compile.cp"
-           srcdir="${test.dir}"
-           destdir="${test.build.dir}"
-    />
-
-  </target>
-
-  <target name="prepare">
-    <tstamp/>
-    <mkdir dir="${test.build.dir}"/>
-    <mkdir dir="${junit.report.dir}"/>
-    <mkdir dir="${testng.report.dir}"/>
-
-  <taskdef name="testng"
-             classname="org.testng.TestNGAntTask"
-             classpath="${build.dir}"/>
-  </target>
-
-<!--
-  <property name="cobertura.dir" value="../cobertura-1.9.4.1" />
-
-  <path id="cobertura.classpath">
-      <fileset dir="${cobertura.dir}">
-          <include name="cobertura.jar" />
-          <include name="lib/**/*.jar" />
-      </fileset>
-  </path>
--->
-
-  <!-- ==================================================================== -->
-  <!-- Run                                                             -->
-  <!-- ==================================================================== -->
-
-  <path id="run.cp">
-<!--
-       <path location="target/instrumented-classes" />
-       <path refid="cobertura.classpath" />
--->
-    <path refid="compile.cp"/>
-    <pathelement location="${test.build.dir}"/>
-  </path>
-
-  <target name="run" description="Run tests" depends="compile,copy-resources">
-    <echo message="                                 -- Running tests --"/>
-    <echo message="                                 -- ${testng.jar} --" />
-    <testng classpathref="run.cp"
-            outputdir="${testng.report.dir}">
-      <xmlfileset dir="${test.resources.dir}" includes="testng.xml"/>
-      <jvmarg value="-Dtest.resources.dir=${test.resources.dir}" />
-      <jvmarg value="-Dsun.io.serialization.extendedDebugInfo=true" />
-    </testng>
-  </target>
-
-  <target name="copy-resources" description="Copies resources.">
-    <copy verbose="false"
-          file="${src.resources.dir}/testngtasks"
-          todir="${build.dir}" />
-    <copy todir="${build.dir}">
-      <fileset dir="${src.resources.dir}">
-        <exclude name="**/.*" />
-        <exclude name="**/CVS/*" />
-      </fileset>
-    </copy>
-  </target>
-
-  <target name="run:single" description="Run 1 property file named with the 
ant property test" depends="compile">
-      <echo message="                                 -- testng-tests-run1 
--"/>
-
-    <testng outputdir="${testng.report.dir}"
-        classpathref="run.cp"
-        useDefaultListeners="true"
-        outputDir="${testng.report.dir}">
-      <xmlfileset dir="${test.resources.dir}" includes="testng-single.xml"/>
-     </testng>
-
-      <echo>Report created in    open ${testng.report.dir}/index.html</echo>
-  </target>
-
-  <target name="run:antprop" description="Run a test to see if ant system 
propertes are passed correctly" depends="compile">
-      <echo message="                                 -- 
testng-tests-run-antprop --"/>
-      <property name="syspropset1" value="value 1"/>
-      <property name="syspropset2" value="value 2"/>
-      <propertyset id="propset1">
-          <propertyref name="syspropset1"/>
-          <propertyref name="syspropset2"/>
-      </propertyset>
-
-      <testng outputdir="${testng.report.dir}"
-              classpathref="run.cp">
-          <xmlfileset dir="${test.resources.dir}" 
includes="testng-single3.xml"/>
-          <propertyset refid="propset1"/>
-          <sysproperty key="sysprop1" value="value 3"/>
-      </testng>
-  </target>
-
-  <!-- ==================================================================== -->
-  <!-- Run specific configuration                                           -->
-  <!-- ==================================================================== -->
-  <target name="run:conf"
-          if="testng.conf"
-          depends="clean:reports,compile"
-          description="Run specified tests">
-    <echo message="                                 -- testng-tests-run --"/>
-    <echo message="using: ${testng.conf}.xml"/>
-
-    <testng classpathref="run.cp"
-            outputDir="${testng.report.dir}">
-        <xmlfileset dir="${test.resources.dir}" includes="${testng.conf}.xml"/>
-    </testng>
-
-    <antcall target="clean.tmp"/>
-  </target>
-
-
-  <!-- ==================================================================== -->
-  <!-- Reports                                                              -->
-  <!-- ==================================================================== -->
-
-  <target name="reports">
-    <junitreport todir="${junit.report.dir}">
-      <fileset dir="${testng.report.dir}">
-        <include name="*.xml"/>
-        <exclude name="testng-failed.xml"/>
-        <exclude name="testng-results.xml" />
-      </fileset>
-      <report format="noframes" todir="${junit.report.dir}"/>
-    </junitreport>
-  </target>
-
-
-  <target name="clean.tmp">
-      <delete dir="${test.output.dir}"/>
-  </target>
-
-  <target name="clean:reports">
-      <delete dir="${report.dir}"/>
-      <delete dir="${junit.report.dir}"/>
-  </target>
-
-  <target name="clean" depends="clean.tmp,clean:reports">
-    <echo message="                                 -- test clean --"/>
-
-    <delete dir="${test.build.dir}"/>
-  </target>
-
-  <target name="done">
-    <echo>Reports can be found in:    open 
${testng.report.dir}/index.html</echo>
-  </target>
-
-</project>

diff --git a/dev-java/testng/testng-6.8-r2.ebuild 
b/dev-java/testng/testng-6.8-r2.ebuild
deleted file mode 100644
index e90b764..0000000
--- a/dev-java/testng/testng-6.8-r2.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc examples source test"
-WANT_ANT_TASKS="ant-junit"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Testing framework introducing some new functionalities that make 
it more powerful and easier to use"
-HOMEPAGE="http://testng.org/";
-SRC_URI="http://${PN}.org/${P}.zip";
-
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-CDEPEND="dev-java/ant-core:0
-       dev-java/bsh:0
-       dev-java/guice:2
-       dev-java/jcommander:0
-       dev-java/junit:4
-       dev-java/snakeyaml:1.9"
-
-DEPEND=">=virtual/jdk-1.5
-       app-arch/zip
-       ${CDEPEND}"
-
-RDEPEND=">=virtual/jre-1.5
-       ${CDEPEND}"
-
-JAVA_PKG_BSFIX_NAME="build.xml build-tests.xml"
-JAVA_ANT_REWRITE_CLASSPATH="true"
-JAVA_ANT_CLASSPATH_TAGS+=" testng javadocs-current"
-EANT_GENTOO_CLASSPATH="ant-core,bsh,guice-2,jcommander,junit-4,snakeyaml-1.9"
-EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH}"
-
-EANT_BUILD_TARGET="build"
-EANT_TEST_TARGET="tests"
-EANT_DOC_TARGET="javadocs"
-
-java_prepare() {
-       find . -name '*.jar' -print -delete || die
-
-       cp "${FILESDIR}"/${P}-build-tests.xml build-tests.xml || die
-
-       epatch "${FILESDIR}"/${P}-remove-ivy-retrieve.patch
-       epatch "${FILESDIR}"/${P}-remove-jar-bundling.patch
-
-       # Removal of tests that break due to restrictions or environment 
expectations:
-       #     ServiceLoaderTest - Breaks due absolute URL load that Portage 
prevents;
-       #                         we assume the underlying functionality to 
work, as
-       #                         the underlying functionality is simple and 
should
-       #                         show the usage of this package to break.
-       sed -i '/test.serviceloader.ServiceLoaderTest/d' 
src/test/resources/testng.xml || die
-
-       #     TrueParallelTest - Doesn't always work, especially not on a system
-       #                        under load; since this could fail during 
parallel
-       #                        emerges, we assume the underlying 
functionality to
-       #                        work as it has definitely succeeded under 
lower load.
-       sed -i '/test.thread.TrueParallelTest/d' src/test/resources/testng.xml 
|| die
-
-       mkdir lib || die
-}
-
-src_test() {
-       local tests_file="target/test-output/index.html"
-
-       java-pkg-2_src_test
-
-       if [[ ! -f ${tests_file} ]] ; then
-               die "Tests failed, test output does not exist; a problem with 
starting the tests."
-       fi
-
-       grep 'method-stats.*failed' target/test-output/index.html > /dev/null 
&& \
-               die "Tests failed; one or more test failed, see ${tests_file} 
for more details."
-}
-
-src_install() {
-       java-pkg_newjar target/${P}.jar
-       java-pkg_dolauncher ${PN} --main org.testng.TestNG
-       java-pkg_register-ant-task
-
-       use doc && java-pkg_dojavadoc javadocs
-       use examples && java-pkg_doexamples examples
-       use source && java-pkg_dosrc src/main/java/{org,com}
-}

Reply via email to