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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 842E11581D8 for ; Mon, 18 Nov 2024 08:37:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F2BFE0801; Mon, 18 Nov 2024 08:37:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 715CCE0801 for ; Mon, 18 Nov 2024 08:37:09 +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 4F55C341214 for ; Mon, 18 Nov 2024 08:37:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4B8A1682 for ; Mon, 18 Nov 2024 08:37:06 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1731918662.6dc7a6f57c7681f7dd669295adeb5dcbc15117f2.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gazebo/, sci-electronics/gazebo/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/gazebo/files/boost186.patch sci-electronics/gazebo/gazebo-11.14.0.ebuild X-VCS-Directories: sci-electronics/gazebo/files/ sci-electronics/gazebo/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 6dc7a6f57c7681f7dd669295adeb5dcbc15117f2 X-VCS-Branch: master Date: Mon, 18 Nov 2024 08:37:06 +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: f11d4f03-2181-4ca6-a32b-6770bbaf2500 X-Archives-Hash: 70bdc18bd3cce752b52e20de67a5c87a commit: 6dc7a6f57c7681f7dd669295adeb5dcbc15117f2 Author: Alexis Ballier gentoo org> AuthorDate: Mon Nov 18 08:31:02 2024 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Mon Nov 18 08:31:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc7a6f5 sci-electronics/gazebo: upstream patch for boost 1.86 compat Signed-off-by: Alexis Ballier gentoo.org> sci-electronics/gazebo/files/boost186.patch | 23 +++++++++++++++++++++++ sci-electronics/gazebo/gazebo-11.14.0.ebuild | 1 + 2 files changed, 24 insertions(+) diff --git a/sci-electronics/gazebo/files/boost186.patch b/sci-electronics/gazebo/files/boost186.patch new file mode 100644 index 000000000000..c34632d9b819 --- /dev/null +++ b/sci-electronics/gazebo/files/boost186.patch @@ -0,0 +1,23 @@ +From 0cc96de9cd128c8f2255f022f6e2b1bccc8512c4 Mon Sep 17 00:00:00 2001 +From: Tobias Fischer +Date: Sun, 25 Aug 2024 08:09:21 +1000 +Subject: [PATCH] Boost 1.86 compatibility + +Signed-off-by: Tobias Fischer +--- + gazebo/common/CommonIface.hh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gazebo/common/CommonIface.hh b/gazebo/common/CommonIface.hh +index 82606a8528..a38935250f 100644 +--- a/gazebo/common/CommonIface.hh ++++ b/gazebo/common/CommonIface.hh +@@ -229,7 +229,7 @@ namespace gazebo + std::string common::get_sha1(const T &_buffer) + { + boost::uuids::detail::sha1 sha1; +- unsigned int hash[5]; ++ boost::uuids::detail::sha1::digest_type hash; + std::stringstream stream; + + if (_buffer.size() == 0) diff --git a/sci-electronics/gazebo/gazebo-11.14.0.ebuild b/sci-electronics/gazebo/gazebo-11.14.0.ebuild index 04caee69b302..3fda8329c57b 100644 --- a/sci-electronics/gazebo/gazebo-11.14.0.ebuild +++ b/sci-electronics/gazebo/gazebo-11.14.0.ebuild @@ -67,6 +67,7 @@ PATCHES=( "${FILESDIR}/cmake.patch" "${FILESDIR}/gv10.patch" "${FILESDIR}/boost.patch" + "${FILESDIR}/boost186.patch" ) src_configure() {