diff options
author | Serkan Kaba <serkan@gentoo.org> | 2008-06-12 19:13:07 +0000 |
---|---|---|
committer | Serkan Kaba <serkan@gentoo.org> | 2008-06-12 19:13:07 +0000 |
commit | 5ba47cefc49738099cf6fa4f3143a2a323e5498a (patch) | |
tree | ada3d2a24d9fbe24a16dea6f5bce41ba6cf78996 /dev-java | |
parent | Remove old version. (diff) | |
download | gentoo-2-5ba47cefc49738099cf6fa4f3143a2a323e5498a.tar.gz gentoo-2-5ba47cefc49738099cf6fa4f3143a2a323e5498a.tar.bz2 gentoo-2-5ba47cefc49738099cf6fa4f3143a2a323e5498a.zip |
Remove old revision which has failing tests with several JVM's. See bug #220245 for more info.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/jid3/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/jid3/jid3-0.46.ebuild | 58 |
2 files changed, 5 insertions, 59 deletions
diff --git a/dev-java/jid3/ChangeLog b/dev-java/jid3/ChangeLog index 2d8df4d5e46a..8e11fdbcf618 100644 --- a/dev-java/jid3/ChangeLog +++ b/dev-java/jid3/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/jid3 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jid3/ChangeLog,v 1.7 2008/06/12 18:35:32 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/jid3/ChangeLog,v 1.8 2008/06/12 19:13:07 serkan Exp $ + + 12 Jun 2008; Serkan Kaba <serkan@gentoo.org> -jid3-0.46.ebuild: + Remove old revision which has failing tests with several JVM's. See bug + #220245 for more info. 12 Jun 2008; Christian Faulhammer <opfer@gentoo.org> jid3-0.46-r1.ebuild: stable x86, bug 225647 diff --git a/dev-java/jid3/jid3-0.46.ebuild b/dev-java/jid3/jid3-0.46.ebuild deleted file mode 100644 index 66d07b1877ed..000000000000 --- a/dev-java/jid3/jid3-0.46.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jid3/jid3-0.46.ebuild,v 1.4 2008/05/09 20:58:52 opfer Exp $ - -JAVA_PKG_IUSE="doc source test" -# To make sure the javadoc patch doesn't break things -WANT_SPLIT_WANT="true" - -inherit eutils java-pkg-2 java-ant-2 - -MY_P=${P/-/_} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="ID3 Class Library Implementation" -HOMEPAGE="http://jid3.blinkenlights.org/" -SRC_URI="http://jid3.blinkenlights.org/release/${MY_P}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -# Feel free to submit a patch that doesn't bundle the classes -# into the result jar -RDEPEND=">=virtual/jre-1.4 - test? ( =dev-java/junit-3.8* )" - -DEPEND=">=virtual/jdk-1.4 - test? ( =dev-java/junit-3.8* )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/0.46-javadoc.patch" - rm -v "${S}"/dist/*.jar || die - if use !test; then - rm -rv "${S}/src/org/blinkenlights/jid3/test" || die - else - epatch "${FILESDIR}/0.46-tests.patch" - sed -e "s%c:/work/jid3/%${S}/%" -i \ - src/org/blinkenlights/jid3/test/AllTests.java || die - fi -} - -src_compile() { - local junit="-Dlibs.junit.classpath" - eant jar $(use_doc) \ - $(use test && echo ${junit}=$(java-pkg_getjars junit)) -} - -src_test() { - ejunit -cp dist/JID3.jar org.blinkenlights.jid3.test.AllTests -} - -src_install() { - java-pkg_dojar dist/JID3.jar - use doc && java-pkg_dojavadoc dist/javadoc - use source && java-pkg_dosrc src/ -} |