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 C88A91382C5 for ; Sat, 22 May 2021 10:40:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09916E07FA; Sat, 22 May 2021 10:40:34 +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 E1AB3E07FA for ; Sat, 22 May 2021 10:40:33 +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 95D47335C9F for ; Sat, 22 May 2021 10:40:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CDEF78D for ; Sat, 22 May 2021 10:40:31 +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: <1621680013.f2da2047db041bbe2a18af7a7a58fc3f66c8323b.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-2020-r1.ebuild dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild X-VCS-Directories: dev-ada/gnatcoll-core/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: f2da2047db041bbe2a18af7a7a58fc3f66c8323b X-VCS-Branch: master Date: Sat, 22 May 2021 10:40:31 +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: 12b12a4d-9870-4f23-a819-3eee1fd6e0f6 X-Archives-Hash: b84ba60d2b8eff91171e5c136e104a0e commit: f2da2047db041bbe2a18af7a7a58fc3f66c8323b Author: Alfredo Tupone gentoo org> AuthorDate: Sat May 22 10:40:13 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat May 22 10:40:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2da2047 dev-ada/gnatcoll-core: enable gnat_2020, fix VariableScope Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> ...tcoll-core-2020.ebuild => gnatcoll-core-2020-r1.ebuild} | 14 +++++++------- dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild b/dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild similarity index 84% copy from dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild copy to dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild index 40b7c90fb6f..625f0692fdc 100644 --- a/dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild +++ b/dev-ada/gnatcoll-core/gnatcoll-core-2020-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -ADA_COMPAT=( gnat_201{6,7,8,9} ) +ADA_COMPAT=( gnat_201{6,7,8,9} gnat_2020 ) inherit ada multiprocessing MYP=${P}-20200429-19B7C @@ -14,7 +14,7 @@ SRC_URI="https://community.download.adacore.com/v1/c94f2ac914cb305f6bef174329fa0 LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" IUSE="+shared static-libs static-pic" RDEPEND=" @@ -38,7 +38,7 @@ src_prepare() { } src_configure() { - emake prefix="${D}"/usr PROCESSORS=$(makeopts_jobs) setup + emake setup } src_compile() { @@ -61,13 +61,13 @@ src_compile() { src_install() { if use shared; then - emake install-relocatable + emake prefix="${D}"/usr install-relocatable fi if use static-pic; then - emake install-static-pic + emake prefix="${D}"/usr install-static-pic fi if use static-libs; then - emake install-static + emake prefix="${D}"/usr install-static fi rm -r "${D}"/usr/share/gpr/manifests || die einstalldocs diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild b/dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild index 40b7c90fb6f..142bfee5352 100644 --- a/dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild +++ b/dev-ada/gnatcoll-core/gnatcoll-core-2020.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -38,7 +38,7 @@ src_prepare() { } src_configure() { - emake prefix="${D}"/usr PROCESSORS=$(makeopts_jobs) setup + emake setup } src_compile() { @@ -61,13 +61,13 @@ src_compile() { src_install() { if use shared; then - emake install-relocatable + emake prefix="${D}"/usr install-relocatable fi if use static-pic; then - emake install-static-pic + emake prefix="${D}"/usr install-static-pic fi if use static-libs; then - emake install-static + emake prefix="${D}"/usr install-static fi rm -r "${D}"/usr/share/gpr/manifests || die einstalldocs