diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-05-03 12:40:24 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-05-03 12:40:24 +0000 |
commit | a96d01f9cf5b79ac0b6f25989d60aeca753aad41 (patch) | |
tree | 75a68a50980fb6df2da78e2f2c4e474b16b0e9b4 /dev-java/fastutil | |
parent | x86 stable wrt #176389 (diff) | |
download | gentoo-2-a96d01f9cf5b79ac0b6f25989d60aeca753aad41.tar.gz gentoo-2-a96d01f9cf5b79ac0b6f25989d60aeca753aad41.tar.bz2 gentoo-2-a96d01f9cf5b79ac0b6f25989d60aeca753aad41.zip |
Migrate fastutil-4.3.1, some QA fixes.
(Portage version: 2.1.2.5)
Diffstat (limited to 'dev-java/fastutil')
-rw-r--r-- | dev-java/fastutil/ChangeLog | 9 | ||||
-rw-r--r-- | dev-java/fastutil/fastutil-4.3.1-r1.ebuild | 36 | ||||
-rw-r--r-- | dev-java/fastutil/fastutil-4.4.2-r1.ebuild | 13 | ||||
-rw-r--r-- | dev-java/fastutil/fastutil-5.0.5.ebuild | 12 | ||||
-rw-r--r-- | dev-java/fastutil/files/digest-fastutil-4.3.1-r1 | 3 | ||||
-rw-r--r-- | dev-java/fastutil/metadata.xml | 2 |
6 files changed, 60 insertions, 15 deletions
diff --git a/dev-java/fastutil/ChangeLog b/dev-java/fastutil/ChangeLog index 0ca03b8734d2..68fe8d90f8ed 100644 --- a/dev-java/fastutil/ChangeLog +++ b/dev-java/fastutil/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-java/fastutil # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/ChangeLog,v 1.29 2007/05/01 10:12:48 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/ChangeLog,v 1.30 2007/05/03 12:40:24 nelchael Exp $ + +*fastutil-4.3.1-r1 (03 May 2007) + + 03 May 2007; Krzysiek Pawlik <nelchael@gentoo.org> metadata.xml, + +fastutil-4.3.1-r1.ebuild, fastutil-4.4.2-r1.ebuild, + fastutil-5.0.5.ebuild: + Migrate fastutil-4.3.1, some QA fixes. 01 May 2007; Vlastimil Babka <caster@gentoo.org> fastutil-5.0.5.ebuild: Raise JDK heap size only for compilers other than javac, because fork for diff --git a/dev-java/fastutil/fastutil-4.3.1-r1.ebuild b/dev-java/fastutil/fastutil-4.3.1-r1.ebuild new file mode 100644 index 000000000000..667f97452dee --- /dev/null +++ b/dev-java/fastutil/fastutil-4.3.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-4.3.1-r1.ebuild,v 1.1 2007/05/03 12:40:24 nelchael Exp $ + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Provides type-specific maps, sets and lists with a small memory footprint for much faster access and insertion." +SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz" +HOMEPAGE="http://fastutil.dsi.unimi.it" +LICENSE="LGPL-2.1" +SLOT="4.3" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND=">=virtual/jdk-1.4" +RDEPEND=">=virtual/jre-1.4" + +src_compile() { + + emake sources || die "failed to make sources" + + java-pkg-2_src_compile + +} + +src_install() { + + java-pkg_newjar ${P}.jar + + dodoc CHANGES README + use doc && java-pkg_dojavadoc docs + use source && java-pkg_dosrc java/it + +} diff --git a/dev-java/fastutil/fastutil-4.4.2-r1.ebuild b/dev-java/fastutil/fastutil-4.4.2-r1.ebuild index c12e8d7d2ddb..66140f45edb4 100644 --- a/dev-java/fastutil/fastutil-4.4.2-r1.ebuild +++ b/dev-java/fastutil/fastutil-4.4.2-r1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-4.4.2-r1.ebuild,v 1.4 2007/04/12 13:46:28 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-4.4.2-r1.ebuild,v 1.5 2007/05/03 12:40:24 nelchael Exp $ + +JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 @@ -9,12 +11,10 @@ SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz" HOMEPAGE="http://fastutil.dsi.unimi.it" LICENSE="LGPL-2.1" SLOT="4.4" -IUSE="doc source" +IUSE="" KEYWORDS="amd64 ppc x86" -DEPEND=">=virtual/jdk-1.4 - >=dev-java/ant-core-1.6 - source? ( app-arch/zip )" +DEPEND=">=virtual/jdk-1.4" RDEPEND=">=virtual/jre-1.4" src_compile() { @@ -23,11 +23,10 @@ src_compile() { } src_install() { - java-pkg_newjar ${P}.jar ${PN}.jar + java-pkg_newjar ${P}.jar dodoc CHANGES README || die use doc && java-pkg_dojavadoc docs use source && java-pkg_dosrc java/it } - diff --git a/dev-java/fastutil/fastutil-5.0.5.ebuild b/dev-java/fastutil/fastutil-5.0.5.ebuild index 1c7c97639da3..a21621add57e 100644 --- a/dev-java/fastutil/fastutil-5.0.5.ebuild +++ b/dev-java/fastutil/fastutil-5.0.5.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-5.0.5.ebuild,v 1.6 2007/05/01 10:12:48 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-5.0.5.ebuild,v 1.7 2007/05/03 12:40:24 nelchael Exp $ + +JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 @@ -9,12 +11,10 @@ SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz" HOMEPAGE="http://fastutil.dsi.unimi.it" LICENSE="LGPL-2.1" SLOT="5.0" -IUSE="doc source" +IUSE="" KEYWORDS="amd64 ppc x86" -DEPEND=">=virtual/jdk-1.5 - >=dev-java/ant-core-1.6 - source? ( app-arch/zip )" +DEPEND=">=virtual/jdk-1.5" RDEPEND=">=virtual/jre-1.5" src_compile() { @@ -26,7 +26,7 @@ src_compile() { } src_install() { - java-pkg_newjar ${P}.jar ${PN}.jar + java-pkg_newjar ${P}.jar dodoc CHANGES README || die diff --git a/dev-java/fastutil/files/digest-fastutil-4.3.1-r1 b/dev-java/fastutil/files/digest-fastutil-4.3.1-r1 new file mode 100644 index 000000000000..ca0118145c97 --- /dev/null +++ b/dev-java/fastutil/files/digest-fastutil-4.3.1-r1 @@ -0,0 +1,3 @@ +MD5 d589fd780c4ab0fa3eb13a689ddd4be5 fastutil-4.3.1-src.tar.gz 203660 +RMD160 c09d78c19b58185479ba6f8528be736579d1f35c fastutil-4.3.1-src.tar.gz 203660 +SHA256 90f07cf08c8926451041e52452c3ba486f3000bfbade1d2fa3531fab0d09db4e fastutil-4.3.1-src.tar.gz 203660 diff --git a/dev-java/fastutil/metadata.xml b/dev-java/fastutil/metadata.xml index 838c00a4a448..250f2d1940ea 100644 --- a/dev-java/fastutil/metadata.xml +++ b/dev-java/fastutil/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>java</herd> + <herd>java</herd> </pkgmetadata> |