diff options
author | James Le Cuirot <chewi@gentoo.org> | 2016-01-02 23:05:02 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2016-01-02 23:10:42 +0000 |
commit | b0a4d64b670d0a2f93932dc0db3fe43ef9b97ad0 (patch) | |
tree | b936890d30a3acca989812c61cc3bc2818e04712 /dev-util | |
parent | games-rpg/freedroidrpg: version bump (diff) | |
download | gentoo-b0a4d64b670d0a2f93932dc0db3fe43ef9b97ad0.tar.gz gentoo-b0a4d64b670d0a2f93932dc0db3fe43ef9b97ad0.tar.bz2 gentoo-b0a4d64b670d0a2f93932dc0db3fe43ef9b97ad0.zip |
dev-util/checkstyle: Make the tests actually run
They previously weren't being run due to a problem location
junit. Includes a quick and dirty workaround to avoid test breakages
from using jars within ~/.m2.
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/checkstyle/checkstyle-5.5-r1.ebuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/dev-util/checkstyle/checkstyle-5.5-r1.ebuild b/dev-util/checkstyle/checkstyle-5.5-r1.ebuild index 7a81a421c4c1..93a4a647c7fb 100644 --- a/dev-util/checkstyle/checkstyle-5.5-r1.ebuild +++ b/dev-util/checkstyle/checkstyle-5.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ JAVA_PKG_IUSE="doc source test" inherit java-pkg-2 java-ant-2 -DESCRIPTION="A development tool to help programmers write Java code that adheres to a coding standard" +DESCRIPTION="Development tool to help write Java code that adheres to a coding standard" HOMEPAGE="https://github.com/checkstyle/checkstyle" SRC_URI="mirror://sourceforge/checkstyle/${P}-src.tar.gz https://dev.gentoo.org/~sera/distfiles/${PN}-5.4-maven-build.xml.tar.bz2" @@ -29,11 +29,7 @@ RDEPEND="${COMMON_DEP} >=virtual/jre-1.6" DEPEND="${COMMON_DEP} >=virtual/jdk-1.6 - dev-java/ant-nodeps:0 - test? ( - dev-java/ant-junit - dev-java/junit:4 - )" + test? ( dev-java/ant-junit:0 )" java_prepare() { cp ../${PN}-5.4/maven-build.xml . || die @@ -55,11 +51,12 @@ JAVA_ANT_ENCODING="iso-8859-1" EANT_BUILD_XML="maven-build.xml" EANT_GENTOO_CLASSPATH="ant-core,antlr,commons-beanutils-1.7,commons-cli-1,commons-logging,guava-18" EANT_BUILD_TARGET="package" -EANT_ANT_TASKS="ant-nodeps" EANT_NEEDS_TOOLS="true" +EANT_EXTRA_ARGS="-Dmaven.repo.local=/dev/null" +EANT_TEST_EXTRA_ARGS="${EANT_EXTRA_ARGS} -Djunit.present=true" + src_test() { - EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4" java-pkg-2_src_test } |