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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E9CB0158086 for ; Tue, 21 Dec 2021 08:04:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDE2D2BC03B; Tue, 21 Dec 2021 08:04:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48B322BC027 for ; Tue, 21 Dec 2021 08:04:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F1EC5343246 for ; Tue, 21 Dec 2021 08:04:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A1CC258 for ; Tue, 21 Dec 2021 08:04:10 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1640073844.4aeac2562eeafd4f233f1bce383fe92a227e996a.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/guava/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/guava/guava-20.0-r1.ebuild X-VCS-Directories: dev-java/guava/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 4aeac2562eeafd4f233f1bce383fe92a227e996a X-VCS-Branch: master Date: Tue, 21 Dec 2021 08:04:10 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 92055cb2-ccb3-4ebd-893b-99cf26e35428 X-Archives-Hash: f738708bebd3e7578aaac18f520f5871 commit: 4aeac2562eeafd4f233f1bce383fe92a227e996a Author: Miroslav Šulc gentoo org> AuthorDate: Tue Dec 21 08:04:04 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Dec 21 08:04:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aeac256 dev-java/guava: eapi8, min java 1.8 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/guava/guava-20.0-r1.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-java/guava/guava-20.0-r1.ebuild b/dev-java/guava/guava-20.0-r1.ebuild new file mode 100644 index 000000000000..91ac8943a4bd --- /dev/null +++ b/dev-java/guava/guava-20.0-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +JAVA_PKG_IUSE="doc source" +MAVEN_ID="com.google.guava:guava:20.0" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="A collection of Google's core Java libraries" +HOMEPAGE="https://github.com/google/guava" +SRC_URI="https://github.com/google/guava/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Apache-2.0" +SLOT="${PV%.*}" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" + +CP_DEPEND=" + dev-java/animal-sniffer-annotations:0 + dev-java/error-prone-annotations:0 + dev-java/jsr305:0 +" + +RDEPEND="${CP_DEPEND} + >=virtual/jre-1.8:*" + +DEPEND="${CP_DEPEND} + >=virtual/jdk-1.8:* + dev-java/j2objc-annotations:0" + +S="${WORKDIR}/${P}/${PN}" +JAVA_SRC_DIR="src" + +src_configure() { + JAVA_GENTOO_CLASSPATH_EXTRA=$(java-pkg_getjars --build-only j2objc-annotations) +}