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 57E511382C5 for ; Thu, 8 Mar 2018 10:18:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF830E09F3; Thu, 8 Mar 2018 10:18:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8C4E8E09F3 for ; Thu, 8 Mar 2018 10:18:05 +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 C55C5335C09 for ; Thu, 8 Mar 2018 10:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84D5D231 for ; Thu, 8 Mar 2018 10:18:03 +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: <1520504255.4913e935f060f87c150f25dd05e50b073f7c309d.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-2016.ebuild dev-ada/asis/asis-2017.ebuild X-VCS-Directories: dev-ada/asis/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 4913e935f060f87c150f25dd05e50b073f7c309d X-VCS-Branch: master Date: Thu, 8 Mar 2018 10:18:03 +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: a107a976-8bec-4ea3-b366-9cff8e8c4792 X-Archives-Hash: 55ea50b9cb4655e39ec9992a53f468cd commit: 4913e935f060f87c150f25dd05e50b073f7c309d Author: Tupone Alfredo gentoo org> AuthorDate: Thu Mar 8 10:17:12 2018 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Thu Mar 8 10:17:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4913e935 dev-ada/asis: Require shared library for both xmlada and gnatcoll Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-ada/asis/asis-2016.ebuild | 12 +++++++++--- dev-ada/asis/asis-2017.ebuild | 12 +++++++++--- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/dev-ada/asis/asis-2016.ebuild b/dev-ada/asis/asis-2016.ebuild index 48c6312f8b7..c54e214eb9e 100644 --- a/dev-ada/asis/asis-2016.ebuild +++ b/dev-ada/asis/asis-2016.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -31,10 +31,16 @@ PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_compile() { emake PROCESSORS=$(makeopts_jobs) - emake tools PROCESSORS=$(makeopts_jobs) + emake tools PROCESSORS=$(makeopts_jobs) \ + GPRBUILD_FLAGS="-vl \ + -XLIBRARY_TYPE=relocatable \ + -XXMLADA_BUILD=relocatable" } src_install() { emake prefix="${D}"/usr install - emake prefix="${D}"/usr install-tools + emake prefix="${D}"/usr install-tools \ + GPRINSTALL="gprinstall \ + -XLIBRARY_TYPE=relocatable \ + -XXMLADA_BUILD=relocatable" } diff --git a/dev-ada/asis/asis-2017.ebuild b/dev-ada/asis/asis-2017.ebuild index 82141cacc33..abe7adfd62f 100644 --- a/dev-ada/asis/asis-2017.ebuild +++ b/dev-ada/asis/asis-2017.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -30,10 +30,16 @@ PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_compile() { emake PROCESSORS=$(makeopts_jobs) - emake tools PROCESSORS=$(makeopts_jobs) + emake tools PROCESSORS=$(makeopts_jobs) \ + GPRBUILD_FLAGS="-vl \ + -XLIBRARY_TYPE=relocatable \ + -XXMLADA_BUILD=relocatable" } src_install() { emake prefix="${D}"/usr install - emake prefix="${D}"/usr install-tools + emake prefix="${D}"/usr install-tools \ + GPRINSTALL="gprinstall \ + -XLIBRARY_TYPE=relocatable \ + -XXMLADA_BUILD=relocatable" }