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 8F70F158094 for ; Sat, 1 Oct 2022 03:16:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA32AE0A8A; Sat, 1 Oct 2022 03:16:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 96605E0A8A for ; Sat, 1 Oct 2022 03:16:55 +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 61961341008 for ; Sat, 1 Oct 2022 03:16:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8924601 for ; Sat, 1 Oct 2022 03:16:51 +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: <1664594141.ddb3e71ded114d3bb1092db19badd0b58cbc4ce8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-astronomy/siril/files/, sci-astronomy/siril/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-astronomy/siril/files/siril-1.0-execinfo.patch sci-astronomy/siril/siril-1.0.5.ebuild X-VCS-Directories: sci-astronomy/siril/files/ sci-astronomy/siril/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ddb3e71ded114d3bb1092db19badd0b58cbc4ce8 X-VCS-Branch: master Date: Sat, 1 Oct 2022 03:16:51 +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: aabca1ee-2590-4dcc-91be-153e8a9e397f X-Archives-Hash: ed04b8a564c831b6edc1d484ad7b857b commit: ddb3e71ded114d3bb1092db19badd0b58cbc4ce8 Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Mon Sep 26 21:41:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 1 03:15:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddb3e71d sci-astronomy/siril: Fix building on musl, missing execinfo.h Closes: https://bugs.gentoo.org/873016 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/27483 Signed-off-by: Sam James gentoo.org> sci-astronomy/siril/files/siril-1.0-execinfo.patch | 22 ++++++++++++++++++++++ sci-astronomy/siril/siril-1.0.5.ebuild | 1 + 2 files changed, 23 insertions(+) diff --git a/sci-astronomy/siril/files/siril-1.0-execinfo.patch b/sci-astronomy/siril/files/siril-1.0-execinfo.patch new file mode 100644 index 000000000000..c9c7cd81c19f --- /dev/null +++ b/sci-astronomy/siril/files/siril-1.0-execinfo.patch @@ -0,0 +1,22 @@ +commit c009c4c1800086e7f4c4e80939e9ddc8964c8e12 +Author: Mario Haustein +Date: Thu Aug 4 00:27:08 2022 +0200 + + Include execinfo.h only if available + +Bug: https://bugs.gentoo.org/873016 +Upstream: https://gitlab.com/free-astro/siril/-/merge_requests/284 + +diff --git a/src/core/signals.c b/src/core/signals.c +index 74100b3a..0eefd460 100644 +--- a/src/core/signals.c ++++ b/src/core/signals.c +@@ -25,7 +25,7 @@ + #ifdef _WIN32 + #include + #include +-#else ++#elif HAVE_EXECINFO_H + #include + #endif + diff --git a/sci-astronomy/siril/siril-1.0.5.ebuild b/sci-astronomy/siril/siril-1.0.5.ebuild index d354aede9fea..816f638fd2f1 100644 --- a/sci-astronomy/siril/siril-1.0.5.ebuild +++ b/sci-astronomy/siril/siril-1.0.5.ebuild @@ -49,6 +49,7 @@ RDEPEND=" PATCHES=( "${FILESDIR}/${PN}-docfiles.patch" "${FILESDIR}/${PN}-$(ver_cut 1-2)-dependencies.patch" + "${FILESDIR}/${PN}-$(ver_cut 1-2)-execinfo.patch" ) DOCS=( README.md NEWS ChangeLog AUTHORS )