diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-21 09:06:55 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-11-21 09:11:17 +0100 |
commit | 01dcac5189018be622d40ec663e47e09786659a2 (patch) | |
tree | ebec5c974fb99bed734a44fc085771116498ffd8 /dev-java/commons-graph/commons-graph-0.1.ebuild | |
parent | dev-java/commons-launcher: treeclean (diff) | |
download | gentoo-01dcac5189018be622d40ec663e47e09786659a2.tar.gz gentoo-01dcac5189018be622d40ec663e47e09786659a2.tar.bz2 gentoo-01dcac5189018be622d40ec663e47e09786659a2.zip |
dev-java/commons-graph: treeclean
Closes: https://bugs.gentoo.org/736571
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-java/commons-graph/commons-graph-0.1.ebuild')
-rw-r--r-- | dev-java/commons-graph/commons-graph-0.1.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-java/commons-graph/commons-graph-0.1.ebuild b/dev-java/commons-graph/commons-graph-0.1.ebuild deleted file mode 100644 index d62104317f83..000000000000 --- a/dev-java/commons-graph/commons-graph-0.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2017 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="A toolkit for managing graphs and graph based data structures" -HOMEPAGE="https://commons.apache.org/sandbox/commons-graph/" -SRC_URI="https://dev.gentoo.org/~monsieurp/packages/${P}.tar.gz" -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=">=virtual/jdk-1.6 - test? ( - dev-java/ant-junit:0 - )" - -RDEPEND=">=virtual/jre-1.6 - ${CDEPEND}" - -JAVA_ANT_REWRITE_CLASSPATH="yes" -EANT_TEST_TARGET="test" - -# Dubious tests. -JAVA_RM_FILES=( - src/test/java/org/apache/commons/graph/coloring/GraphColoringTestCase.java - src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java - src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java -) - -java_prepare() { - cp "${FILESDIR}"/"${P}-build.xml" build.xml || die -} - -src_test() { - java-pkg-2_src_test -} - -src_install() { - java-pkg_newjar target/${P}.jar - use doc && java-pkg_dojavadoc target/site/apidocs - use source && java-pkg_dosrc src/main/java -} |