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 3EA811382C5 for ; Tue, 27 Apr 2021 13:45:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44BA9E086B; Tue, 27 Apr 2021 13:45:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2B064E086B for ; Tue, 27 Apr 2021 13:45:36 +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 84365340E3D for ; Tue, 27 Apr 2021 13:45:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0058581 for ; Tue, 27 Apr 2021 13:45:32 +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: <1619531083.03faa61548b4bf144d432596738b8ea29ec3ce89.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/gson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/gson/gson-2.7-r1.ebuild dev-java/gson/gson-2.7.ebuild X-VCS-Directories: dev-java/gson/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 03faa61548b4bf144d432596738b8ea29ec3ce89 X-VCS-Branch: master Date: Tue, 27 Apr 2021 13:45:32 +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: 868fc514-0ee1-4ca6-b7f9-f613ba618048 X-Archives-Hash: f7fb7d225a91d75b2cc4a5ae33cf1da4 commit: 03faa61548b4bf144d432596738b8ea29ec3ce89 Author: Miroslav Šulc gentoo org> AuthorDate: Tue Apr 27 13:44:43 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Apr 27 13:44:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03faa615 dev-java/gson: no need for new slot in 2.7 + eapi7/java 1.8 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/gson/{gson-2.7.ebuild => gson-2.7-r1.ebuild} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-java/gson/gson-2.7.ebuild b/dev-java/gson/gson-2.7-r1.ebuild similarity index 79% rename from dev-java/gson/gson-2.7.ebuild rename to dev-java/gson/gson-2.7-r1.ebuild index fc8a91b02a0..7d902a24653 100644 --- a/dev-java/gson/gson-2.7.ebuild +++ b/dev-java/gson/gson-2.7-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 MY_P="${PN}-parent-${PV}" JAVA_PKG_IUSE="doc source" @@ -12,11 +12,11 @@ DESCRIPTION="Java library to convert JSON to Java objects and vice-versa" HOMEPAGE="https://github.com/google/gson" SRC_URI="https://github.com/google/${PN}/archive/${MY_P}.tar.gz" LICENSE="Apache-2.0" -SLOT="2.7" +SLOT="2.6" KEYWORDS="~amd64 ~x86" -DEPEND=">=virtual/jdk-1.7" -RDEPEND=">=virtual/jre-1.7" +DEPEND=">=virtual/jdk-1.8:*" +RDEPEND=">=virtual/jre-1.8:*" S="${WORKDIR}/${PN}-${MY_P}" JAVA_SRC_DIR="${PN}/src/main/java"