From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66AA5138337 for ; Thu, 18 Oct 2018 21:40:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4730CE0AA6; Thu, 18 Oct 2018 21:40:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18F09E0AAB for ; Thu, 18 Oct 2018 21:40:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4F14335CFA for ; Thu, 18 Oct 2018 21:40:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F346445 for ; Thu, 18 Oct 2018 21:40:48 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1539898839.bb673be5aa74562fad153e3fbea1b8ecd3426b74.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/trove/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/trove/Manifest dev-java/trove/trove-3.0.3.ebuild X-VCS-Directories: dev-java/trove/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: bb673be5aa74562fad153e3fbea1b8ecd3426b74 X-VCS-Branch: master Date: Thu, 18 Oct 2018 21:40:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 578075a5-b731-4943-bf4f-17a92054890e X-Archives-Hash: d609246bcd6113de2746f3c4db516c71 commit: bb673be5aa74562fad153e3fbea1b8ecd3426b74 Author: Patrice Clement gentoo org> AuthorDate: Thu Oct 18 21:37:08 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Oct 18 21:40:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb673be5 dev-java/trove: version bump. Signed-off-by: Patrice Clement gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.10 dev-java/trove/Manifest | 1 + dev-java/trove/trove-3.0.3.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-java/trove/Manifest b/dev-java/trove/Manifest index 7991239b976..134446b4e27 100644 --- a/dev-java/trove/Manifest +++ b/dev-java/trove/Manifest @@ -1 +1,2 @@ DIST trove-3.0.2.tar.gz 5880161 BLAKE2B a3dbb6a967ad9a519bd04abbbbf9e6af483360991956ff79532462a9ad471d409744017a3b24e4a09d2377243406e5d7cd542b452da8f59a1a97b454a2f60a8c SHA512 27460a66bad6f206eaeae02453c94333456db5a9c566246d495fb4184d42de6033b66d1bf74060f799cf4298d531afeb9597b92da4e2963b43dd4ef072ee750b +DIST trove-3.0.3.jar 1793123 BLAKE2B efc6ff678d2f5cef8c68403faafce3dfb66ba7b3c1ffa42ad6727cd71c6dbd77fa06b4a6eb23c44a794982a8f2933afa10d4a5555a8749f49cf5e0ae227afb5a SHA512 03e0a376258730cb79fd0dd0a68bfacba6ca4baf3a352cce621d64e091ccd3f24c143b592f3bbd5bbac26529bc425b814dff45680ac46fd323eca95b36d2b640 diff --git a/dev-java/trove/trove-3.0.3.ebuild b/dev-java/trove/trove-3.0.3.ebuild new file mode 100644 index 00000000000..b8993f5ddf1 --- /dev/null +++ b/dev-java/trove/trove-3.0.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +MY_PN="${PN}4j" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="GNU Trove: High performance collections for Java" +SRC_URI="https://repo1.maven.org/maven2/net/sf/${MY_PN}/${MY_PN}/${PV}/${MY_P}-sources.jar -> ${P}.jar" +HOMEPAGE="http://trove4j.sourceforge.net" +KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" + +SLOT="0" +LICENSE="LGPL-2.1" + +RDEPEND=" + >=virtual/jre-1.6" + +DEPEND=" + >=virtual/jdk-1.6" + +src_prepare() { + default + rm -v gnu/trove/impl/package.html || die +}