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 93B19158066 for ; Thu, 15 Aug 2024 00:29:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C319EE2A27; Thu, 15 Aug 2024 00:29:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A552FE2A27 for ; Thu, 15 Aug 2024 00:29:46 +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 BE0F33430A1 for ; Thu, 15 Aug 2024 00:29:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DBC41ECB for ; Thu, 15 Aug 2024 00:29:44 +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: <1723681757.c0f4bc8800030a7ed449f98312c474148a5b327e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libaom/, media-libs/libaom/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libaom/files/libaom-3.9.1-gcc15-cstdint.patch media-libs/libaom/libaom-3.9.1.ebuild X-VCS-Directories: media-libs/libaom/files/ media-libs/libaom/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c0f4bc8800030a7ed449f98312c474148a5b327e X-VCS-Branch: master Date: Thu, 15 Aug 2024 00:29:44 +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: 0ca05dc6-30e5-4bd1-a520-6d444fad593d X-Archives-Hash: cde2aaa29c456e2f64c320a1d69f66ee commit: c0f4bc8800030a7ed449f98312c474148a5b327e Author: Sam James gentoo org> AuthorDate: Thu Aug 15 00:29:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 15 00:29:17 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0f4bc88 media-libs/libaom: fix build w/ gcc-15 Closes: https://bugs.gentoo.org/937420 Signed-off-by: Sam James gentoo.org> .../libaom/files/libaom-3.9.1-gcc15-cstdint.patch | 39 ++++++++++++++++++++++ media-libs/libaom/libaom-3.9.1.ebuild | 1 + 2 files changed, 40 insertions(+) diff --git a/media-libs/libaom/files/libaom-3.9.1-gcc15-cstdint.patch b/media-libs/libaom/files/libaom-3.9.1-gcc15-cstdint.patch new file mode 100644 index 000000000000..4195d240e493 --- /dev/null +++ b/media-libs/libaom/files/libaom-3.9.1-gcc15-cstdint.patch @@ -0,0 +1,39 @@ +https://bugs.gentoo.org/937420 +https://aomedia.issues.chromium.org/issues/357622679 +https://aomedia-review.googlesource.com/c/aom/+/192404 + +From b20dcf3adf51919226b436151734ba38d1123850 Mon Sep 17 00:00:00 2001 +From: James Zern +Date: Tue, 06 Aug 2024 10:38:00 -0700 +Subject: [PATCH] update libwebm to libwebm-1.0.0.31-10-g3b63004 + +This fixes a build error seen in gcc 15: +3b63004 mkvparser/mkvparser.cc: add missing include + +Bug: aomedia:357622679 +Change-Id: I6c4a1795d189f9993d4f2c5c9f0375912bc58f0c +(cherry picked from commit e448dcd13a9f534c7291903e9ab18dfc4fea54ad) +--- a/third_party/libwebm/mkvmuxer/mkvmuxerutil.h ++++ b/third_party/libwebm/mkvmuxer/mkvmuxerutil.h +@@ -8,9 +8,9 @@ + #ifndef MKVMUXER_MKVMUXERUTIL_H_ + #define MKVMUXER_MKVMUXERUTIL_H_ + +-#include "mkvmuxertypes.h" ++#include + +-#include "stdint.h" ++#include "mkvmuxertypes.h" + + namespace mkvmuxer { + class Cluster; +--- a/third_party/libwebm/mkvparser/mkvparser.cc ++++ b/third_party/libwebm/mkvparser/mkvparser.cc +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + #include + #include + #include diff --git a/media-libs/libaom/libaom-3.9.1.ebuild b/media-libs/libaom/libaom-3.9.1.ebuild index 18e04da00b1b..7e193b62a448 100644 --- a/media-libs/libaom/libaom-3.9.1.ebuild +++ b/media-libs/libaom/libaom-3.9.1.ebuild @@ -50,6 +50,7 @@ PATCHES=( "${FILESDIR}"/${PN}-3.4.0-posix-c-source-ftello.patch "${FILESDIR}"/${PN}-3.7.0-allow-fortify-source.patch "${FILESDIR}"/${PN}-3.8.1-tests-parallel.patch + "${FILESDIR}"/${PN}-3.9.1-gcc15-cstdint.patch ) multilib_src_configure() {