diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2015-08-21 13:14:06 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2015-08-21 13:22:46 +0000 |
commit | e32b9910e6cfa1b667dbc98cba24e5b72b271284 (patch) | |
tree | 799ac481acaff82a48071962a4a19a0a2447f20c /dev-java/classmate | |
parent | dev-java/classmate: Stable for amd64+x86. (diff) | |
download | gentoo-e32b9910e6cfa1b667dbc98cba24e5b72b271284.tar.gz gentoo-e32b9910e6cfa1b667dbc98cba24e5b72b271284.tar.bz2 gentoo-e32b9910e6cfa1b667dbc98cba24e5b72b271284.zip |
dev-java/classmate: Remove old.
Package-Manager: portage-2.2.18
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-java/classmate')
-rw-r--r-- | dev-java/classmate/classmate-0.9.0.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-java/classmate/classmate-0.9.0.ebuild b/dev-java/classmate/classmate-0.9.0.ebuild deleted file mode 100644 index 8441f7a440da..000000000000 --- a/dev-java/classmate/classmate-0.9.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="5" - -JAVA_PKG_IUSE="doc source test" - -inherit java-pkg-2 java-pkg-simple vcs-snapshot - -DESCRIPTION="Library for introspecting generic type information of types, member/static methods, fields" -HOMEPAGE="https://github.com/cowtowncoder/java-classmate/" -SRC_URI="https://github.com/cowtowncoder/java-classmate/archive/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="" - -RDEPEND=">=virtual/jre-1.5" -DEPEND=">=virtual/jdk-1.5 - test? ( dev-java/junit:4 )" - -S="${WORKDIR}/${P}" - -JAVA_SRC_DIR="src/main/java" - -java_prepare() { - rm pom.xml || die -} - -src_test() { - testcp="${S}/${PN}.jar:$(java-pkg_getjars junit-4):target/tests" - - mkdir target/tests || die - ejavac -cp "${testcp}" -d target/tests $(find src/test/java -name "*.java") - - tests=$(find target/tests -name "*Test.class" -not -name "BaseTest.class" \ - | sed -e 's/target\/tests\///g' -e "s/\.class//" -e "s/\//./g" \ - | grep -vP '\$'); - ejunit4 -cp "${testcp}" ${tests} -} |