From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 515A61584AD for ; Thu, 17 Apr 2025 18:37:45 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3ADDF343017 for ; Thu, 17 Apr 2025 18:37:45 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 286F0110494; Thu, 17 Apr 2025 18:37:44 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 1B908110494 for ; Thu, 17 Apr 2025 18:37:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 96551343011 for ; Thu, 17 Apr 2025 18:37:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A11D319B9 for ; Thu, 17 Apr 2025 18:37:41 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1744914679.6d4331edc8b9e1f439aefdedb5db35fbf0c1c669.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/files/, dev-libs/boost/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boost/boost-1.87.0-r3.ebuild dev-libs/boost/files/boost-1.87.0-solaris.patch X-VCS-Directories: dev-libs/boost/files/ dev-libs/boost/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 6d4331edc8b9e1f439aefdedb5db35fbf0c1c669 X-VCS-Branch: master Date: Thu, 17 Apr 2025 18:37: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: 0fd157dc-0fc3-4638-9d5a-44661668093a X-Archives-Hash: 6cb4ad47772a386d761f8d0ba55cfe30 commit: 6d4331edc8b9e1f439aefdedb5db35fbf0c1c669 Author: Fabian Groffen gentoo org> AuthorDate: Thu Apr 17 18:26:42 2025 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Apr 17 18:31:19 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d4331ed dev-libs/boost-1.87.0-r3: fix compilation on Solaris backport typos from upstream Signed-off-by: Fabian Groffen gentoo.org> dev-libs/boost/boost-1.87.0-r3.ebuild | 1 + dev-libs/boost/files/boost-1.87.0-solaris.patch | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-libs/boost/boost-1.87.0-r3.ebuild b/dev-libs/boost/boost-1.87.0-r3.ebuild index fd197c65f52f..2065285a40ca 100644 --- a/dev-libs/boost/boost-1.87.0-r3.ebuild +++ b/dev-libs/boost/boost-1.87.0-r3.ebuild @@ -53,6 +53,7 @@ PATCHES=( "${FILESDIR}"/${PN}-1.87.0-move.patch "${FILESDIR}"/${PN}-1.87.0-smart_ptr-operator.patch "${FILESDIR}"/${PN}-1.87.0-thread-typo.patch + "${FILESDIR}"/${PN}-1.87.0-solaris.patch ) create_user-config.jam() { diff --git a/dev-libs/boost/files/boost-1.87.0-solaris.patch b/dev-libs/boost/files/boost-1.87.0-solaris.patch new file mode 100644 index 000000000000..f0c8f9fbfe63 --- /dev/null +++ b/dev-libs/boost/files/boost-1.87.0-solaris.patch @@ -0,0 +1,25 @@ +for Solaris, part from upstream commit +https://github.com/boostorg/process/commit/bb375f50bd5b362b087aab326df158a440882e29 + +--- boost_1_87_0/libs/process/src/ext/cwd.cpp ++++ boost_1_87_0/libs/process/src/ext/cwd.cpp +@@ -124,7 +124,7 @@ + filesystem::path("/proc") / std::to_string(pid) / "cwd", ec + ); + #elif defined(__sun) +- return fileystem::canonical( ++ return filesystem::canonical( + filesystem::path("/proc") / std::to_string(pid) / "path/cwd", ec + ); + #endif +--- boost_1_87_0/libs/process/src/ext/exe.cpp ++++ boost_1_87_0/libs/process/src/ext/exe.cpp +@@ -138,7 +138,7 @@ + filesystem::path("/proc") / std::to_string(pid) / "exe", ec + ); + #elif defined(__sun) +- return fileystem::canonical( ++ return filesystem::canonical( + filesystem::path("/proc") / std::to_string(pid) / "path/a.out", ec + ); + #endif