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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 90EFA15800F for ; Mon, 30 Jan 2023 04:01:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B29C6E086C; Mon, 30 Jan 2023 04:01:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 99317E086C for ; Mon, 30 Jan 2023 04:01:30 +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 A6D35340DBA for ; Mon, 30 Jan 2023 04:01:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D31A6771 for ; Mon, 30 Jan 2023 04:01:27 +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: <1675049678.9392d038b7d2ae6ff15b75694e30920d65e4bf48.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/, sci-electronics/kicad/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/kicad/files/kicad-6.0.9-gcc-13.patch sci-electronics/kicad/kicad-6.0.9.ebuild X-VCS-Directories: sci-electronics/kicad/files/ sci-electronics/kicad/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9392d038b7d2ae6ff15b75694e30920d65e4bf48 X-VCS-Branch: master Date: Mon, 30 Jan 2023 04:01:27 +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: 248bf442-ea10-499b-8331-168306ef4060 X-Archives-Hash: 8587b78505c9242b61c3edc659fe4edf commit: 9392d038b7d2ae6ff15b75694e30920d65e4bf48 Author: Sam James gentoo org> AuthorDate: Mon Jan 30 03:34:38 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 30 03:34:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9392d038 sci-electronics/kicad: fix build w/ gcc 13 Closes: https://bugs.gentoo.org/892499 Signed-off-by: Sam James gentoo.org> .../kicad/files/kicad-6.0.9-gcc-13.patch | 30 ++++++++++++++++++++++ sci-electronics/kicad/kicad-6.0.9.ebuild | 1 + 2 files changed, 31 insertions(+) diff --git a/sci-electronics/kicad/files/kicad-6.0.9-gcc-13.patch b/sci-electronics/kicad/files/kicad-6.0.9-gcc-13.patch new file mode 100644 index 000000000000..f1047cb9dee5 --- /dev/null +++ b/sci-electronics/kicad/files/kicad-6.0.9-gcc-13.patch @@ -0,0 +1,30 @@ +https://bugs.gentoo.org/892499 +https://gitlab.com/kicad/code/kicad/-/commit/8c324f1fc8f7fcdb5e8f494da3d45997001fab4a + +From 8c324f1fc8f7fcdb5e8f494da3d45997001fab4a Mon Sep 17 00:00:00 2001 +From: jean-pierre charras +Date: Tue, 20 Dec 2022 12:46:19 +0100 +Subject: [PATCH] Fix a missing include. Fixes #13216 + https://gitlab.com/kicad/code/kicad/issues/13216 + +--- a/pcb_calculator/eserie.h ++++ b/pcb_calculator/eserie.h +@@ -2,7 +2,7 @@ + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2020 +- * Copyright (C) 2020-2021 KiCad Developers, see AUTHORS.txt for contributors. ++ * Copyright (C) 2020-2022 KiCad Developers, see AUTHORS.txt for contributors. + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the +@@ -21,6 +21,7 @@ + #include + #include + #include ++#include + + /** + * E-Values derived from a geometric sequence formula by Charles Renard were already +-- +GitLab diff --git a/sci-electronics/kicad/kicad-6.0.9.ebuild b/sci-electronics/kicad/kicad-6.0.9.ebuild index 482f0ade6d2d..66c09b766366 100644 --- a/sci-electronics/kicad/kicad-6.0.9.ebuild +++ b/sci-electronics/kicad/kicad-6.0.9.ebuild @@ -77,6 +77,7 @@ CHECKREQS_DISK_BUILD="900M" PATCHES=( "${FILESDIR}/${PN}-scripts-install-fix.patch" "${FILESDIR}/${PN}-6.0.6-unitialized-variable-fix.patch" + "${FILESDIR}/${PN}-6.0.9-gcc-13.patch" ) pkg_setup() {