Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
betelgeuse 09/01/12 19:43:10
Modified: ChangeLog
Added: dbunit-2.4.1.ebuild
Log:
Version bump. Fixes bug #250411. Thanks to Mike Weissman <mike@...>.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28-gentoo i686)
Revision Changes Path
1.18 dev-java/dbunit/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/dbunit/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/dbunit/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/dbunit/ChangeLog?r1=1.17&r2=1.18
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/dbunit/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog 22 Oct 2008 11:46:03 -0000 1.17
+++ ChangeLog 12 Jan 2009 19:43:10 -0000 1.18
@@ -1,6 +1,13 @@
# ChangeLog for dev-java/dbunit
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/dbunit/ChangeLog,v 1.17 2008/10/22 11:46:03 fordfrog Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/dbunit/ChangeLog,v 1.18 2009/01/12 19:43:10 betelgeuse Exp $
+
+*dbunit-2.4.1 (12 Jan 2009)
+
+ 12 Jan 2009; Petteri Räty <betelgeuse@g.o> +files/build-2.4.xml,
+ +dbunit-2.4.1.ebuild:
+ Version bump. Fixes bug #250411. Thanks to Mike Weissman
+ <mike@...>.
22 Oct 2008; Miroslav Šulc <fordfrog@g.o> dbunit-2.2.ebuild:
Migrated to EAPI-1 and restricted to dev-java/poi:0 because of
1.1 dev-java/dbunit/dbunit-2.4.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/dbunit/dbunit-2.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/dbunit/dbunit-2.4.1.ebuild?rev=1.1&content-type=text/plain
Index: dbunit-2.4.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/dbunit/dbunit-2.4.1.ebuild,v 1.1 2009/01/12 19:43:10 betelgeuse Exp $
EAPI="2"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="DbUnit is a JUnit extension targeted for database-driven projects"
HOMEPAGE="http://dbunit.sourceforge.net/"
SRC_URI="http://internap.dl.sourceforge.net/sourceforge/dbunit/${P}-sources.jar"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
COMMON_DEP="dev-java/slf4j-api
dev-java/poi:3.2
dev-java/commons-collections:0
dev-java/ant-core
dev-java/junit"
RDEPEND=">=virtual/jre-1.4
dev-java/slf4j-nop
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
${COMMON_DEP}"
#instead of making a folder
S="${WORKDIR}"
src_prepare(){
#Upstream no longer provides a build file.
cp -v "${FILESDIR}"/build-2.4.xml "${S}/build.xml" || die
}
EANT_GENTOO_CLASSPATH="poi-3.2,junit,slf4j-api,commons-collections,ant-core"
src_install() {
#slf4j needed for runtime
java-pkg_register-optional-dependency slf4j-nop
java-pkg_register-optional-dependency slf4j-log4j12
java-pkg_dojar "${S}"/dist/"${PN}.jar"
use doc && java-pkg_dojavadoc build/javadoc
use source && java-pkg_dosrc org
}
|
|