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 EDFE815800F for ; Thu, 26 Jan 2023 07:23:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F5F5E0825; Thu, 26 Jan 2023 07:23:57 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 251DDE0817 for ; Thu, 26 Jan 2023 07:23:57 +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 31FD3340815 for ; Thu, 26 Jan 2023 07:23:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 746E862F for ; Thu, 26 Jan 2023 07:23:54 +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: <1674717493.57e3faad7b621b4c532b10ce11adf29a49154d1b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/harfbuzz/, media-libs/harfbuzz/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/harfbuzz/files/harfbuzz-6.0.0-gcc-13.patch media-libs/harfbuzz/harfbuzz-6.0.0.ebuild X-VCS-Directories: media-libs/harfbuzz/files/ media-libs/harfbuzz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 57e3faad7b621b4c532b10ce11adf29a49154d1b X-VCS-Branch: master Date: Thu, 26 Jan 2023 07:23:54 +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: 2e9961c2-a3e3-42c8-8e1a-f65a2d349838 X-Archives-Hash: 151e0e43533cd91f438f4b249e8b8f17 commit: 57e3faad7b621b4c532b10ce11adf29a49154d1b Author: Sam James gentoo org> AuthorDate: Thu Jan 26 07:18:13 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 26 07:18:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e3faad media-libs/harfbuzz: fix build w/ gcc 13 Signed-off-by: Sam James gentoo.org> .../harfbuzz/files/harfbuzz-6.0.0-gcc-13.patch | 26 ++++++++++++++++++++++ media-libs/harfbuzz/harfbuzz-6.0.0.ebuild | 4 ++++ 2 files changed, 30 insertions(+) diff --git a/media-libs/harfbuzz/files/harfbuzz-6.0.0-gcc-13.patch b/media-libs/harfbuzz/files/harfbuzz-6.0.0-gcc-13.patch new file mode 100644 index 000000000000..59536b173f21 --- /dev/null +++ b/media-libs/harfbuzz/files/harfbuzz-6.0.0-gcc-13.patch @@ -0,0 +1,26 @@ +https://github.com/harfbuzz/harfbuzz/commit/7dfa672dac958bdbc7703ab0920e167eaa126754 + +From 7dfa672dac958bdbc7703ab0920e167eaa126754 Mon Sep 17 00:00:00 2001 +From: Sergei Trofimovich +Date: Mon, 16 Jan 2023 19:49:53 +0000 +Subject: [PATCH] test/threads/hb-subset-threads.cc: add missing + include + +This week's `gcc-13` snapshot cleaned further up it's standard headers +and exposed missing declaration as a build failure: + + ../test/threads/hb-subset-threads.cc: In function 'void test_operation(operation_t, const char*, const test_input_t&)': + ../test/threads/hb-subset-threads.cc:127:3: error: 'printf' was not declared in this scope + + ../test/threads/hb-subset-threads.cc: In function 'int main(int, char**)': + ../test/threads/hb-subset-threads.cc:157:19: error: 'atoi' was not declared in this scope +--- a/test/threads/hb-subset-threads.cc ++++ b/test/threads/hb-subset-threads.cc +@@ -1,4 +1,6 @@ + #include ++#include ++#include + #include + #include + #include + diff --git a/media-libs/harfbuzz/harfbuzz-6.0.0.ebuild b/media-libs/harfbuzz/harfbuzz-6.0.0.ebuild index 6b4d0b8c3c11..9f5fab0d08ae 100644 --- a/media-libs/harfbuzz/harfbuzz-6.0.0.ebuild +++ b/media-libs/harfbuzz/harfbuzz-6.0.0.ebuild @@ -46,6 +46,10 @@ BDEPEND=" introspection? ( dev-util/glib-utils ) " +PATCHES=( + "${FILESDIR}"/${P}-gcc-13.patch +) + pkg_setup() { python-any-r1_pkg_setup if ! use debug ; then