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 22D7B15800A for ; Thu, 15 Jun 2023 21:45:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A132E0938; Thu, 15 Jun 2023 21:45:37 +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 1E0C7E0938 for ; Thu, 15 Jun 2023 21:45:37 +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 0BA08335DE8 for ; Thu, 15 Jun 2023 21:45:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 377A0A66 for ; Thu, 15 Jun 2023 21:45:34 +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: <1686864770.3eeb1d9a9121ddc0d03565f5cef46b0decee7f8c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gnuradio/, net-wireless/gnuradio/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/gnuradio/files/gnuradio-3.10.6.0-fix-stdint.patch net-wireless/gnuradio/gnuradio-3.10.4.0-r1.ebuild net-wireless/gnuradio/gnuradio-3.10.5.1.ebuild net-wireless/gnuradio/gnuradio-3.10.6.0.ebuild X-VCS-Directories: net-wireless/gnuradio/files/ net-wireless/gnuradio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3eeb1d9a9121ddc0d03565f5cef46b0decee7f8c X-VCS-Branch: master Date: Thu, 15 Jun 2023 21:45:34 +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: 758ebbc5-0a0d-4266-be51-1f2c8e2d41c7 X-Archives-Hash: 55715c2a0e96c5a9166661b25daa382f commit: 3eeb1d9a9121ddc0d03565f5cef46b0decee7f8c Author: Mario Haustein hrz tu-chemnitz de> AuthorDate: Thu Jun 15 21:18:16 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 15 21:32:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eeb1d9a net-wireless/gnuradio: fixes build with GCC-13 Signed-off-by: Mario Haustein hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/31472 Signed-off-by: Sam James gentoo.org> .../files/gnuradio-3.10.6.0-fix-stdint.patch | 20 ++++++++++++++++++++ net-wireless/gnuradio/gnuradio-3.10.4.0-r1.ebuild | 1 + net-wireless/gnuradio/gnuradio-3.10.5.1.ebuild | 1 + net-wireless/gnuradio/gnuradio-3.10.6.0.ebuild | 1 + 4 files changed, 23 insertions(+) diff --git a/net-wireless/gnuradio/files/gnuradio-3.10.6.0-fix-stdint.patch b/net-wireless/gnuradio/files/gnuradio-3.10.6.0-fix-stdint.patch new file mode 100644 index 000000000000..6252d96fd8b5 --- /dev/null +++ b/net-wireless/gnuradio/files/gnuradio-3.10.6.0-fix-stdint.patch @@ -0,0 +1,20 @@ +Author: Christian Inci +Date: Mon May 15 21:26:05 2023 +0200 +Upstream: https://github.com/gnuradio/gnuradio/pull/6667 + + Include cstdint in gr-fec's alist.h + + GCC 13 will error out otherwise. + + Signed-off-by: Christian Inci + +--- a/gr-fec/include/gnuradio/fec/alist.h ++++ b/gr-fec/include/gnuradio/fec/alist.h +@@ -23,6 +23,7 @@ + #define ALIST_H + + #include ++#include + #include + #include + #include diff --git a/net-wireless/gnuradio/gnuradio-3.10.4.0-r1.ebuild b/net-wireless/gnuradio/gnuradio-3.10.4.0-r1.ebuild index cb4db21dfed5..32e79d5f8f58 100644 --- a/net-wireless/gnuradio/gnuradio-3.10.4.0-r1.ebuild +++ b/net-wireless/gnuradio/gnuradio-3.10.4.0-r1.ebuild @@ -134,6 +134,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-3.10.3.0-fix-fmt-v9.patch" #858659 "${FILESDIR}/${PN}-3.10.4.0-fix-blockinterleaving.patch" + "${FILESDIR}/${PN}-3.10.6.0-fix-stdint.patch" ) src_prepare() { diff --git a/net-wireless/gnuradio/gnuradio-3.10.5.1.ebuild b/net-wireless/gnuradio/gnuradio-3.10.5.1.ebuild index b9ce9c0ab979..6a703292b5ab 100644 --- a/net-wireless/gnuradio/gnuradio-3.10.5.1.ebuild +++ b/net-wireless/gnuradio/gnuradio-3.10.5.1.ebuild @@ -133,6 +133,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-3.10.3.0-fix-fmt-v9.patch" #858659 + "${FILESDIR}/${PN}-3.10.6.0-fix-stdint.patch" ) src_prepare() { diff --git a/net-wireless/gnuradio/gnuradio-3.10.6.0.ebuild b/net-wireless/gnuradio/gnuradio-3.10.6.0.ebuild index b9ce9c0ab979..6a703292b5ab 100644 --- a/net-wireless/gnuradio/gnuradio-3.10.6.0.ebuild +++ b/net-wireless/gnuradio/gnuradio-3.10.6.0.ebuild @@ -133,6 +133,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}/${PN}-3.10.3.0-fix-fmt-v9.patch" #858659 + "${FILESDIR}/${PN}-3.10.6.0-fix-stdint.patch" ) src_prepare() {