From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1479475-garchives=archives.gentoo.org@lists.gentoo.org> 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 C446D15800F for <garchives@archives.gentoo.org>; Sun, 22 Jan 2023 06:04:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9308CE088B; Sun, 22 Jan 2023 06:04:39 +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 76DFDE088B for <gentoo-commits@lists.gentoo.org>; Sun, 22 Jan 2023 06:04:39 +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 2AA67340E5C for <gentoo-commits@lists.gentoo.org>; Sun, 22 Jan 2023 06:04:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D1BB884 for <gentoo-commits@lists.gentoo.org>; Sun, 22 Jan 2023 06:04:36 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1674364231.c68adcf9c7e123e05e930b9da5d16ec27a3fa55b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/watchman/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch X-VCS-Directories: dev-util/watchman/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c68adcf9c7e123e05e930b9da5d16ec27a3fa55b X-VCS-Branch: master Date: Sun, 22 Jan 2023 06:04:36 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5948be77-ec2a-40ab-81c0-87c508c929cc X-Archives-Hash: e02f694d20873a2fcb7309ee6bf93b8f commit: c68adcf9c7e123e05e930b9da5d16ec27a3fa55b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Jan 22 05:10:31 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 22 05:10:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c68adcf9 dev-util/watchman: update patch to upstream variant Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch b/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch index 170450f43f69..20c70d29e28b 100644 --- a/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch +++ b/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch @@ -1,3 +1,16 @@ +https://github.com/facebook/watchman/pull/1089 + +From 6535e011af5b89e9aa2a6faa60fc862f36f8b483 Mon Sep 17 00:00:00 2001 +From: Sam James <sam@gentoo.org> +Date: Sun, 22 Jan 2023 05:09:25 +0000 +Subject: [PATCH] Fix build with GCC 13 (add missing <cstdint> include) + +GCC 13 (as usual for new compiler releases) shuffles around some +internal includes and so <cstdint> is no longer transitively included. + +Explicitly include <cstdint> for uint32_t. + +Signed-off-by: Sam James <sam@gentoo.org> --- a/watchman/Errors.h +++ b/watchman/Errors.h @@ -8,6 +8,7 @@