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 B342A138334 for ; Fri, 26 Jul 2019 21:03:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C64A0E0817; Fri, 26 Jul 2019 21:03:56 +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 A8138E0817 for ; Fri, 26 Jul 2019 21:03:56 +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 4A7A534891D for ; Fri, 26 Jul 2019 21:03:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DFBC72C for ; Fri, 26 Jul 2019 21:03:52 +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: <1564175012.5cba0185752c51bb529361c9319324f955251475.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnat-gpl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/gnat-gpl/gnat-gpl-2017.ebuild dev-lang/gnat-gpl/gnat-gpl-2019.ebuild X-VCS-Directories: dev-lang/gnat-gpl/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 5cba0185752c51bb529361c9319324f955251475 X-VCS-Branch: master Date: Fri, 26 Jul 2019 21:03:52 +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: 12e24f92-962a-4e2f-b105-f2c394cee043 X-Archives-Hash: 90cd915e1d6e66c7d7e49654920be294 commit: 5cba0185752c51bb529361c9319324f955251475 Author: Tupone Alfredo gentoo org> AuthorDate: Fri Jul 26 21:03:32 2019 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri Jul 26 21:03:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cba0185 dev-lang/gnat-gpl: Stable Package-Manager: Portage-2.3.66, Repoman-2.3.16 Signed-off-by: Alfredo Tupone gentoo.org> dev-lang/gnat-gpl/gnat-gpl-2017.ebuild | 5 ++++- dev-lang/gnat-gpl/gnat-gpl-2019.ebuild | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-lang/gnat-gpl/gnat-gpl-2017.ebuild b/dev-lang/gnat-gpl/gnat-gpl-2017.ebuild index 92ca3436505..2d4942a4e93 100644 --- a/dev-lang/gnat-gpl/gnat-gpl-2017.ebuild +++ b/dev-lang/gnat-gpl/gnat-gpl-2017.ebuild @@ -37,7 +37,7 @@ SRC_URI+=" LICENSE+=" GPL-2 GPL-3" SLOT="${TOOLCHAIN_GCC_PV}" KEYWORDS="amd64 x86" -IUSE="bootstrap" +IUSE="+bootstrap" RDEPEND="!sys-devel/gcc:${TOOLCHAIN_GCC_PV}" DEPEND="${RDEPEND} @@ -100,11 +100,13 @@ src_prepare() { GNATBIND="${gnatbase/gcc/gnatbind}" GNATLINK="${gnatbase/gcc/gnatlink}" GNATLS="${gnatbase/gcc/gnatls}" + GCCAR="${gnatbase/gcc/gcc-ar}" if [[ ${gnatpath} != "." ]] ; then CXX="${gnatpath}/${CXX}" GNATBIND="${gnatpath}/${GNATBIND}" GNATLINK="${gnatpath}/${GNATLINK}" GNATLS="${gnatpath}/${GNATLS}" + GCCAR="${gnatpath}/${GCCAR}" fi mkdir bin || die ln -s $(which ${GCC}) bin/gcc || die @@ -113,6 +115,7 @@ src_prepare() { ln -s $(which ${GNATBIND}) bin/gnatbind || die ln -s $(which ${GNATLINK}) bin/gnatlink || die ln -s $(which ${GNATLS}) bin/gnatls || die + ln -s $(which ${GCCAR}) bin/ar || die echo ${TOOLCHAIN_GCC_PV} > gcc/BASE-VER diff --git a/dev-lang/gnat-gpl/gnat-gpl-2019.ebuild b/dev-lang/gnat-gpl/gnat-gpl-2019.ebuild index 9299976fecf..30d6ef53b40 100644 --- a/dev-lang/gnat-gpl/gnat-gpl-2019.ebuild +++ b/dev-lang/gnat-gpl/gnat-gpl-2019.ebuild @@ -38,7 +38,7 @@ SRC_URI+=" )" LICENSE+=" GPL-2 GPL-3" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="+bootstrap" RDEPEND="!sys-devel/gcc:${GCC_CONFIG_VER}"