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 B400D138334 for ; Wed, 19 Jun 2019 07:32:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00E0CE0931; Wed, 19 Jun 2019 07:32:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 CBEA7E0931 for ; Wed, 19 Jun 2019 07:32:58 +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 DE5E6346482 for ; Wed, 19 Jun 2019 07:32:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FFE35C0 for ; Wed, 19 Jun 2019 07:32:56 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1560929535.04985d5d9f35c0810aa070db1c0244bd027c6f28.haubi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/boost-build/boost-build-1.65.0.ebuild dev-util/boost-build/boost-build-1.70.0.ebuild X-VCS-Directories: dev-util/boost-build/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: 04985d5d9f35c0810aa070db1c0244bd027c6f28 X-VCS-Branch: master Date: Wed, 19 Jun 2019 07:32:56 +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: 8448d1e2-f89d-4acd-bb9b-cb8f8edc9f57 X-Archives-Hash: c572b8d24680f2b307c821020515e00c commit: 04985d5d9f35c0810aa070db1c0244bd027c6f28 Author: Michael Haubenwallner gentoo org> AuthorDate: Tue Jun 18 12:11:23 2019 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Wed Jun 19 07:32:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04985d5d dev-util/boost-build: run hprefixify on engine/Jambase engine/Jambase defines default locations for boost-build, which should stick to the EPREFIX where installed to, not the host system. The breakage is in prefix-stack, where the boost ebuild does add the stacked EPREFIX only as --boost-build flag, but not BROOT. Although this is questionable, we really should use our own prefix as fallback. Package-Manager: Portage-2.3.66, Repoman-2.3.11 Signed-off-by: Michael Haubenwallner gentoo.org> dev-util/boost-build/boost-build-1.65.0.ebuild | 5 +++-- dev-util/boost-build/boost-build-1.70.0.ebuild | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-util/boost-build/boost-build-1.65.0.ebuild b/dev-util/boost-build/boost-build-1.65.0.ebuild index e7011fc99ca..4b42b41f17c 100644 --- a/dev-util/boost-build/boost-build-1.65.0.ebuild +++ b/dev-util/boost-build/boost-build-1.65.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 RESTRICT="test" PYTHON_COMPAT=( python2_7 ) -inherit eutils flag-o-matic python-single-r1 toolchain-funcs versionator +inherit eutils flag-o-matic prefix python-single-r1 toolchain-funcs versionator MY_PV="$(replace_all_version_separators _)" @@ -81,6 +81,7 @@ src_prepare() { } src_configure() { + hprefixify engine/Jambase if use python; then # replace versions by user-selected one (TODO: fix this when slot-op # deps are available to always match the best version available) diff --git a/dev-util/boost-build/boost-build-1.70.0.ebuild b/dev-util/boost-build/boost-build-1.70.0.ebuild index 98eb1a3631a..954e06df945 100644 --- a/dev-util/boost-build/boost-build-1.70.0.ebuild +++ b/dev-util/boost-build/boost-build-1.70.0.ebuild @@ -4,7 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python2_7 ) -inherit flag-o-matic python-single-r1 toolchain-funcs +inherit flag-o-matic prefix python-single-r1 toolchain-funcs MY_PV="$(ver_rs 1- _)" @@ -83,6 +83,7 @@ src_prepare() { } src_configure() { + hprefixify engine/Jambase if use python; then # replace versions by user-selected one (TODO: fix this when slot-op # deps are available to always match the best version available)