public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.8.5.ebuild ChangeLog
@ 2012-01-28  9:43 Alistair Bush (ali_bush)
  0 siblings, 0 replies; 3+ messages in thread
From: Alistair Bush (ali_bush) @ 2012-01-28  9:43 UTC (permalink / raw
  To: gentoo-commits

ali_bush    12/01/28 09:43:04

  Modified:             ChangeLog
  Added:                groovy-1.8.5.ebuild
  Log:
  Version Bump.
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.50                 dev-java/groovy/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog	13 Aug 2011 07:46:02 -0000	1.49
+++ ChangeLog	28 Jan 2012 09:43:04 -0000	1.50
@@ -1,6 +1,12 @@
 # ChangeLog for dev-java/groovy
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.49 2011/08/13 07:46:02 xarthisius Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.50 2012/01/28 09:43:04 ali_bush Exp $
+
+*groovy-1.8.5 (28 Jan 2012)
+
+  28 Jan 2012; Alistair Bush <ali_bush@gentoo.org> +groovy-1.8.5.ebuild,
+  +files/groovy-1.8-build-pref-locking-fix.patch:
+  Version Bump to latest stable.
 
   13 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> groovy-1.7.5.ebuild:
   ppc stable wrt #348255



1.1                  dev-java/groovy/groovy-1.8.5.ebuild

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

Index: groovy-1.8.5.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v 1.1 2012/01/28 09:43:04 ali_bush Exp $

# Groovy's build system is Ant based, but they use Maven for fetching the dependencies.
# We just have to remove the fetch dependencies target, and then we can use Ant for this ebuild.

# We currently do not build the embeddable jar (which is created using JarJar).
# We could provide that via an USE flag.
# We also don't use automatic build rewriting as there seems to be already some level of support
# in the upstream build system

# TODO: Install all 3 documentation packages. Currently only the Groovy GDK documentation is installed
# as our java-pkg_dojavadoc function does not support multiple Javadoc installations.

EAPI="3"
WANT_ANT_TASKS="ant-antlr"
JAVA_PKG_IUSE="doc source"

inherit base versionator java-pkg-2 java-ant-2

MY_PV=${PV/_rc/-RC-}
MY_P="${PN}-${MY_PV}"

DESCRIPTION="Groovy is a high-level dynamic language for the JVM"
HOMEPAGE="http://groovy.codehaus.org/"

SRC_URI="http://dist.groovy.codehaus.org/distributions/${PN}-src-${PV}.zip"
LICENSE="codehaus-groovy"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="test"
RESTRICT="test"

CDEPEND=">=dev-java/asm-3.2
	>=dev-java/ant-core-1.8.0
	>=dev-java/junit-4.6
	dev-java/antlr:0
	dev-java/xstream
	dev-java/jline
	dev-java/commons-cli
	dev-java/jansi
	java-virtuals/servlet-api:2.4
	>=dev-java/bsf-2.4
	java-virtuals/jmx"

RDEPEND=">=virtual/jre-1.5
	${CDEPEND}"

DEPEND=">=virtual/jdk-1.5
	dev-java/ant-ivy:2
	doc? (
		dev-java/qdox:1.12
		dev-java/commons-logging
	)
	test? (
		dev-java/jmock
		dev-java/xmlunit
		dev-db/hsqldb
		dev-java/commons-logging
		dev-java/ant-junit
		dev-java/ant-trax
	)
	${CDEPEND}"

S="${WORKDIR}/${MY_P}"

PATCHES=( "${FILESDIR}/${PN}-1.8-build-pref-locking-fix.patch" )

JAVA_PKG_BSFIX=""

src_prepare() {
	base_src_prepare
	sed -i -e 's/fullQualifiedName/fullyQualifiedName/g' \
		src/tools/org/codehaus/groovy/tools/DocGenerator.groovy

	rm -rf bootstrap
	# security directory is needed for tests, but they currently don't pass
	#rm -rf security
	mkdir -p target/lib && cd target/lib
	mkdir compile && mkdir runtime && mkdir tools
	cd compile

	java-pkg_jar-from commons-cli-1,ant-core,antlr,asm-3,xstream,jansi
	java-pkg_jar-from jline,junit,servlet-api-2.4,bsf-2.3
	java-pkg_jar-from --virtual jmx
	java-pkg_jar-from --build-only ant-ivy:2
	use doc && java-pkg_jar-from --build-only qdox-1.12,ant-antlr,commons-logging
}

src_compile() {
	eant -DskipTests="true" -DruntimeLibDirectory="target/lib/compile" \
		-DtoolsLibDirectory="target/lib/compile" -DskipFetch="true" -DskipEmbeddable="true"

	use doc && ANT_TASKS="ant-antlr" ANT_OPTS="-Duser.home=${T}" eant -Dno.grammars="true" -DruntimeLibDirectory="target/lib/compile" \
	 -DtoolsLibDirectory="target/lib/compile" -DtestLibDirectory="target/lib/compile" -DskipFetch="true" doc
}

src_test() {
	cd "${S}/target/lib" && mkdir test && mkdir extras && cd compile

	java-pkg_jar-from --build-only ant-junit,jmock-1.0,xmlunit-1,hsqldb,commons-logging,cglib-2.1

	cd "${S}"
	ANT_TASKS="ant-junit ant-antlr ant-trax" ANT_OPTS="-Duser.home=${T}" eant \
		-DruntimeLibDirectory="target/lib/compile" -DtestLibDirectory="target/lib/compile" -DskipFetch="true" test
}

src_install() {
	java-pkg_newjar "target/dist/${PN}.jar"
	use doc && java-pkg_dojavadoc "target/html/groovy-jdk/"

	# FIXME: install those two later
	#
	#use doc && java-pkg_dojavadoc "target/html/api/"
	#use doc && java-pkg_dojavadoc "target/html/gapi/"

	use source && java-pkg_dosrc "src/main/groovy" "src/main/org"
	java-pkg_dolauncher "groovyc" --main org.codehaus.groovy.tools.FileSystemCompiler
	java-pkg_dolauncher "groovy" --main groovy.ui.GroovyMain
	java-pkg_dolauncher "groovysh" --main groovy.ui.InteractiveShell
	java-pkg_dolauncher "groovyConsole" --main groovy.ui.Console
	java-pkg_dolauncher "grape" --main org.codehaus.groovy.tools.GrapeMain
}






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

* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.8.5.ebuild ChangeLog
@ 2012-12-10 17:31 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-10 17:31 UTC (permalink / raw
  To: gentoo-commits

ago         12/12/10 17:31:19

  Modified:             groovy-1.8.5.ebuild ChangeLog
  Log:
  Add ~ppc, wrt bug #401145
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  dev-java/groovy/groovy-1.8.5.ebuild

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

Index: groovy-1.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- groovy-1.8.5.ebuild	28 Jan 2012 09:43:04 -0000	1.1
+++ groovy-1.8.5.ebuild	10 Dec 2012 17:31:18 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v 1.1 2012/01/28 09:43:04 ali_bush Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v 1.2 2012/12/10 17:31:18 ago Exp $
 
 # Groovy's build system is Ant based, but they use Maven for fetching the dependencies.
 # We just have to remove the fetch dependencies target, and then we can use Ant for this ebuild.
@@ -28,7 +28,7 @@
 SRC_URI="http://dist.groovy.codehaus.org/distributions/${PN}-src-${PV}.zip"
 LICENSE="codehaus-groovy"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="test"
 RESTRICT="test"
 



1.51                 dev-java/groovy/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	28 Jan 2012 09:43:04 -0000	1.50
+++ ChangeLog	10 Dec 2012 17:31:18 -0000	1.51
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/groovy
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.50 2012/01/28 09:43:04 ali_bush Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.51 2012/12/10 17:31:18 ago Exp $
+
+  10 Dec 2012; Agostino Sarubbo <ago@gentoo.org> groovy-1.8.5.ebuild:
+  Add ~ppc, wrt bug #401145
 
 *groovy-1.8.5 (28 Jan 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.8.5.ebuild ChangeLog
@ 2014-01-08 17:46 Tom Wijsman (tomwij)
  0 siblings, 0 replies; 3+ messages in thread
From: Tom Wijsman (tomwij) @ 2014-01-08 17:46 UTC (permalink / raw
  To: gentoo-commits

tomwij      14/01/08 17:46:48

  Modified:             groovy-1.8.5.ebuild ChangeLog
  Log:
  Fixed up Copyright year.
  
  (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)

Revision  Changes    Path
1.3                  dev-java/groovy/groovy-1.8.5.ebuild

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

Index: groovy-1.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- groovy-1.8.5.ebuild	10 Dec 2012 17:31:18 -0000	1.2
+++ groovy-1.8.5.ebuild	8 Jan 2014 17:46:48 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v 1.2 2012/12/10 17:31:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5.ebuild,v 1.3 2014/01/08 17:46:48 tomwij Exp $
 
 # Groovy's build system is Ant based, but they use Maven for fetching the dependencies.
 # We just have to remove the fetch dependencies target, and then we can use Ant for this ebuild.



1.54                 dev-java/groovy/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	23 Oct 2013 18:49:46 -0000	1.53
+++ ChangeLog	8 Jan 2014 17:46:48 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/groovy
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.53 2013/10/23 18:49:46 tomwij Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.54 2014/01/08 17:46:48 tomwij Exp $
+
+  08 Jan 2014; Tom Wijsman <TomWij@gentoo.org> groovy-1.8.5.ebuild:
+  Fixed up Copyright year.
 
 *groovy-1.8.5-r1 (23 Oct 2013)
 





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

end of thread, other threads:[~2014-01-08 17:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10 17:31 [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.8.5.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-08 17:46 Tom Wijsman (tomwij)
2012-01-28  9:43 Alistair Bush (ali_bush)

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