public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-java/junit: ChangeLog junit-4.10.ebuild
@ 2011-12-25 21:42 Miroslav Sulc (fordfrog)
  0 siblings, 0 replies; 3+ messages in thread
From: Miroslav Sulc (fordfrog) @ 2011-12-25 21:42 UTC (permalink / raw
  To: gentoo-commits

fordfrog    11/12/25 21:42:29

  Modified:             ChangeLog
  Added:                junit-4.10.ebuild
  Log:
  dev-java/junit: version bump
  
  (Portage version: 2.1.10.43/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 dev-java/junit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	3 May 2011 18:27:50 -0000	1.62
+++ ChangeLog	25 Dec 2011 21:42:29 -0000	1.63
@@ -1,6 +1,11 @@
 # ChangeLog for dev-java/junit
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.62 2011/05/03 18:27:50 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.63 2011/12/25 21:42:29 fordfrog Exp $
+
+*junit-4.10 (25 Dec 2011)
+
+  25 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> +junit-4.10.ebuild:
+  Version bump
 
   03 May 2011; Fabian Groffen <grobian@gentoo.org> junit-4.8.2-r1.ebuild:
   Marked ~x64-freebsd



1.1                  dev-java/junit/junit-4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?rev=1.1&content-type=text/plain

Index: junit-4.10.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v 1.1 2011/12/25 21:42:29 fordfrog Exp $

# WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS

EAPI="3"
JAVA_PKG_IUSE="doc examples source test"

inherit java-pkg-2 java-ant-2

DESCRIPTION="Simple framework to write repeatable tests"
SRC_URI="https://github.com/downloads/KentBeck/${PN}/${PN}${PV}.zip"
HOMEPAGE="http://www.junit.org/"
LICENSE="CPL-1.0"
SLOT="4"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""

CDEPEND="dev-java/hamcrest-core:0"
RDEPEND=">=virtual/jre-1.5
	${CDEPEND}"
DEPEND=">=virtual/jdk-1.5
	userland_GNU? ( >=sys-apps/findutils-4.3 )
	${CDEPEND}"

S="${WORKDIR}/${PN}${PV}"

EANT_BUILD_TARGET="jars"

src_unpack() {
	default

	# Unpack source JAR
	mkdir -p "${S}/src/main/java" "${S}/src/test/java" \
		|| die "Unable to create source directories"
	pushd "${S}/src/main/java" >/dev/null
	jar xf "${S}/${P}-src.jar" || die "Unable to unpack sources."
	popd >/dev/null

	# copy Gentoo manifest to working directory
	cp "${FILESDIR}/gentoo-manifest.mf" "${S}"
}

java_prepare() {
	# fix javadoc compilation
	if use doc ; then
		cp "${S}"/javadoc/stylesheet.css "${S}" \
			|| die "Unable to copy Javdoc stylesheet"
	fi

	# remove binary and other generated files
	rm -rf javadoc temp.hamcrest.source *.jar \
		|| die "Unable to clean generated files."
	find . -name "*.class" -delete \
		|| die "Unable to remove distributed class files"

	# Let Ant know where its hamcrest went
	EANT_EXTRA_ARGS="-Dhamcrestlib=$(java-pkg_getjars hamcrest-core)"

	# Add Gentoo manifest information to generated JAR files
	java-ant_xml-rewrite -f build.xml -c \
		-e jar -a manifest -v "gentoo-manifest.mf"
}

src_test() {
	mkdir classes || die "Unable to create build directory for tests"

	local cp=$(java-pkg_getjars hamcrest-core):${S}/${PN}${PV}/${PN}-dep-${PV}.jar
	ejavac -classpath ${cp} -d classes $(find junit/tests -name "*.java")

	java -classpath ${cp}:classes org.junit.runner.JUnitCore junit.tests.AllTests \
		|| die "Tests failed."
}

src_install() {
	java-pkg_newjar ${PN}${PV}/${PN}-dep-${PV}.jar
	dodoc README.html doc/ReleaseNotes${PV}.txt || die

	use examples && java-pkg_doexamples org/junit/samples
	use source && java-pkg_dosrc src/main/java/org src/main/java/junit

	if use doc; then
		dohtml -r doc/*
		java-pkg_dojavadoc ${PN}${PV}/javadoc
	fi
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: ChangeLog junit-4.10.ebuild
@ 2011-12-30 12:14 Miroslav Sulc (fordfrog)
  0 siblings, 0 replies; 3+ messages in thread
From: Miroslav Sulc (fordfrog) @ 2011-12-30 12:14 UTC (permalink / raw
  To: gentoo-commits

fordfrog    11/12/30 12:14:33

  Modified:             ChangeLog junit-4.10.ebuild
  Log:
  dev-java/junit: fixed bug #396367
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.64                 dev-java/junit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	25 Dec 2011 21:42:29 -0000	1.63
+++ ChangeLog	30 Dec 2011 12:14:33 -0000	1.64
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/junit
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.63 2011/12/25 21:42:29 fordfrog Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.64 2011/12/30 12:14:33 fordfrog Exp $
+
+  30 Dec 2011; Miroslav Šulc <fordfrog@gentoo.org> junit-4.10.ebuild:
+  Fixed failing tests (bug #396367, thanks to Xake >xake@rymdraket.net> for the
+  fix)
 
 *junit-4.10 (25 Dec 2011)
 



1.2                  dev-java/junit/junit-4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?r1=1.1&r2=1.2

Index: junit-4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- junit-4.10.ebuild	25 Dec 2011 21:42:29 -0000	1.1
+++ junit-4.10.ebuild	30 Dec 2011 12:14:33 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v 1.1 2011/12/25 21:42:29 fordfrog Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v 1.2 2011/12/30 12:14:33 fordfrog Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -67,7 +67,7 @@
 	mkdir classes || die "Unable to create build directory for tests"
 
 	local cp=$(java-pkg_getjars hamcrest-core):${S}/${PN}${PV}/${PN}-dep-${PV}.jar
-	ejavac -classpath ${cp} -d classes $(find junit/tests -name "*.java")
+	ejavac -classpath ${cp} -d classes $(find junit/tests org/junit/tests -name "*.java")
 
 	java -classpath ${cp}:classes org.junit.runner.JUnitCore junit.tests.AllTests \
 		|| die "Tests failed."






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: ChangeLog junit-4.10.ebuild
@ 2013-06-14 19:51 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-14 19:51 UTC (permalink / raw
  To: gentoo-commits

aballier    13/06/14 19:51:49

  Modified:             ChangeLog junit-4.10.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.76                 dev-java/junit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	5 Feb 2013 06:48:08 -0000	1.75
+++ ChangeLog	14 Jun 2013 19:51:49 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/junit
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.75 2013/02/05 06:48:08 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.76 2013/06/14 19:51:49 aballier Exp $
+
+  14 Jun 2013; Alexis Ballier <aballier@gentoo.org> junit-4.10.ebuild:
+  keyword ~amd64-fbsd
 
   05 Feb 2013; Rick Farina <zerochaos@gentoo.org> junit-4.10.ebuild,
   junit-4.8.2-r1.ebuild:



1.7                  dev-java/junit/junit-4.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/junit/junit-4.10.ebuild?r1=1.6&r2=1.7

Index: junit-4.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- junit-4.10.ebuild	5 Feb 2013 06:48:08 -0000	1.6
+++ junit-4.10.ebuild	14 Jun 2013 19:51:49 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v 1.6 2013/02/05 06:48:08 zerochaos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.10.ebuild,v 1.7 2013/06/14 19:51:49 aballier Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -14,7 +14,7 @@
 HOMEPAGE="http://www.junit.org/"
 LICENSE="CPL-1.0"
 SLOT="4"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 CDEPEND="dev-java/hamcrest-core:0"





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-14 19:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-25 21:42 [gentoo-commits] gentoo-x86 commit in dev-java/junit: ChangeLog junit-4.10.ebuild Miroslav Sulc (fordfrog)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-30 12:14 Miroslav Sulc (fordfrog)
2013-06-14 19:51 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox