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 BDBB9138334 for ; Tue, 4 Jun 2019 18:40:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1BA3E093A; Tue, 4 Jun 2019 18:40:40 +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 C3F29E093A for ; Tue, 4 Jun 2019 18:40:40 +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 09984345722 for ; Tue, 4 Jun 2019 18:40:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BA3F5D7 for ; Tue, 4 Jun 2019 18:40:37 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1559673624.8b2795498d00cbeaf0a100d3cff5179a137f3be5.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gnatcoll-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild X-VCS-Directories: dev-ada/gnatcoll-core/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8b2795498d00cbeaf0a100d3cff5179a137f3be5 X-VCS-Branch: master Date: Tue, 4 Jun 2019 18:40:37 +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: 45684f9c-c68e-4005-842b-59eb11c4a8ac X-Archives-Hash: d75fbc4026222dc0db2a253104fc9b66 commit: 8b2795498d00cbeaf0a100d3cff5179a137f3be5 Author: Tupone Alfredo gentoo org> AuthorDate: Tue Jun 4 18:40:24 2019 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Jun 4 18:40:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b279549 dev-ada/gnatcoll-core: Fix a dependency problem Signed-off-by: Alfredo Tupone gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild b/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild index 5aee1f706e9..6deb1e582be 100644 --- a/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild +++ b/dev-ada/gnatcoll-core/gnatcoll-core-2018-r1.ebuild @@ -17,11 +17,15 @@ KEYWORDS="~amd64 ~x86" IUSE="gnat_2016 gnat_2017 +gnat_2018 gnat_2019 +shared static-libs static-pic" RDEPEND=" - dev-ada/libgpr[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=] + dev-ada/libgpr[gnat_2016?,gnat_2017?,gnat_2018?,gnat_2019?] dev-ada/libgpr[shared?,static-libs?,static-pic?] !dev-ada/gnatcoll" DEPEND="${RDEPEND} - dev-ada/gprbuild[gnat_2016=,gnat_2017=,gnat_2018=,gnat_2019=]" + dev-ada/gprbuild + gnat_2016? ( dev-ada/gprbuild[gnat_2016] ) + dev-ada/gprbuild[gnat_2017?,gnat_2018?,gnat_2019?]" + +REQUIRED_USE="^^ ( gnat_2016 gnat_2017 gnat_2018 gnat_2019 )" S="${WORKDIR}"/${MYP}-src