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 7A52915A7D9 for ; Fri, 17 Mar 2023 10:41:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B70E5E0A03; Fri, 17 Mar 2023 10:40:59 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C464E0A03 for ; Fri, 17 Mar 2023 10:40:59 +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 CA28833BF29 for ; Fri, 17 Mar 2023 10:40:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51B908B7 for ; Fri, 17 Mar 2023 10:40:56 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1679049631.79af0a321004056c8d47ee8d17f63f8b288bd332.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/netcdf/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch X-VCS-Directories: sci-libs/netcdf/files/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 79af0a321004056c8d47ee8d17f63f8b288bd332 X-VCS-Branch: master Date: Fri, 17 Mar 2023 10:40:56 +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: e93d0a6c-a93a-411d-b011-4e7e75fe054d X-Archives-Hash: 5715510778fe5d2b8274883a55ae9114 commit: 79af0a321004056c8d47ee8d17f63f8b288bd332 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Mar 16 17:16:45 2023 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri Mar 17 10:40:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79af0a32 sci-libs/netcdf: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30157 Signed-off-by: Andrew Ammerlaan gentoo.org> .../files/netcdf-4.9.0-fix-musl-execinfo_h.patch | 46 ---------------------- 1 file changed, 46 deletions(-) diff --git a/sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch b/sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch deleted file mode 100644 index 7b711327512a..000000000000 --- a/sci-libs/netcdf/files/netcdf-4.9.0-fix-musl-execinfo_h.patch +++ /dev/null @@ -1,46 +0,0 @@ -# Conditionally include execinfo as it's not available on all libc -# systems. There is a PR upstream for a similiar issue but the actual -# issus is not reproducable on Gentoo [math library not found] [1], so -# for now this is a temporary fix and can be removed once the PR [1] -# is merged upstream. -# [1]: https://github.com/Unidata/netcdf-c/pull/1701 -# -# Closes: https://bugs.gentoo.org/828677 ---- a/libhdf5/hdf5debug.c -+++ b/libhdf5/hdf5debug.c -@@ -5,7 +5,7 @@ - #include "config.h" - #include - #include --#if !defined _WIN32 && !defined __CYGWIN__ -+#ifdef HAVE_EXECINFO_H - #include - #endif - -@@ -15,15 +15,18 @@ - - #define STSIZE 1000 - -+#ifdef HAVE_EXECINFO_H - #ifdef H5BACKTRACE - # if !defined _WIN32 && !defined __CYGWIN__ - static void* stacktrace[STSIZE]; - # endif - #endif -+#endif - - int - nch5breakpoint(int err) - { -+#ifdef HAVE_EXECINFO_H - #ifdef H5BACKTRACE - # if !defined _WIN32 && !defined __CYGWIN__ - int count = 0; -@@ -39,6 +42,7 @@ nch5breakpoint(int err) - if(trace != NULL) free(trace); - # endif - # endif -+#endif - #endif - return err; - }