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 AA5ED1382C5 for ; Mon, 24 May 2021 21:38:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6D10E078A; Mon, 24 May 2021 21:38:50 +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 C5A23E078A for ; Mon, 24 May 2021 21:38:50 +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 C772934087C for ; Mon, 24 May 2021 21:38:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18EB1597 for ; Mon, 24 May 2021 21:38:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1621892317.2cd8437b2d737dac6f635faa9cce85980557fe0c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/files/, dev-util/boost-build/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/boost-build/boost-build-1.76.0-r1.ebuild dev-util/boost-build/boost-build-1.76.0-r2.ebuild dev-util/boost-build/files/boost-build-1.76.0-python-numpy.patch X-VCS-Directories: dev-util/boost-build/ dev-util/boost-build/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2cd8437b2d737dac6f635faa9cce85980557fe0c X-VCS-Branch: master Date: Mon, 24 May 2021 21:38:48 +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: 134fa2ac-ffc7-487b-81c1-a795ca885748 X-Archives-Hash: d04fa65f8ed5c99f14fb01242bfec79c commit: 2cd8437b2d737dac6f635faa9cce85980557fe0c Author: David Seifert gentoo org> AuthorDate: Mon May 24 19:55:23 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 24 21:38:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cd8437b dev-util/boost-build: Fix for numpy include Bug: https://bugs.gentoo.org/733830 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: David Seifert gentoo.org> Signed-off-by: Sam James gentoo.org> ...76.0-r1.ebuild => boost-build-1.76.0-r2.ebuild} | 1 + .../files/boost-build-1.76.0-python-numpy.patch | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-util/boost-build/boost-build-1.76.0-r1.ebuild b/dev-util/boost-build/boost-build-1.76.0-r2.ebuild similarity index 97% rename from dev-util/boost-build/boost-build-1.76.0-r1.ebuild rename to dev-util/boost-build/boost-build-1.76.0-r2.ebuild index 2a800a24714..d3635332eaf 100644 --- a/dev-util/boost-build/boost-build-1.76.0-r1.ebuild +++ b/dev-util/boost-build/boost-build-1.76.0-r2.ebuild @@ -24,6 +24,7 @@ PATCHES=( "${FILESDIR}"/${PN}-1.73.0-add-none-feature-options.patch "${FILESDIR}"/${PN}-1.76.0-respect-user-flags.patch "${FILESDIR}"/${PN}-1.74.0-no-implicit-march-flags.patch + "${FILESDIR}"/${PN}-1.76.0-python-numpy.patch ) src_unpack() { diff --git a/dev-util/boost-build/files/boost-build-1.76.0-python-numpy.patch b/dev-util/boost-build/files/boost-build-1.76.0-python-numpy.patch new file mode 100644 index 00000000000..ed04d542634 --- /dev/null +++ b/dev-util/boost-build/files/boost-build-1.76.0-python-numpy.patch @@ -0,0 +1,24 @@ +From 61adb508853be1fa2c01a0c3a0c55fbd16cb9a52 Mon Sep 17 00:00:00 2001 +From: Peter Dimov +Date: Mon, 24 May 2021 22:11:23 +0300 +Subject: [PATCH] Declare the /python//numpy target to hold the include path + (fixes #725) + +--- + tools/python.jam | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/tools/python.jam b/tools/python.jam +index 00706932d2..0dfc750a22 100644 +--- a/tools/python.jam ++++ b/tools/python.jam +@@ -1052,6 +1052,9 @@ local rule configure ( version ? : cmd-or-prefix ? : includes * : libraries ? : + ; + } + ++ # Declare the numpy target, which contains the NumPy include directory ++ ++ alias numpy : : $(target-requirements) : : $(.numpy-include) ; + } + + # Conditional rule specification that will prevent building of a target