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 AE82E158232 for ; Fri, 6 Dec 2024 23:12:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1C7BE09D5; Fri, 6 Dec 2024 23:12:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9321AE09D6 for ; Fri, 6 Dec 2024 23:12:08 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4859342F9C for ; Fri, 6 Dec 2024 23:12:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7164B22D7 for ; Fri, 6 Dec 2024 23:12:04 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1733526691.1c50d13aff87891252b0933f47ef9c2a074b338e.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libunwind/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libunwind/files/libunwind-1.7.2-backport-pr521.patch X-VCS-Directories: sys-libs/libunwind/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1c50d13aff87891252b0933f47ef9c2a074b338e X-VCS-Branch: master Date: Fri, 6 Dec 2024 23:12:04 +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: b2a31493-bd30-45bc-95be-e3be616933cd X-Archives-Hash: b1fdd8ca97b426821ee83e73d505b050 commit: 1c50d13aff87891252b0933f47ef9c2a074b338e Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Dec 3 19:31:38 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Dec 6 23:11:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c50d13a sys-libs/libunwind: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/libunwind-1.7.2-backport-pr521.patch | 31 ---------------------- 1 file changed, 31 deletions(-) diff --git a/sys-libs/libunwind/files/libunwind-1.7.2-backport-pr521.patch b/sys-libs/libunwind/files/libunwind-1.7.2-backport-pr521.patch deleted file mode 100644 index addfc0a60a03..000000000000 --- a/sys-libs/libunwind/files/libunwind-1.7.2-backport-pr521.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://bugs.gentoo.org/913817 -https://github.com/libunwind/libunwind/issues/520 -https://github.com/libunwind/libunwind/pull/521 - -From aaf9909c91f1fa875907df8d437bff689e00172e Mon Sep 17 00:00:00 2001 -From: Stephen Webb -Date: Fri, 26 May 2023 16:22:08 -0400 -Subject: [PATCH] Fix FTBFS on Linux ppc32 - -Looks like the Linux ucontext structure has changed for PPC at some -point. This probably needs some kind of version check, or else ancient -kernels will need to stick with 1.6 or earlier. ---- - src/ppc32/ucontext_i.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/ppc32/ucontext_i.h b/src/ppc32/ucontext_i.h -index 64f8ed878..ee93c6979 100644 ---- a/src/ppc32/ucontext_i.h -+++ b/src/ppc32/ucontext_i.h -@@ -44,8 +44,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ - //#define MQ_IDX 36 - #define LINK_IDX 36 - --#define _UC_MCONTEXT_GPR(x) ( (void *)&dmy_ctxt.uc_mcontext.gregs[x] - (void *)&dmy_ctxt) ) --#define _UC_MCONTEXT_FPR(x) ( ((void *)&dmy_ctxt.uc_mcontext.fpregs[x] - (void *)&dmy_ctxt) ) -+#define _UC_MCONTEXT_GPR(x) ( ((void *)&dmy_ctxt.uc_mcontext.uc_regs->gregs[x] - (void *)&dmy_ctxt) ) -+#define _UC_MCONTEXT_FPR(x) ( ((void *)&dmy_ctxt.uc_mcontext.uc_regs->fpregs.fpregs[x] - (void *)&dmy_ctxt) ) - - /* These are dummy structures used only for obtaining the offsets of the - various structure members. */