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 77C6D138334 for ; Sun, 1 Jul 2018 14:34:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9935FE07D1; Sun, 1 Jul 2018 14:34:09 +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 690D7E07D1 for ; Sun, 1 Jul 2018 14:34:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 51158335C7A for ; Sun, 1 Jul 2018 14:34:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F7742EB for ; Sun, 1 Jul 2018 14:34:05 +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: <1530455635.380ba2894a69d47c1789f679a2cad3b132d851ef.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/asis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/asis/asis-2018.ebuild X-VCS-Directories: dev-ada/asis/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 380ba2894a69d47c1789f679a2cad3b132d851ef X-VCS-Branch: master Date: Sun, 1 Jul 2018 14:34:05 +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: 86ccf8e0-b7e5-4f4e-9f53-d2b9f7efed45 X-Archives-Hash: 0990dac20847fe1b2a0ad621c30c9c07 commit: 380ba2894a69d47c1789f679a2cad3b132d851ef Author: Tupone Alfredo gentoo org> AuthorDate: Sun Jul 1 14:33:55 2018 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sun Jul 1 14:33:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=380ba289 dev-ada/asis: Simplify dependency Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-ada/asis/asis-2018.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-ada/asis/asis-2018.ebuild b/dev-ada/asis/asis-2018.ebuild index 129a8dc318f..7a47041ede8 100644 --- a/dev-ada/asis/asis-2018.ebuild +++ b/dev-ada/asis/asis-2018.ebuild @@ -16,13 +16,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="gnat_2016 gnat_2017 +gnat_2018" -DEPEND="dev-ada/gnat_util[gnat_2018] - dev-ada/gnatcoll-core[gnat_2018,shared] - dev-ada/gprbuild[gnat_2018] - dev-ada/xmlada[gnat_2018] - dev-lang/gnat-gpl:7.3.1" -RDEPEND="${RDEPEND}" -REQUIRED_USE="!gnat_2016 !gnat_2017 gnat_2018" +RDEPEND="dev-ada/gnatcoll-core[gnat_2016=,gnat_2017=,gnat_2018=,shared]" +DEPEND="${RDEPEND} + dev-ada/gprbuild[gnat_2016=,gnat_2017=,gnat_2018=]" S="${WORKDIR}"/${MYP} @@ -42,4 +38,5 @@ src_install() { GPRINSTALL="gprinstall \ -XLIBRARY_TYPE=relocatable \ -XXMLADA_BUILD=relocatable" + rm -r "${D}"/usr/share/gpr/manifests || die }