Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-java/commons-primitives
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-primitives/ChangeLog,v 1.20 2008/03/16 17:21:46 betelgeuse Exp $
16 Mar 2008; Petteri Räty
commons-primitives-1.0-r2.ebuild:
RESTRICT test so that the ebuild doesn't fail with the upcoming generic
src_test. See ebuild for explanation.
18 Jun 2007; Diego Pettenò
commons-primitives-1.0-r2.ebuild:
Add ~x86-fbsd keyword.
05 May 2007; nixnut
Stable on ppc wrt bug 176012
27 Apr 2007; Vlastimil Babka
-commons-primitives-1.0-r1.ebuild:
Remove unused revision.
27 Apr 2007; Christian Faulhammer
commons-primitives-1.0-r2.ebuild:
stable x86, bug 176012
27 Apr 2007; William L. Thomson Jr.
commons-primitives-1.0-r2.ebuild:
Stable on amd64, bug #176012.
25 Apr 2007; Petteri Räty
commons-primitives-1.0-r2.ebuild:
Stylistic cleanup.
*commons-primitives-1.0-r2 (22 Jul 2006)
22 Jul 2006; Krzysiek Pawlik
+commons-primitives-1.0-r2.ebuild:
Migrated to Generation 2.
13 Jul 2005; David Holm
commons-primitives-1.0-r1.ebuild:
Added to ~ppc.
*commons-primitives-1.0-r1 (12 Jul 2005)
12 Jul 2005; Thomas Matthijs
-commons-primitives-1.0.ebuild, +commons-primitives-1.0-r1.ebuild:
dont install versioned jar
22 Apr 2005; Simon Stelling
commons-primitives-1.0.ebuild:
stable on amd64
27 Mar 2005; Jan Brinkmann
commons-primitives-1.0.ebuild:
disabled junit tests as they are horrible broken, introduced support for the
source useflag.
19 Oct 2004; Dylan Carlson
commons-primitives-1.0.ebuild:
Keywords ~amd64.
16 Oct 2004; Thomas Matthijs
commons-primitives-1.0.ebuild:
use java-pkg_dohtml instead of dohtml to also install the package-list in
case of api docs: #50740
27 Jun 2004; Chris Aniszczyk
Marking stable on x86
*commons-primitives-1.0 (30 Mar 2004)
30 Mar 2004; Karl Trygve Kalleberg
commons-primitives-1.0.ebuild: Initial import. Ebuild submitted by
myself.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
DIST commons-primitives-1.0-src.tar.gz 172369 RMD160 1b5145feddd8fc043cb27549fafecb636b83063e SHA1 03aa4d0247fe4c75a2604882c6863a47d54253a1 SHA256 96927b484b8cac7e33612469099e7bbd7139cbc79666d5612a32c997fa671ac4
EBUILD commons-primitives-1.0-r2.ebuild 966 RMD160 4f56844f5eb18e9f5a14904c8c8f4c4b179c7555 SHA1 4fddfaf0a9a226b9e19930b2e29ee60b4846478a SHA256 ac3167b0cd83bcdd0239332a74ac16e08c80f6f673dd366c6fc2629bca3f3ffe
MISC ChangeLog 2430 RMD160 f1e6ff9f688394ef7d175006510c5221a7b1b59f SHA1 2222c5a33d1844a46e3a2b7cdda71ecb03105d5c SHA256 a636b32f87bbe9da2e2346f481fada9f376f2c7c751424c38902d99806ff5dc3
MISC metadata.xml 510 RMD160 e2c65a09e2ed35bff8460a4d05f20f6a632a2628 SHA1 2919f7abef5d66eacc07f3271db534aefa86c69e SHA256 4413391cda9800b7494710ebdd2c34b93c5c325d98d262a6bc5f8d738b669881
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.7 (GNU/Linux)
iD8DBQFH3VcvcxLzpIGCsLQRAnhcAJ9Nb8SFpxCvQjg10fmesu5p4hspwACfWU1z
4Ku2v5ULT0A2qrX16qzk+Ic=
=3ui1
-----END PGP SIGNATURE-----
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-primitives/commons-primitives-1.0-r2.ebuild,v 1.7 2008/03/16 17:21:46 betelgeuse Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="The Jakarta-Commons Primitives Component"
HOMEPAGE="http://jakarta.apache.org/commons/primitives/"
SRC_URI="mirror://apache/jakarta/commons/primitives/source/${P}-src.tar.gz"
DEPEND=">=virtual/jdk-1.3"
RDEPEND=">=virtual/jre-1.3"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
# Would need an old version of commons-collections and this would be the
# only user. Trunk works against the latest version so hopefully they will
# have a new release at some point.
RESTRICT="test"
src_install() {
java-pkg_newjar target/${P}.jar ${PN}.jar
use doc && java-pkg_dojavadoc target/docs/api
use source && java-pkg_dosrc src/java/*
}
Apache Jakarta Commons Primitives provides a collection of types and
utilities optimized for working with Java primitives (boolean, byte,
char, double, float, int, long, short). Generally, the
Commons-Primitives classes are smaller, faster and easier to work with
than their purely Object based alternatives.