* [gentoo-commits] gentoo-x86 commit in dev-java/ant-core: ChangeLog ant-core-1.8.4.ebuild
@ 2012-05-30 8:18 Ralph Sennhauser (sera)
0 siblings, 0 replies; 5+ messages in thread
From: Ralph Sennhauser (sera) @ 2012-05-30 8:18 UTC (permalink / raw
To: gentoo-commits
sera 12/05/30 08:18:07
Modified: ChangeLog
Added: ant-core-1.8.4.ebuild
Log:
-p
(Portage version: 2.1.10.62/cvs/Linux x86_64)
Revision Changes Path
1.116 dev-java/ant-core/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.116&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.116&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?r1=1.115&r2=1.116
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -r1.115 -r1.116
--- ChangeLog 25 May 2012 11:20:50 -0000 1.115
+++ ChangeLog 30 May 2012 08:18:06 -0000 1.116
@@ -1,11 +1,16 @@
# ChangeLog for dev-java/ant-core
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.115 2012/05/25 11:20:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.116 2012/05/30 08:18:06 sera Exp $
# Ant-core blocks lower/older versions of ant-tasks,
# since it will not run when there is a version mismatch betwean the 2 packages
# Please unemerge ant-tasks when updating ant-core.
+*ant-core-1.8.4 (30 May 2012)
+
+ 30 May 2012; Ralph Sennhauser <sera@gentoo.org> +ant-core-1.8.4.ebuild:
+ Security bump. CVE-2012-2098 #417909
+
25 May 2012; Agostino Sarubbo <ago@gentoo.org> ant-core-1.8.2.ebuild:
Stable for amd64, wrt bug #417403
1.1 dev-java/ant-core/ant-core-1.8.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.1&content-type=text/plain
Index: ant-core-1.8.4.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v 1.1 2012/05/30 08:18:06 sera Exp $
EAPI="4"
# don't depend on itself
JAVA_ANT_DISABLE_ANT_CORE_DEP=true
# rewriting build.xml files for the testcases has no reason atm
JAVA_PKG_BSFIX_ALL=no
JAVA_PKG_IUSE="doc source"
inherit eutils java-pkg-2 java-ant-2 prefix versionator
MY_P="apache-ant-${PV}"
DESCRIPTION="Java-based build tool similar to 'make' that uses XML configuration files."
HOMEPAGE="http://ant.apache.org/"
SRC_URI="mirror://apache/ant/source/${MY_P}-src.tar.bz2
http://dev.gentoo.org/~sera/distfiles/ant-${PV}-gentoo.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=">=virtual/jdk-1.4
!dev-java/ant-tasks
!dev-java/ant-optional"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
EPATCH_FORCE="yes" EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches/"
eprefixify "${WORKDIR}/ant"
# use our split-ant build.xml
mv -f "${WORKDIR}/build.xml" . || die
# bug #196080
java-ant_bsfix_one build.xml
java-pkg-2_src_prepare
}
src_compile() {
export ANT_HOME=""
local bsyscp
# this ensures that when building ant with bootstrapped ant,
# only the source is used for resolving references, and not
# the classes in bootstrapped ant
# but jikes in kaffe has issues with this...
if ! java-pkg_current-vm-matches kaffe; then
bsyscp="-Dbuild.sysclasspath=ignore"
fi
CLASSPATH="$(java-config -t)" ./build.sh ${bsyscp} jars-core internal_dist \
$(use_doc javadocs) || die "build failed"
}
src_install() {
dodir /usr/share/ant/lib
for jar in ant.jar ant-bootstrap.jar ant-launcher.jar ; do
java-pkg_dojar build/lib/${jar}
dosym /usr/share/${PN}/lib/${jar} /usr/share/ant/lib/${jar}
done
dobin "${WORKDIR}/ant" || die "failed to install wrapper"
dodir /usr/share/${PN}/bin
for each in antRun antRun.pl runant.pl runant.py complete-ant-cmd.pl ; do
dobin "${S}/src/script/${each}"
dosym /usr/bin/${each} /usr/share/${PN}/bin/${each}
done
dosym /usr/share/${PN}/bin /usr/share/ant/bin
insinto /usr/share/${PN}
doins -r dist/etc
dosym /usr/share/${PN}/etc /usr/share/ant/etc
echo "ANT_HOME=\"${EPREFIX}/usr/share/ant\"" > "${T}/20ant"
doenvd "${T}/20ant" || die "failed to install env.d file"
dodoc NOTICE README WHATSNEW KEYS || die
if use doc; then
dohtml -r docs/*
java-pkg_dojavadoc --symlink manual/api build/javadocs
fi
use source && java-pkg_dosrc src/main/*
}
pkg_postinst() {
if [[ -n ${REPLACING_VERSIONS} ]]; then
if ! version_is_at_least 1.7.0 ${REPLACING_VERSIONS}; then
elog "The way of packaging ant in Gentoo has changed significantly since"
elog "the 1.7.0 version, For more information, please see:"
elog "http://www.gentoo.org/proj/en/java/ant-guide.xml"
fi
if ! version_is_at_least 1.7.1 ${REPLACING_VERSIONS}; then
elog "Since 1.7.1, the ant-tasks meta-ebuild has been removed and its USE"
elog "flags have been moved to dev-java/ant."
fi
fi
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/ant-core: ChangeLog ant-core-1.8.4.ebuild
@ 2012-05-30 17:06 Ralph Sennhauser (sera)
0 siblings, 0 replies; 5+ messages in thread
From: Ralph Sennhauser (sera) @ 2012-05-30 17:06 UTC (permalink / raw
To: gentoo-commits
sera 12/05/30 17:06:51
Modified: ChangeLog ant-core-1.8.4.ebuild
Log:
docs dir was renamed to manual. #418257
(Portage version: 2.1.10.62/cvs/Linux x86_64)
Revision Changes Path
1.117 dev-java/ant-core/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.117&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.117&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?r1=1.116&r2=1.117
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog 30 May 2012 08:18:06 -0000 1.116
+++ ChangeLog 30 May 2012 17:06:51 -0000 1.117
@@ -1,11 +1,14 @@
# ChangeLog for dev-java/ant-core
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.116 2012/05/30 08:18:06 sera Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.117 2012/05/30 17:06:51 sera Exp $
# Ant-core blocks lower/older versions of ant-tasks,
# since it will not run when there is a version mismatch betwean the 2 packages
# Please unemerge ant-tasks when updating ant-core.
+ 30 May 2012; Ralph Sennhauser <sera@gentoo.org> ant-core-1.8.4.ebuild:
+ docs dir was renamed to manual. #418257
+
*ant-core-1.8.4 (30 May 2012)
30 May 2012; Ralph Sennhauser <sera@gentoo.org> +ant-core-1.8.4.ebuild:
1.2 dev-java/ant-core/ant-core-1.8.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?r1=1.1&r2=1.2
Index: ant-core-1.8.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ant-core-1.8.4.ebuild 30 May 2012 08:18:06 -0000 1.1
+++ ant-core-1.8.4.ebuild 30 May 2012 17:06:51 -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/ant-core/ant-core-1.8.4.ebuild,v 1.1 2012/05/30 08:18:06 sera Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v 1.2 2012/05/30 17:06:51 sera Exp $
EAPI="4"
@@ -84,7 +84,7 @@
dodoc NOTICE README WHATSNEW KEYS || die
if use doc; then
- dohtml -r docs/*
+ dohtml -r manual/*
java-pkg_dojavadoc --symlink manual/api build/javadocs
fi
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/ant-core: ChangeLog ant-core-1.8.4.ebuild
@ 2012-06-11 9:33 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-11 9:33 UTC (permalink / raw
To: gentoo-commits
ago 12/06/11 09:33:07
Modified: ChangeLog ant-core-1.8.4.ebuild
Log:
Stable for amd64, wrt bug #417909
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.118 dev-java/ant-core/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?r1=1.117&r2=1.118
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog 30 May 2012 17:06:51 -0000 1.117
+++ ChangeLog 11 Jun 2012 09:33:07 -0000 1.118
@@ -1,11 +1,14 @@
# ChangeLog for dev-java/ant-core
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.117 2012/05/30 17:06:51 sera Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.118 2012/06/11 09:33:07 ago Exp $
# Ant-core blocks lower/older versions of ant-tasks,
# since it will not run when there is a version mismatch betwean the 2 packages
# Please unemerge ant-tasks when updating ant-core.
+ 11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> ant-core-1.8.4.ebuild:
+ Stable for amd64, wrt bug #417909
+
30 May 2012; Ralph Sennhauser <sera@gentoo.org> ant-core-1.8.4.ebuild:
docs dir was renamed to manual. #418257
1.3 dev-java/ant-core/ant-core-1.8.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?r1=1.2&r2=1.3
Index: ant-core-1.8.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ant-core-1.8.4.ebuild 30 May 2012 17:06:51 -0000 1.2
+++ ant-core-1.8.4.ebuild 11 Jun 2012 09:33:07 -0000 1.3
@@ -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/ant-core/ant-core-1.8.4.ebuild,v 1.2 2012/05/30 17:06:51 sera Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v 1.3 2012/06/11 09:33:07 ago Exp $
EAPI="4"
@@ -20,7 +20,7 @@
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=">=virtual/jdk-1.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/ant-core: ChangeLog ant-core-1.8.4.ebuild
@ 2012-06-11 13:04 Johannes Huber (johu)
0 siblings, 0 replies; 5+ messages in thread
From: Johannes Huber (johu) @ 2012-06-11 13:04 UTC (permalink / raw
To: gentoo-commits
johu 12/06/11 13:04:06
Modified: ChangeLog ant-core-1.8.4.ebuild
Log:
Stable for x86, wrt bug #417909
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.119 dev-java/ant-core/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?r1=1.118&r2=1.119
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog 11 Jun 2012 09:33:07 -0000 1.118
+++ ChangeLog 11 Jun 2012 13:04:06 -0000 1.119
@@ -1,11 +1,14 @@
# ChangeLog for dev-java/ant-core
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.118 2012/06/11 09:33:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.119 2012/06/11 13:04:06 johu Exp $
# Ant-core blocks lower/older versions of ant-tasks,
# since it will not run when there is a version mismatch betwean the 2 packages
# Please unemerge ant-tasks when updating ant-core.
+ 11 Jun 2012; Johannes Huber <johu@gentoo.org> ant-core-1.8.4.ebuild:
+ Stable for x86, wrt bug #417909
+
11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> ant-core-1.8.4.ebuild:
Stable for amd64, wrt bug #417909
1.4 dev-java/ant-core/ant-core-1.8.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?r1=1.3&r2=1.4
Index: ant-core-1.8.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ant-core-1.8.4.ebuild 11 Jun 2012 09:33:07 -0000 1.3
+++ ant-core-1.8.4.ebuild 11 Jun 2012 13:04:06 -0000 1.4
@@ -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/ant-core/ant-core-1.8.4.ebuild,v 1.3 2012/06/11 09:33:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v 1.4 2012/06/11 13:04:06 johu Exp $
EAPI="4"
@@ -20,7 +20,7 @@
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=">=virtual/jdk-1.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-java/ant-core: ChangeLog ant-core-1.8.4.ebuild
@ 2012-12-05 17:30 Agostino Sarubbo (ago)
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-05 17:30 UTC (permalink / raw
To: gentoo-commits
ago 12/12/05 17:30:25
Modified: ChangeLog ant-core-1.8.4.ebuild
Log:
Stable for ppc64, wrt bug #417909
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.124 dev-java/ant-core/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.124&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?rev=1.124&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ChangeLog?r1=1.123&r2=1.124
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog 23 Aug 2012 08:14:14 -0000 1.123
+++ ChangeLog 5 Dec 2012 17:30:25 -0000 1.124
@@ -1,6 +1,9 @@
# ChangeLog for dev-java/ant-core
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.123 2012/08/23 08:14:14 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ChangeLog,v 1.124 2012/12/05 17:30:25 ago Exp $
+
+ 05 Dec 2012; Agostino Sarubbo <ago@gentoo.org> ant-core-1.8.4.ebuild:
+ Stable for ppc64, wrt bug #417909
23 Aug 2012; Michael Weber <xmw@gentoo.org> ant-core-1.8.4.ebuild:
ppc stable (bug 417909).
1.6 dev-java/ant-core/ant-core-1.8.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild?r1=1.5&r2=1.6
Index: ant-core-1.8.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ant-core-1.8.4.ebuild 23 Aug 2012 08:14:14 -0000 1.5
+++ ant-core-1.8.4.ebuild 5 Dec 2012 17:30:25 -0000 1.6
@@ -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/ant-core/ant-core-1.8.4.ebuild,v 1.5 2012/08/23 08:14:14 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-core/ant-core-1.8.4.ebuild,v 1.6 2012/12/05 17:30:25 ago Exp $
EAPI="4"
@@ -20,7 +20,7 @@
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
DEPEND=">=virtual/jdk-1.4
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-12-05 17:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30 17:06 [gentoo-commits] gentoo-x86 commit in dev-java/ant-core: ChangeLog ant-core-1.8.4.ebuild Ralph Sennhauser (sera)
-- strict thread matches above, loose matches on Subject: below --
2012-12-05 17:30 Agostino Sarubbo (ago)
2012-06-11 13:04 Johannes Huber (johu)
2012-06-11 9:33 Agostino Sarubbo (ago)
2012-05-30 8:18 Ralph Sennhauser (sera)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox