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 E9D44158086 for ; Wed, 1 Dec 2021 17:24:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D5E02BC027; Wed, 1 Dec 2021 17:24:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D30D22BC027 for ; Wed, 1 Dec 2021 17:24:14 +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 E74DB342FE7 for ; Wed, 1 Dec 2021 17:24:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3231810C for ; Wed, 1 Dec 2021 17:24:12 +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: <1638379434.1ee39fdbf2c51fede474fdb99207a444af5ac23d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/, dev-libs/boost/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boost/boost-1.77.0-r3.ebuild dev-libs/boost/boost-1.77.0-r4.ebuild dev-libs/boost/files/boost-1.77.0-fix-process-include.patch X-VCS-Directories: dev-libs/boost/files/ dev-libs/boost/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1ee39fdbf2c51fede474fdb99207a444af5ac23d X-VCS-Branch: master Date: Wed, 1 Dec 2021 17:24:12 +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: d4452526-6265-4bb9-a320-407792c28ba0 X-Archives-Hash: eb0d9c4dd3c1874ff852a979410140e1 commit: 1ee39fdbf2c51fede474fdb99207a444af5ac23d Author: Sam James gentoo org> AuthorDate: Wed Dec 1 17:23:54 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 1 17:23:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee39fdb dev-libs/boost: add missing include in 'process' Closes: https://bugs.gentoo.org/827899 Signed-off-by: Sam James gentoo.org> ...{boost-1.77.0-r3.ebuild => boost-1.77.0-r4.ebuild} | 1 + .../files/boost-1.77.0-fix-process-include.patch | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-libs/boost/boost-1.77.0-r3.ebuild b/dev-libs/boost/boost-1.77.0-r4.ebuild similarity index 99% rename from dev-libs/boost/boost-1.77.0-r3.ebuild rename to dev-libs/boost/boost-1.77.0-r4.ebuild index 1a84b2c175eb..1ff2d52c6c8e 100644 --- a/dev-libs/boost/boost-1.77.0-r3.ebuild +++ b/dev-libs/boost/boost-1.77.0-r4.ebuild @@ -57,6 +57,7 @@ PATCHES=( "${WORKDIR}"/${PN}-1.77-math-deprecated-include.patch "${WORKDIR}"/${PN}-1.77-geometry.patch "${FILESDIR}"/${P}-python-3.10.patch + "${FILESDIR}"/${P}-fix-process-include.patch ) python_bindings_needed() { diff --git a/dev-libs/boost/files/boost-1.77.0-fix-process-include.patch b/dev-libs/boost/files/boost-1.77.0-fix-process-include.patch new file mode 100644 index 000000000000..566603b360ac --- /dev/null +++ b/dev-libs/boost/files/boost-1.77.0-fix-process-include.patch @@ -0,0 +1,19 @@ +https://github.com/boostorg/process/commit/e08374ed95ac33865bda40602c94909e7cd9607f.patch +https://bugs.gentoo.org/827899 + +From: Eddie-cz <48474051+Eddie-cz@users.noreply.github.com> +Date: Mon, 2 Aug 2021 10:49:42 +0200 +Subject: [PATCH] Update wchar_t.hpp + +--- a/boost/process/detail/traits/wchar_t.hpp ++++ b/boost/process/detail/traits/wchar_t.hpp +@@ -12,6 +12,8 @@ + #include + #include + ++#include ++ + namespace boost { namespace process { namespace detail { + + //template +