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 D345F138334 for ; Sat, 7 Dec 2019 20:31:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10914E0837; Sat, 7 Dec 2019 20:31:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E8A84E0837 for ; Sat, 7 Dec 2019 20:31:44 +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 62B3734D871 for ; Sat, 7 Dec 2019 20:31:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 452A226C for ; Sat, 7 Dec 2019 20:31:41 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1575750689.3ac390cc82d42c6d50dcff61b9884dbf19b03e7d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libxml2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libxml2/libxml2-2.9.9-r1.ebuild dev-libs/libxml2/libxml2-2.9.9-r2.ebuild X-VCS-Directories: dev-libs/libxml2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3ac390cc82d42c6d50dcff61b9884dbf19b03e7d X-VCS-Branch: master Date: Sat, 7 Dec 2019 20:31:41 +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: ee1dcc6a-b546-4598-940e-7d371b3a8d6b X-Archives-Hash: 8a7c595d01518e409ca2051928b5a323 commit: 3ac390cc82d42c6d50dcff61b9884dbf19b03e7d Author: Michał Górny gentoo org> AuthorDate: Sat Dec 7 19:52:39 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 7 20:31:29 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ac390cc dev-libs/libxml2: Ensure using correct Python sitedir Closes: https://bugs.gentoo.org/702016 Signed-off-by: Michał Górny gentoo.org> .../libxml2/{libxml2-2.9.9-r1.ebuild => libxml2-2.9.9-r2.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/libxml2/libxml2-2.9.9-r1.ebuild b/dev-libs/libxml2/libxml2-2.9.9-r2.ebuild similarity index 97% rename from dev-libs/libxml2/libxml2-2.9.9-r1.ebuild rename to dev-libs/libxml2/libxml2-2.9.9-r2.ebuild index 64d73e237ca..3ddadc82e9e 100644 --- a/dev-libs/libxml2/libxml2-2.9.9-r1.ebuild +++ b/dev-libs/libxml2/libxml2-2.9.9-r2.ebuild @@ -134,7 +134,10 @@ multilib_src_configure() { libxml2_py_configure() { mkdir -p "${BUILD_DIR}" || die # ensure python build dirs exist - run_in_build_dir libxml2_configure "--with-python=${ROOT%/}${PYTHON}" # odd build system, also see bug #582130 + run_in_build_dir libxml2_configure \ + "--with-python=${EPYTHON}" \ + "--with-python-install-dir=$(python_get_sitedir)" + # odd build system, also see bug #582130 } libxml2_configure --without-python # build python bindings separately