public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog
@ 2013-06-15 23:20 Tom Wijsman (tomwij)
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Wijsman (tomwij) @ 2013-06-15 23:20 UTC (permalink / raw
  To: gentoo-commits

tomwij      13/06/15 23:20:39

  Modified:             ChangeLog
  Added:                junit-4.11.ebuild
  Log:
  Version bump to 4.11, needed for newer version of reverse dependency ant-junit.
  
  (Portage version: 2.1.12.4/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)

Revision  Changes    Path
1.77                 dev-java/junit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	14 Jun 2013 19:51:49 -0000	1.76
+++ ChangeLog	15 Jun 2013 23:20:39 -0000	1.77
@@ -1,6 +1,13 @@
 # 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.76 2013/06/14 19:51:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.77 2013/06/15 23:20:39 tomwij Exp $
+
+*junit-4.11 (15 Jun 2013)
+
+  15 Jun 2013; Tom Wijsman <TomWij@gentoo.org>
+  +files/junit-4.11-do-not-unpack-hamcrest-sources.patch, +junit-4.11.ebuild:
+  Version bump to 4.11, needed for newer version of reverse dependency ant-
+  junit.
 
   14 Jun 2013; Alexis Ballier <aballier@gentoo.org> junit-4.10.ebuild:
   keyword ~amd64-fbsd



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

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

Index: junit-4.11.ebuild
===================================================================
# 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.11.ebuild,v 1.1 2013/06/15 23:20:39 tomwij Exp $

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

EAPI="5"

JAVA_PKG_IUSE="doc examples source test"

inherit java-pkg-2 java-ant-2

DESCRIPTION="Simple framework to write repeatable tests"
SRC_URI="mirror://github/${PN}-team/${PN}/${PN}${PV}.zip"
HOMEPAGE="http://www.junit.org/"

LICENSE="CPL-1.0"
SLOT="4"

KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux \
	~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris \
	~x86-solaris"

CDEPEND="dev-java/hamcrest-core:1.3"

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 samples-and-tests"

src_unpack() {
	default

	# Unpack the 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 the Gentoo manifest to the working directory.
	cp "${FILESDIR}/gentoo-manifest.mf" "${S}" || die
}

java_prepare() {
	epatch "${FILESDIR}"/${P}-do-not-unpack-hamcrest-sources.patch

	mkdir lib || die
	java-pkg_jar-from --into lib hamcrest-core{-1.3,.jar,-1.3.jar}

	# 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-1.3)"

	# 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-1.3):"${S}"/target/main

	ejavac -classpath ${cp} \
		-d classes $(find org/junit/internal -name "*.java")
	ejavac -classpath ${cp}:"${S}/classes" \
		-d classes $(find junit/tests org/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}-SNAPSHOT/${PN}-dep-${PV}-SNAPSHOT.jar
	dodoc README.html doc/ReleaseNotes${PV}.txt

	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}-SNAPSHOT/javadoc
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog
@ 2013-10-20  9:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20  9:44 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 09:44:52

  Modified:             junit-4.11.ebuild ChangeLog
  Log:
  Correct the keyword declaration
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-java/junit/junit-4.11.ebuild

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

Index: junit-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- junit-4.11.ebuild	27 Jun 2013 22:09:59 -0000	1.2
+++ junit-4.11.ebuild	20 Oct 2013 09:44:52 -0000	1.3
@@ -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.11.ebuild,v 1.2 2013/06/27 22:09:59 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v 1.3 2013/10/20 09:44:52 ago Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -17,9 +17,7 @@
 LICENSE="CPL-1.0"
 SLOT="4"
 
-KEYWORDS="~amd64 ~ppc ~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"
+KEYWORDS="~amd64 ~ppc ~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"
 
 CDEPEND="dev-java/hamcrest-core:1.3"
 



1.80                 dev-java/junit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	27 Jun 2013 22:09:59 -0000	1.79
+++ ChangeLog	20 Oct 2013 09:44:52 -0000	1.80
@@ -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.79 2013/06/27 22:09:59 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.80 2013/10/20 09:44:52 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
+  Correct the keyword declaration
 
   27 Jun 2013; Alexis Ballier <aballier@gentoo.org> junit-4.11.ebuild:
   keyword ~amd64-fbsd, bug #473430





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

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog
@ 2013-10-20 11:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20 11:12 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 11:12:52

  Modified:             junit-4.11.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #476958
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-java/junit/junit-4.11.ebuild

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

Index: junit-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- junit-4.11.ebuild	20 Oct 2013 09:44:52 -0000	1.3
+++ junit-4.11.ebuild	20 Oct 2013 11:12:52 -0000	1.4
@@ -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.11.ebuild,v 1.3 2013/10/20 09:44:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v 1.4 2013/10/20 11:12:52 ago Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -17,7 +17,7 @@
 LICENSE="CPL-1.0"
 SLOT="4"
 
-KEYWORDS="~amd64 ~ppc ~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"
+KEYWORDS="amd64 ~ppc ~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"
 
 CDEPEND="dev-java/hamcrest-core:1.3"
 



1.81                 dev-java/junit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	20 Oct 2013 09:44:52 -0000	1.80
+++ ChangeLog	20 Oct 2013 11:12:52 -0000	1.81
@@ -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.80 2013/10/20 09:44:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.81 2013/10/20 11:12:52 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
+  Stable for amd64, wrt bug #476958
 
   20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
   Correct the keyword declaration





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

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog
@ 2013-10-20 11:15 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20 11:15 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 11:15:48

  Modified:             junit-4.11.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #476958
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-java/junit/junit-4.11.ebuild

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

Index: junit-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- junit-4.11.ebuild	20 Oct 2013 11:12:52 -0000	1.4
+++ junit-4.11.ebuild	20 Oct 2013 11:15:48 -0000	1.5
@@ -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.11.ebuild,v 1.4 2013/10/20 11:12:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v 1.5 2013/10/20 11:15:48 ago Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -17,7 +17,7 @@
 LICENSE="CPL-1.0"
 SLOT="4"
 
-KEYWORDS="amd64 ~ppc ~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"
+KEYWORDS="amd64 ~ppc 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"
 
 CDEPEND="dev-java/hamcrest-core:1.3"
 



1.82                 dev-java/junit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	20 Oct 2013 11:12:52 -0000	1.81
+++ ChangeLog	20 Oct 2013 11:15:48 -0000	1.82
@@ -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.81 2013/10/20 11:12:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.82 2013/10/20 11:15:48 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
+  Stable for x86, wrt bug #476958
 
   20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
   Stable for amd64, wrt bug #476958





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

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog
@ 2013-10-20 15:12 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20 15:12 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 15:12:56

  Modified:             junit-4.11.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #476958
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  dev-java/junit/junit-4.11.ebuild

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

Index: junit-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- junit-4.11.ebuild	20 Oct 2013 11:15:48 -0000	1.5
+++ junit-4.11.ebuild	20 Oct 2013 15:12:56 -0000	1.6
@@ -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.11.ebuild,v 1.5 2013/10/20 11:15:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v 1.6 2013/10/20 15:12:56 ago Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -17,7 +17,7 @@
 LICENSE="CPL-1.0"
 SLOT="4"
 
-KEYWORDS="amd64 ~ppc 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"
+KEYWORDS="amd64 ppc 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"
 
 CDEPEND="dev-java/hamcrest-core:1.3"
 



1.83                 dev-java/junit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	20 Oct 2013 11:15:48 -0000	1.82
+++ ChangeLog	20 Oct 2013 15:12:56 -0000	1.83
@@ -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.82 2013/10/20 11:15:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.83 2013/10/20 15:12:56 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
+  Stable for ppc, wrt bug #476958
 
   20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
   Stable for x86, wrt bug #476958





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

* [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog
@ 2013-10-20 16:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-10-20 16:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/10/20 16:32:37

  Modified:             junit-4.11.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #476958
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-java/junit/junit-4.11.ebuild

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

Index: junit-4.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- junit-4.11.ebuild	20 Oct 2013 15:12:56 -0000	1.6
+++ junit-4.11.ebuild	20 Oct 2013 16:32:37 -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.11.ebuild,v 1.6 2013/10/20 15:12:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/junit-4.11.ebuild,v 1.7 2013/10/20 16:32:37 ago Exp $
 
 # WARNING: JUNIT.JAR IS _NOT_ SYMLINKED TO ANT-CORE LIB FOLDER AS JUNIT3 IS
 
@@ -17,7 +17,7 @@
 LICENSE="CPL-1.0"
 SLOT="4"
 
-KEYWORDS="amd64 ppc 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"
+KEYWORDS="amd64 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"
 
 CDEPEND="dev-java/hamcrest-core:1.3"
 



1.84                 dev-java/junit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	20 Oct 2013 15:12:56 -0000	1.83
+++ ChangeLog	20 Oct 2013 16:32:37 -0000	1.84
@@ -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.83 2013/10/20 15:12:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/junit/ChangeLog,v 1.84 2013/10/20 16:32:37 ago Exp $
+
+  20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
+  Stable for ppc64, wrt bug #476958
 
   20 Oct 2013; Agostino Sarubbo <ago@gentoo.org> junit-4.11.ebuild:
   Stable for ppc, wrt bug #476958





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

end of thread, other threads:[~2013-10-20 16:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-20 15:12 [gentoo-commits] gentoo-x86 commit in dev-java/junit: junit-4.11.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-10-20 16:32 Agostino Sarubbo (ago)
2013-10-20 11:15 Agostino Sarubbo (ago)
2013-10-20 11:12 Agostino Sarubbo (ago)
2013-10-20  9:44 Agostino Sarubbo (ago)
2013-06-15 23:20 Tom Wijsman (tomwij)

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