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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F98A139337 for ; Sun, 1 Aug 2021 20:41:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87072E0949; Sun, 1 Aug 2021 20:41:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 71455E0949 for ; Sun, 1 Aug 2021 20:41:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A59E342E17 for ; Sun, 1 Aug 2021 20:41:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8DEC78A for ; Sun, 1 Aug 2021 20:41:33 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1627850467.239adf34dfb7ac62bd6d118e4909b05386c3a770.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/veracrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/veracrypt/veracrypt-1.24_p8.ebuild X-VCS-Directories: app-crypt/veracrypt/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 239adf34dfb7ac62bd6d118e4909b05386c3a770 X-VCS-Branch: master Date: Sun, 1 Aug 2021 20:41:33 +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: ed2a155d-8db8-42cd-9a88-ce18ab95f165 X-Archives-Hash: 4ed6fbfa7fbacb1875934eacef680759 commit: 239adf34dfb7ac62bd6d118e4909b05386c3a770 Author: David Seifert gentoo org> AuthorDate: Sun Aug 1 20:41:07 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 1 20:41:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=239adf34 app-crypt/veracrypt: Fix build with GCC 11 Closes: https://bugs.gentoo.org/786741 Signed-off-by: David Seifert gentoo.org> app-crypt/veracrypt/veracrypt-1.24_p8.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-crypt/veracrypt/veracrypt-1.24_p8.ebuild b/app-crypt/veracrypt/veracrypt-1.24_p8.ebuild index e4a53800c6d..513ddf48256 100644 --- a/app-crypt/veracrypt/veracrypt-1.24_p8.ebuild +++ b/app-crypt/veracrypt/veracrypt-1.24_p8.ebuild @@ -4,7 +4,7 @@ EAPI=7 WX_GTK_VER="3.0-gtk3" -inherit desktop linux-info pax-utils toolchain-funcs wxwidgets +inherit desktop flag-o-matic linux-info pax-utils toolchain-funcs wxwidgets MY_PV="$(ver_cut 1-2)-Update$(ver_cut 4)_MacOSX" @@ -38,6 +38,10 @@ CONFIG_CHECK="~BLK_DEV_DM ~CRYPTO ~CRYPTO_XTS ~DM_CRYPT ~FUSE_FS" src_configure() { setup-wxwidgets + + # https://bugs.gentoo.org/786741 + # std::byte clashes with src/Common/Tcdefs.h typedef + append-cxxflags -std=c++14 } src_compile() {