chewi 15/03/14 14:51:12 Modified: ChangeLog Added: bcel-6.0_rc3.ebuild Log: Version bump. Tests added. No longer needs patching for findbugs. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 9C6D7DE4)
Revision Changes Path 1.67 dev-java/bcel/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcel/ChangeLog?rev=1.67&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcel/ChangeLog?rev=1.67&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcel/ChangeLog?r1=1.66&r2=1.67 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-java/bcel/ChangeLog,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- ChangeLog 17 Jun 2014 13:39:28 -0000 1.66 +++ ChangeLog 14 Mar 2015 14:51:12 -0000 1.67 @@ -1,6 +1,11 @@ # ChangeLog for dev-java/bcel -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/bcel/ChangeLog,v 1.66 2014/06/17 13:39:28 mrueg Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/bcel/ChangeLog,v 1.67 2015/03/14 14:51:12 chewi Exp $ + +*bcel-6.0_rc3 (14 Mar 2015) + + 14 Mar 2015; James Le Cuirot <[email protected]> +bcel-6.0_rc3.ebuild: + Version bump. Tests added. No longer needs patching for findbugs. 17 Jun 2014; Manuel RĂ¼ger <[email protected]> -bcel-5.2-r1.ebuild, -bcel-5.2.ebuild, -files/bcel-5.1-gentoo-buildxml.diff, 1.1 dev-java/bcel/bcel-6.0_rc3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcel/bcel-6.0_rc3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/bcel/bcel-6.0_rc3.ebuild?rev=1.1&content-type=text/plain Index: bcel-6.0_rc3.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/bcel/bcel-6.0_rc3.ebuild,v 1.1 2015/03/14 14:51:12 chewi Exp $ EAPI=5 MY_PV="${PV//./_}" MY_PV="${MY_PV/rc/RC}" MY_P="BCEL_${MY_PV}" JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-pkg-simple DESCRIPTION="The Byte Code Engineering Library: analyze, create, manipulate Java class files" HOMEPAGE="http://commons.apache.org/bcel/" SRC_URI="https://github.com/apache/commons-${PN}/archive/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND=">=virtual/jre-1.5" DEPEND=">=virtual/jdk-1.5 test? ( dev-java/junit:4 )" S="${WORKDIR}/commons-${PN}-${MY_P}/src" JAVA_SRC_DIR="main/java" src_install() { java-pkg-simple_src_install dodoc ../{NOTICE,README,RELEASE-NOTES}.txt } src_test() { cd test/java || die local CP=".:${S}/${PN}.jar:$(java-pkg_getjars junit-4)" local TESTS=$(find * -name "*TestCase.java" ! -name "Abstract*") TESTS="${TESTS//.java}" TESTS="${TESTS//\//.}" ejavac -g -cp "${CP}" -d . $(find * -name "*.java") ejunit4 -classpath "${CP}" ${TESTS} }
