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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71D71158086 for ; Tue, 14 Dec 2021 23:30:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20C6F2BC001; Tue, 14 Dec 2021 23:30:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 775762BC001 for ; Tue, 14 Dec 2021 23:29:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A36BE34371E for ; Tue, 14 Dec 2021 23:29:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DD26D0 for ; Tue, 14 Dec 2021 23:29:57 +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: <1639524586.77c372e1669cd6250aa6e0b0b0888be02595fe64.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/, dev-util/boost-build/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/boost-build/boost-build-1.78.0-r1.ebuild dev-util/boost-build/boost-build-1.78.0.ebuild dev-util/boost-build/files/boost-build-1.78.0-fix-python-bindings-build.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: 77c372e1669cd6250aa6e0b0b0888be02595fe64 X-VCS-Branch: master Date: Tue, 14 Dec 2021 23:29:57 +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: ef862236-4db6-402a-8219-6802f5693006 X-Archives-Hash: 70d3ed255ab9a0080b0b1fa6dbab48e3 commit: 77c372e1669cd6250aa6e0b0b0888be02595fe64 Author: Sam James gentoo org> AuthorDate: Tue Dec 14 23:28:15 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 14 23:29:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77c372e1 dev-util/boost-build: fix incorrectly skipping targets (upstream fix) Fixes installation of Boost 1.78's Python bindings. Closes: https://bugs.gentoo.org/829031 Signed-off-by: Sam James gentoo.org> ...ld-1.78.0.ebuild => boost-build-1.78.0-r1.ebuild} | 1 + ...oost-build-1.78.0-fix-python-bindings-build.patch | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-util/boost-build/boost-build-1.78.0.ebuild b/dev-util/boost-build/boost-build-1.78.0-r1.ebuild similarity index 97% rename from dev-util/boost-build/boost-build-1.78.0.ebuild rename to dev-util/boost-build/boost-build-1.78.0-r1.ebuild index 08719032391a..09152764b546 100644 --- a/dev-util/boost-build/boost-build-1.78.0.ebuild +++ b/dev-util/boost-build/boost-build-1.78.0-r1.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.78.0-no-implicit-march-flags.patch + "${FILESDIR}"/${P}-fix-python-bindings-build.patch ) src_unpack() { diff --git a/dev-util/boost-build/files/boost-build-1.78.0-fix-python-bindings-build.patch b/dev-util/boost-build/files/boost-build-1.78.0-fix-python-bindings-build.patch new file mode 100644 index 000000000000..ddcdf0850031 --- /dev/null +++ b/dev-util/boost-build/files/boost-build-1.78.0-fix-python-bindings-build.patch @@ -0,0 +1,20 @@ +https://bugs.gentoo.org/829031 +https://github.com/bfgroup/b2/pull/113 + +From: Dmitry Arkhipov +Date: Thu, 9 Dec 2021 08:11:57 +0300 +Subject: [PATCH] Don't skip install targets if there's no in ureqs + +--- a/tools/stage.jam ++++ b/tools/stage.jam +@@ -478,6 +478,10 @@ class install-target-class : basic-target + return [ sequence.unique $(result2) ] ; + } + ++ rule skip-from-usage-requirements ( ) ++ { ++ } ++ + # Returns true iff 'type' is subtype of some element of 'types-to-include'. + # + local rule include-type ( type : types-to-include * )