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 C9E1D15800F for ; Wed, 15 Feb 2023 08:29:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3233E07C5; Wed, 15 Feb 2023 08:29:12 +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 AE33FE07C5 for ; Wed, 15 Feb 2023 08:29:12 +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 8F14D340E0E for ; Wed, 15 Feb 2023 08:29:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 397488A9 for ; Wed, 15 Feb 2023 08:29:09 +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: <1676449610.e0a0a09c1bb283024c1a10f737eba380a22bcc1f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/calligra/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/calligra/calligra-3.2.1-r5.ebuild X-VCS-Directories: app-office/calligra/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e0a0a09c1bb283024c1a10f737eba380a22bcc1f X-VCS-Branch: master Date: Wed, 15 Feb 2023 08:29:09 +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: 02203e2a-94c3-4527-80d3-d2f938af9718 X-Archives-Hash: 6222dfebd26d66e23b16caa52aaff888 commit: e0a0a09c1bb283024c1a10f737eba380a22bcc1f Author: Sam James gentoo org> AuthorDate: Wed Feb 15 08:26:26 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 15 08:26:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0a0a09c app-office/calligra: fix build w/ clang 16 It's fixed upstream in a very large commit which can't be applied cleanly to 3.2.1-r5. We can drop this workaround upon the next release though. Closes: https://bugs.gentoo.org/883067 Signed-off-by: Sam James gentoo.org> app-office/calligra/calligra-3.2.1-r5.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-office/calligra/calligra-3.2.1-r5.ebuild b/app-office/calligra/calligra-3.2.1-r5.ebuild index 49246e3bca3d..f26074e74960 100644 --- a/app-office/calligra/calligra-3.2.1-r5.ebuild +++ b/app-office/calligra/calligra-3.2.1-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,7 +8,7 @@ ECM_HANDBOOK="forceoptional" ECM_TEST="forceoptional" KFMIN=5.88.0 QTMIN=5.15.2 -inherit check-reqs ecm kde.org +inherit check-reqs ecm flag-o-matic kde.org DESCRIPTION="KDE Office Suite" HOMEPAGE="https://calligra.org/" @@ -144,6 +144,9 @@ src_prepare() { src_configure() { local cal_ft myproducts + # Uses removed 'register' keyword, drop on next release. bug #883067 + append-cxxflags -std=c++14 + # applications for cal_ft in ${CAL_FTS[@]}; do use calligra_features_${cal_ft} && myproducts+=( "${cal_ft^^}" )