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 550A515ACFC for ; Sat, 29 Apr 2023 18:44:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3A68E03DF; Sat, 29 Apr 2023 18:44:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9A15BE03DF for ; Sat, 29 Apr 2023 18:44:34 +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 8336934058A for ; Sat, 29 Apr 2023 18:44:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9220A36 for ; Sat, 29 Apr 2023 18:44:31 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1682793833.45a01aef6883db7c788124d6ddc759ac15724c18.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/flrig/, media-radio/flrig/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/flrig/files/flrig-1.4.7-uint8.patch media-radio/flrig/flrig-1.4.7.ebuild X-VCS-Directories: media-radio/flrig/files/ media-radio/flrig/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 45a01aef6883db7c788124d6ddc759ac15724c18 X-VCS-Branch: master Date: Sat, 29 Apr 2023 18:44:31 +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: 8dbe5627-ad80-492d-8179-519e192da2e2 X-Archives-Hash: 7e4027303d0ed393ba2f6711e2d4826d commit: 45a01aef6883db7c788124d6ddc759ac15724c18 Author: Thomas Beierlein gentoo org> AuthorDate: Sat Apr 29 18:40:18 2023 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sat Apr 29 18:43:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45a01aef media-radio/flrig: Add missing include Closes: https://bugs.gentoo.org/895566 Signed-off-by: Thomas Beierlein gentoo.org> media-radio/flrig/files/flrig-1.4.7-uint8.patch | 11 +++++++++++ media-radio/flrig/flrig-1.4.7.ebuild | 5 +++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/media-radio/flrig/files/flrig-1.4.7-uint8.patch b/media-radio/flrig/files/flrig-1.4.7-uint8.patch new file mode 100644 index 000000000000..554ac137eca3 --- /dev/null +++ b/media-radio/flrig/files/flrig-1.4.7-uint8.patch @@ -0,0 +1,11 @@ +--- a/src/include/WSclient.h 2023-04-29 20:25:55.322076690 +0200 ++++ b/src/include/WSclient.h 2023-04-29 20:26:20.686925674 +0200 +@@ -35,6 +35,8 @@ + + #ifdef __WIN32__ + typedef unsigned char uint8_t; ++#else ++ #include + #endif + + namespace WSclient { diff --git a/media-radio/flrig/flrig-1.4.7.ebuild b/media-radio/flrig/flrig-1.4.7.ebuild index 81a737736eac..6ae84171b383 100644 --- a/media-radio/flrig/flrig-1.4.7.ebuild +++ b/media-radio/flrig/flrig-1.4.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,7 +23,8 @@ RDEPEND="x11-libs/libX11 DEPEND="${RDEPEND} sys-devel/gettext" -PATCHES=( "${FILESDIR}/${PN}-1.4.4-musl.patch" ) +PATCHES=( "${FILESDIR}/${PN}-1.4.4-musl.patch" + "${FILESDIR}/${P}-uint8.patch" ) src_prepare() { eapply ${PATCHES[@]}