diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2010-06-26 12:33:36 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2010-06-26 12:33:36 +0000 |
commit | b90300e11318499661b55caf49446d2e01dfa08d (patch) | |
tree | 35d344de3691b3c7f6fd13761e82e1f37dad32c5 /dev-java | |
parent | ppc stable #322681 (diff) | |
download | gentoo-2-b90300e11318499661b55caf49446d2e01dfa08d.tar.gz gentoo-2-b90300e11318499661b55caf49446d2e01dfa08d.tar.bz2 gentoo-2-b90300e11318499661b55caf49446d2e01dfa08d.zip |
Remove old versions.
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/icu4j/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/icu4j/icu4j-4.2.1.ebuild | 76 | ||||
-rw-r--r-- | dev-java/icu4j/icu4j-4.2.ebuild | 76 | ||||
-rw-r--r-- | dev-java/icu4j/icu4j-4.4.ebuild | 73 |
4 files changed, 5 insertions, 226 deletions
diff --git a/dev-java/icu4j/ChangeLog b/dev-java/icu4j/ChangeLog index c4e3dbbf9a57..e721a1590f49 100644 --- a/dev-java/icu4j/ChangeLog +++ b/dev-java/icu4j/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/icu4j # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/icu4j/ChangeLog,v 1.46 2010/06/15 08:19:01 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/icu4j/ChangeLog,v 1.47 2010/06/26 12:33:36 betelgeuse Exp $ + + 26 Jun 2010; Petteri Räty <betelgeuse@gentoo.org> -icu4j-4.2.ebuild, + -icu4j-4.2.1.ebuild, -icu4j-4.4.ebuild: + Remove old versions. 15 Jun 2010; Christoph Mende <angelos@gentoo.org> icu4j-4.4.1.ebuild: Stable on amd64 wrt bug #321955 diff --git a/dev-java/icu4j/icu4j-4.2.1.ebuild b/dev-java/icu4j/icu4j-4.2.1.ebuild deleted file mode 100644 index ef9a55f46f70..000000000000 --- a/dev-java/icu4j/icu4j-4.2.1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/icu4j/icu4j-4.2.1.ebuild,v 1.1 2010/04/14 05:29:45 caster Exp $ - -EAPI=2 - -# We currently download the Javadoc documentation. -# It could optionally be built using the Ant build file. -# testdata.jar and icudata.jar do not contain *.class files but *.res files -# These *.res data files are needed to built the final jar -# They do not need to be installed however as they will already be present in icu4j.jar - -JAVA_PKG_IUSE="doc test source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A set of Java libraries providing Unicode and Globalization support." -MY_PV=${PV//./_} - -SRC_URI="http://download.icu-project.org/files/${PN}/${PV}/${PN}-${MY_PV}-src.jar - doc? ( http://download.icu-project.org/files/${PN}/${PV}/${PN}-${MY_PV}-docs.jar )" - -HOMEPAGE="http://www.icu-project.org/" -LICENSE="icu" -SLOT="4.2" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="" - -RDEPEND=">=virtual/jre-1.4" - -# there's some test that limit its run to 10s and fails -RESTRICT="test" - -# Tests only work with JDK-1.6, severe out of memory problems appear with 1.5 -DEPEND="test? ( =virtual/jdk-1.6* ) - !test? ( >=virtual/jdk-1.4 ) - app-arch/unzip" - -RESTRICT="ia64? ( test ) - x86-fbsd? ( test )" -JAVA_PKG_WANT_SOURCE="1.4" -JAVA_PKG_WANT_TARGET="1.4" - -S="${WORKDIR}" - -src_unpack() { - jar -xf "${DISTDIR}/${PN}-${MY_PV}-src.jar" || die "Failed to unpack" - - if use doc; then - mkdir docs; cd docs - jar -xf "${DISTDIR}/${PN}-${MY_PV}-docs.jar" || die "Failed to unpack docs" - fi -} - -src_compile() { - # Classes extending CharsetICU not implementing Comparable - # Breaks with ecj on jdk 1.5+, javac doesn't mind - Sun's hack? - # Restricting to javac (didn't even care to try jikes) is better - # than forcing 1.4 - java-pkg_force-compiler javac - eant jar || die "Compile failed" -} - -src_install() { - java-pkg_dojar "${PN}.jar" - java-pkg_dojar "${PN}-charsets.jar" - - use doc && dohtml -r readme.html docs/* - use source && java-pkg_dosrc src/* -} - -src_test() { - # bug #299082 - these tests fail with icedtea, assume too much about double<>string conversions - sed -i '/DiagBigDecimal/d' src/com/ibm/icu/dev/test/TestAll.java || die - eant check -} diff --git a/dev-java/icu4j/icu4j-4.2.ebuild b/dev-java/icu4j/icu4j-4.2.ebuild deleted file mode 100644 index a87624ea299a..000000000000 --- a/dev-java/icu4j/icu4j-4.2.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/icu4j/icu4j-4.2.ebuild,v 1.3 2010/04/12 22:21:05 caster Exp $ - -EAPI=2 - -# We currently download the Javadoc documentation. -# It could optionally be built using the Ant build file. -# testdata.jar and icudata.jar do not contain *.class files but *.res files -# These *.res data files are needed to built the final jar -# They do not need to be installed however as they will already be present in icu4j.jar - -JAVA_PKG_IUSE="doc test source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A set of Java libraries providing Unicode and Globalization support." -MY_PV=${PV//./_} - -SRC_URI="http://download.icu-project.org/files/${PN}/${PV}/${PN}-${MY_PV}-src.jar - doc? ( http://download.icu-project.org/files/${PN}/${PV}/${PN}-${MY_PV}-docs.jar )" - -HOMEPAGE="http://www.icu-project.org/" -LICENSE="icu" -SLOT="4.2" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="" - -RDEPEND=">=virtual/jre-1.4" - -# there's some test that limit its run to 10s and fails -RESTRICT="test" - -# Tests only work with JDK-1.6, severe out of memory problems appear with 1.5 -DEPEND="test? ( =virtual/jdk-1.6* ) - !test? ( >=virtual/jdk-1.4 ) - app-arch/unzip" - -RESTRICT="ia64? ( test ) - x86-fbsd? ( test )" -JAVA_PKG_WANT_SOURCE="1.4" -JAVA_PKG_WANT_TARGET="1.4" - -S="${WORKDIR}" - -src_unpack() { - jar -xf "${DISTDIR}/${PN}-${MY_PV}-src.jar" || die "Failed to unpack" - - if use doc; then - mkdir docs; cd docs - jar -xf "${DISTDIR}/${PN}-${MY_PV}-docs.jar" || die "Failed to unpack docs" - fi -} - -src_compile() { - # Classes extending CharsetICU not implementing Comparable - # Breaks with ecj on jdk 1.5+, javac doesn't mind - Sun's hack? - # Restricting to javac (didn't even care to try jikes) is better - # than forcing 1.4 - java-pkg_force-compiler javac - eant jar || die "Compile failed" -} - -src_install() { - java-pkg_dojar "${PN}.jar" - java-pkg_dojar "${PN}-charsets.jar" - - use doc && dohtml -r readme.html docs/* - use source && java-pkg_dosrc src/* -} - -src_test() { - # bug #299082 - these tests fail with icedtea, assume too much about double<>string conversions - sed -i '/DiagBigDecimal/d' src/com/ibm/icu/dev/test/TestAll.java || die - eant check -} diff --git a/dev-java/icu4j/icu4j-4.4.ebuild b/dev-java/icu4j/icu4j-4.4.ebuild deleted file mode 100644 index 86978ccd1340..000000000000 --- a/dev-java/icu4j/icu4j-4.4.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/icu4j/icu4j-4.4.ebuild,v 1.2 2010/04/24 17:06:32 grobian Exp $ - -EAPI=2 - -# We currently download the Javadoc documentation. -# It could optionally be built using the Ant build file. -# testdata.jar and icudata.jar do not contain *.class files but *.res files -# These *.res data files are needed to built the final jar -# They do not need to be installed however as they will already be present in icu4j.jar - -JAVA_PKG_IUSE="doc test source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="A set of Java libraries providing Unicode and Globalization support." -MY_PV=${PV//./_} - -SRC_URI="http://download.icu-project.org/files/${PN}/${PV}/${PN}-${MY_PV}-src.jar - doc? ( http://download.icu-project.org/files/${PN}/${PV}/${PN}-${MY_PV}-docs.jar )" - -HOMEPAGE="http://www.icu-project.org/" -LICENSE="icu" -SLOT="4.4" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="" - -# Tests only work with JDK-1.6, severe out of memory problems appear with 1.5 -DEPEND="test? ( =virtual/jdk-1.6* ) - !test? ( >=virtual/jdk-1.5 )" -RDEPEND=">=virtual/jre-1.5" - -RESTRICT="ia64? ( test )" - -JAVA_PKG_WANT_SOURCE="1.5" -JAVA_PKG_WANT_TARGET="1.5" - -S="${WORKDIR}" - -src_unpack() { - jar -xf "${DISTDIR}/${PN}-${MY_PV}-src.jar" || die "Failed to unpack" - - if use doc; then - mkdir docs; cd docs - jar -xf "${DISTDIR}/${PN}-${MY_PV}-docs.jar" || die "Failed to unpack docs" - fi -} - -src_compile() { - # Classes extending CharsetICU not implementing Comparable - # Breaks with ecj on jdk 1.5+, javac doesn't mind - Sun's hack? - # Restricting to javac (didn't even care to try jikes) is better - # than forcing 1.4 - java-pkg_force-compiler javac - eant jar || die "Compile failed" -} - -src_install() { - java-pkg_dojar "${PN}.jar" - java-pkg_dojar "${PN}-charsets.jar" - java-pkg_dojar "${PN}-localespi.jar" - - dohtml readme.html - use doc && java-pkg_dojavadoc docs - use source && java-pkg_dosrc main/classes/*/src/com -} - -src_test() { - # bug #299082 - these tests fail with icedtea, assume too much about double<>string conversions - sed -i '/DiagBigDecimal/d' main/tests/core/src/com/ibm/icu/dev/test/TestAllCore.java || die - eant check -} |