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 74058138239 for ; Sat, 17 Nov 2018 21:59:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5243EE0C0D; Sat, 17 Nov 2018 21:59:27 +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 10254E0C0D for ; Sat, 17 Nov 2018 21:59:27 +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 ED18A335C08 for ; Sat, 17 Nov 2018 21:59:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA8D6266 for ; Sat, 17 Nov 2018 21:59:23 +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: <1542491952.8d83d74faba7c97b6a9851bb5e2b6766d6b571cf.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gps/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/gps/gps-2017.ebuild X-VCS-Directories: dev-ada/gps/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8d83d74faba7c97b6a9851bb5e2b6766d6b571cf X-VCS-Branch: master Date: Sat, 17 Nov 2018 21:59:23 +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: d6faee50-6982-4cdc-982c-6d3a8efc40fe X-Archives-Hash: 65a02bc0faa7d61cd9398f8fd8fa8fef commit: 8d83d74faba7c97b6a9851bb5e2b6766d6b571cf Author: Tupone Alfredo gentoo org> AuthorDate: Sat Nov 17 21:59:12 2018 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Nov 17 21:59:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d83d74f dev-ada/gps: It works for gnat_2016 now Signed-off-by: Alfredo Tupone gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-ada/gps/gps-2017.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-ada/gps/gps-2017.ebuild b/dev-ada/gps/gps-2017.ebuild index 6aa621b988c..ebfb812fbce 100644 --- a/dev-ada/gps/gps-2017.ebuild +++ b/dev-ada/gps/gps-2017.ebuild @@ -34,7 +34,7 @@ RDEPEND="${PYTHON_DEPS} DEPEND="${RDEPEND}" REQUIRED_USE="${PYTHON_REQUIRED_USE} - !gnat_2016 gnat_2017 !gnat_2018" + ^^ ( gnat_2016 gnat_2017 ) !gnat_2018" RESTRICT="test" @@ -44,7 +44,11 @@ PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_prepare() { default - GCC_PV=6.3.0 + if use gnat_2016; then + GCC_PV=4.9.4 + else + GCC_PV=6.3.0 + fi mv configure.{in,ac} || die sed -i \ -e "s:@GNATMAKE@:${CHOST}-gnatmake-${GCC_PV}:g" \