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 156CB158090 for ; Sun, 15 May 2022 21:02:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27D04E0898; Sun, 15 May 2022 21:02:02 +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 ED902E0898 for ; Sun, 15 May 2022 21:02:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 82B393417CC for ; Sun, 15 May 2022 21:02:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05E2E445 for ; Sun, 15 May 2022 21:01:59 +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: <1652648442.8081b6274bfa519e00d7d4692b39d3e1dde220e0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/, app-doc/doxygen/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/doxygen/doxygen-1.9.4.ebuild app-doc/doxygen/files/doxygen-1.9.4-gcc12-include.patch X-VCS-Directories: app-doc/doxygen/files/ app-doc/doxygen/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8081b6274bfa519e00d7d4692b39d3e1dde220e0 X-VCS-Branch: master Date: Sun, 15 May 2022 21:01:59 +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: eeb18142-c2ce-463a-b25d-1786ee8ac349 X-Archives-Hash: 04f3442966778a246cf3585eba23beb6 commit: 8081b6274bfa519e00d7d4692b39d3e1dde220e0 Author: Sam James gentoo org> AuthorDate: Sun May 15 20:56:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 15 21:00:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8081b627 app-doc/doxygen: fix build with GCC 12 Closes: https://bugs.gentoo.org/844229 Signed-off-by: Sam James gentoo.org> app-doc/doxygen/doxygen-1.9.4.ebuild | 1 + .../doxygen/files/doxygen-1.9.4-gcc12-include.patch | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/app-doc/doxygen/doxygen-1.9.4.ebuild b/app-doc/doxygen/doxygen-1.9.4.ebuild index 925f54421fa8..43bcc5ceeb3c 100644 --- a/app-doc/doxygen/doxygen-1.9.4.ebuild +++ b/app-doc/doxygen/doxygen-1.9.4.ebuild @@ -59,6 +59,7 @@ PATCHES=( "${FILESDIR}/${PN}-1.9.4-link_with_pthread.patch" "${FILESDIR}/${PN}-1.9.1-ignore-bad-encoding.patch" "${FILESDIR}/${PN}-1.9.1-do_not_force_libcxx.patch" + "${FILESDIR}/${P}-gcc12-include.patch" ) DOCS=( LANGUAGE.HOWTO README.md ) diff --git a/app-doc/doxygen/files/doxygen-1.9.4-gcc12-include.patch b/app-doc/doxygen/files/doxygen-1.9.4-gcc12-include.patch new file mode 100644 index 000000000000..44505e4bed40 --- /dev/null +++ b/app-doc/doxygen/files/doxygen-1.9.4-gcc12-include.patch @@ -0,0 +1,19 @@ +https://github.com/doxygen/doxygen/commit/5198966c8d5fec89116d025c74934ac03ea511fa +https://bugs.gentoo.org/844229 + +From: Dimitri van Heesch +Date: Fri, 6 May 2022 09:55:16 +0200 +Subject: [PATCH] issue #9312: Build: cache.h:53:14: error: 'exchange' is not a + member of 'std' + +--- a/src/cache.h ++++ b/src/cache.h +@@ -19,6 +19,7 @@ + #include + #include + #include ++#include + #include + + /*! Fixed size cache for value type V using keys of type K. +