From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 885F21580EB for ; Wed, 21 May 2025 20:53:28 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7172C3431B3 for ; Wed, 21 May 2025 20:53:28 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DA80A1104B7; Wed, 21 May 2025 20:53:08 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id CBF201104B3 for ; Wed, 21 May 2025 20:53: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 8367534318E for ; Wed, 21 May 2025 20:53:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F11B289B for ; Wed, 21 May 2025 20:53:06 +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: <1747860713.a517d7b470794c4bc4cb40d76cc6350b824f2448.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtgvoip/files/, media-libs/libtgvoip/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libtgvoip/files/libtgvoip-2.4.4_p20240706-fix-missing-cstdint-for-gcc-15.patch media-libs/libtgvoip/libtgvoip-2.4.4_p20240706.ebuild X-VCS-Directories: media-libs/libtgvoip/files/ media-libs/libtgvoip/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a517d7b470794c4bc4cb40d76cc6350b824f2448 X-VCS-Branch: master Date: Wed, 21 May 2025 20:53:06 +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: 176cb322-e491-40e9-8580-4b1abfa34f6b X-Archives-Hash: 7b5d7959889d6d79bdfaff983305b1f3 commit: a517d7b470794c4bc4cb40d76cc6350b824f2448 Author: blackteahamburger outlook com> AuthorDate: Sun May 4 09:18:06 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 21 20:51:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a517d7b4 media-libs/libtgvoip: fix missing cstdint for gcc-15 Closes: https://bugs.gentoo.org/938332 Signed-off-by: blackteahamburger outlook.com> Part-of: https://github.com/gentoo/gentoo/pull/42194 Signed-off-by: Sam James gentoo.org> ..._p20240706-fix-missing-cstdint-for-gcc-15.patch | 37 ++++++++++++++++++++++ .../libtgvoip/libtgvoip-2.4.4_p20240706.ebuild | 4 +++ 2 files changed, 41 insertions(+) diff --git a/media-libs/libtgvoip/files/libtgvoip-2.4.4_p20240706-fix-missing-cstdint-for-gcc-15.patch b/media-libs/libtgvoip/files/libtgvoip-2.4.4_p20240706-fix-missing-cstdint-for-gcc-15.patch new file mode 100644 index 000000000000..355998720ae7 --- /dev/null +++ b/media-libs/libtgvoip/files/libtgvoip-2.4.4_p20240706-fix-missing-cstdint-for-gcc-15.patch @@ -0,0 +1,37 @@ +https://bugs.gentoo.org/938332 +https://github.com/telegramdesktop/libtgvoip/pull/38 + +From ddfb667ba17c31898949dcbf07c863e268e5c85a Mon Sep 17 00:00:00 2001 +From: Blackteahamburger +Date: Fri, 30 Aug 2024 20:02:12 +0800 +Subject: [PATCH] Fix missing cstdint for GCC 15 + +--- + TgVoip.h | 1 + + json11.cpp | 1 + + 2 files changed, 2 insertions(+) + +diff --git a/TgVoip.h b/TgVoip.h +index 9ad06155..6ea64b47 100755 +--- a/TgVoip.h ++++ b/TgVoip.h +@@ -1,6 +1,7 @@ + #ifndef __TGVOIP_H + #define __TGVOIP_H + ++#include + #include + #include + #include +diff --git a/json11.cpp b/json11.cpp +index 812e6103..1818db3f 100755 +--- a/json11.cpp ++++ b/json11.cpp +@@ -22,6 +22,7 @@ + #include "json11.hpp" + #include + #include ++#include + #include + #include + #include diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20240706.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20240706.ebuild index 755ad2bcff63..fdf1e9a2ca6d 100644 --- a/media-libs/libtgvoip/libtgvoip-2.4.4_p20240706.ebuild +++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20240706.ebuild @@ -30,6 +30,10 @@ REQUIRED_USE=" || ( alsa pulseaudio ) " +PATCHES=( + "${FILESDIR}/${P}-fix-missing-cstdint-for-gcc-15.patch" +) + src_prepare() { # Will be controlled by us sed -i -e '/^CFLAGS += -DTGVOIP_NO_DSP/d' Makefile.am || die