* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.7.5.ebuild ChangeLog
@ 2010-10-26 11:16 Jean-Noel Rivasseau (elvanor)
0 siblings, 0 replies; 4+ messages in thread
From: Jean-Noel Rivasseau (elvanor) @ 2010-10-26 11:16 UTC (permalink / raw
To: gentoo-commits
elvanor 10/10/26 11:16:14
Modified: ChangeLog
Added: groovy-1.7.5.ebuild
Log:
Bug #320835.
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.45 dev-java/groovy/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?r1=1.44&r2=1.45
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog 17 Oct 2010 12:31:30 -0000 1.44
+++ ChangeLog 26 Oct 2010 11:16:13 -0000 1.45
@@ -1,6 +1,11 @@
# ChangeLog for dev-java/groovy
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.44 2010/10/17 12:31:30 caster Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.45 2010/10/26 11:16:13 elvanor Exp $
+
+*groovy-1.7.5 (26 Oct 2010)
+
+ 26 Oct 2010; <elvanor@gentoo.org> +groovy-1.7.5.ebuild:
+ Version bump (#320835).
17 Oct 2010; Vlastimil Babka <caster@gentoo.org> -groovy-1.6.5.ebuild,
-groovy-1.6.7.ebuild:
1.1 dev-java/groovy/groovy-1.7.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.1&content-type=text/plain
Index: groovy-1.7.5.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v 1.1 2010/10/26 11:16:13 elvanor 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 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 ~ppc ~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
dev-java/servletapi:2.4
>=dev-java/bsf-2.4
java-virtuals/jmx"
RDEPEND=">=virtual/jre-1.5
!<dev-java/groovy-1.6.3
${CDEPEND}"
DEPEND=">=virtual/jdk-1.5
dev-java/ant-ivy:2
doc? (
dev-java/qdox
)
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}"
JAVA_PKG_BSFIX=""
src_prepare() {
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,servletapi-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.6,ant-antlr
}
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] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.7.5.ebuild ChangeLog
@ 2010-12-15 12:33 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-12-15 12:33 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 10/12/15 12:33:14
Modified: groovy-1.7.5.ebuild ChangeLog
Log:
x86 stable wrt bug #348255
(Portage version: 2.1.9.24/cvs/Linux i686)
Revision Changes Path
1.2 dev-java/groovy/groovy-1.7.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?r1=1.1&r2=1.2
Index: groovy-1.7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- groovy-1.7.5.ebuild 26 Oct 2010 11:16:13 -0000 1.1
+++ groovy-1.7.5.ebuild 15 Dec 2010 12:33:14 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v 1.1 2010/10/26 11:16:13 elvanor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v 1.2 2010/12/15 12:33:14 phajdan.jr 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 ~ppc ~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.46 dev-java/groovy/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 26 Oct 2010 11:16:13 -0000 1.45
+++ ChangeLog 15 Dec 2010 12:33:14 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for dev-java/groovy
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.45 2010/10/26 11:16:13 elvanor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.46 2010/12/15 12:33:14 phajdan.jr Exp $
+
+ 15 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> groovy-1.7.5.ebuild:
+ x86 stable wrt bug #348255
*groovy-1.7.5 (26 Oct 2010)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.7.5.ebuild ChangeLog
@ 2010-12-29 18:38 Markos Chandras (hwoarang)
0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-12-29 18:38 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/12/29 18:38:39
Modified: groovy-1.7.5.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #348255
(Portage version: 2.1.9.26/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-java/groovy/groovy-1.7.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?r1=1.2&r2=1.3
Index: groovy-1.7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- groovy-1.7.5.ebuild 15 Dec 2010 12:33:14 -0000 1.2
+++ groovy-1.7.5.ebuild 29 Dec 2010 18:38:39 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v 1.2 2010/12/15 12:33:14 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v 1.3 2010/12/29 18:38:39 hwoarang 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 ~ppc 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.47 dev-java/groovy/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 15 Dec 2010 12:33:14 -0000 1.46
+++ ChangeLog 29 Dec 2010 18:38:39 -0000 1.47
@@ -1,6 +1,9 @@
# ChangeLog for dev-java/groovy
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.46 2010/12/15 12:33:14 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.47 2010/12/29 18:38:39 hwoarang Exp $
+
+ 29 Dec 2010; Markos Chandras <hwoarang@gentoo.org> groovy-1.7.5.ebuild:
+ Stable on amd64 wrt bug #348255
15 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> groovy-1.7.5.ebuild:
x86 stable wrt bug #348255
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.7.5.ebuild ChangeLog
@ 2011-08-13 7:46 Kacper Kowalik (xarthisius)
0 siblings, 0 replies; 4+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-08-13 7:46 UTC (permalink / raw
To: gentoo-commits
xarthisius 11/08/13 07:46:02
Modified: groovy-1.7.5.ebuild ChangeLog
Log:
ppc stable wrt #348255
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Revision Changes Path
1.5 dev-java/groovy/groovy-1.7.5.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild?r1=1.4&r2=1.5
Index: groovy-1.7.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- groovy-1.7.5.ebuild 21 Jul 2011 16:26:27 -0000 1.4
+++ groovy-1.7.5.ebuild 13 Aug 2011 07:46:02 -0000 1.5
@@ -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/groovy/groovy-1.7.5.ebuild,v 1.4 2011/07/21 16:26:27 elvanor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.7.5.ebuild,v 1.5 2011/08/13 07:46:02 xarthisius 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 ~ppc 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.49 dev-java/groovy/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/groovy/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 21 Jul 2011 16:26:27 -0000 1.48
+++ ChangeLog 13 Aug 2011 07:46:02 -0000 1.49
@@ -1,6 +1,9 @@
# 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.48 2011/07/21 16:26:27 elvanor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/ChangeLog,v 1.49 2011/08/13 07:46:02 xarthisius Exp $
+
+ 13 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> groovy-1.7.5.ebuild:
+ ppc stable wrt #348255
*groovy-1.7.10 (21 Jul 2011)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-08-13 7:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-15 12:33 [gentoo-commits] gentoo-x86 commit in dev-java/groovy: groovy-1.7.5.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
-- strict thread matches above, loose matches on Subject: below --
2011-08-13 7:46 Kacper Kowalik (xarthisius)
2010-12-29 18:38 Markos Chandras (hwoarang)
2010-10-26 11:16 Jean-Noel Rivasseau (elvanor)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox