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 4B28D1382C5 for ; Tue, 23 Jun 2020 08:48:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71057E0837; Tue, 23 Jun 2020 08:48:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 53D71E0837 for ; Tue, 23 Jun 2020 08:48:12 +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 2BFE534F258 for ; Tue, 23 Jun 2020 08:48:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50F2A2A4 for ; Tue, 23 Jun 2020 08:48:09 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1592902083.f06a09623408b03131890042efcafc84c203be7c.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/hteditor/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/hteditor/hteditor-2.1.0-r1.ebuild X-VCS-Directories: app-editors/hteditor/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: f06a09623408b03131890042efcafc84c203be7c X-VCS-Branch: master Date: Tue, 23 Jun 2020 08:48: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: a9895edf-c3f1-488a-a00f-639bd9e66582 X-Archives-Hash: 272b1ed54f6788786170163961020092 commit: f06a09623408b03131890042efcafc84c203be7c Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Jun 23 08:47:54 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Jun 23 08:48:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06a0962 app-editors/hteditor: force -std=c++98 Workaround build failure on clang by downgrading doen to C++ 98. Reported-by: Agostino Sarubbo Bug: https://bugs.gentoo.org/729252 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich gentoo.org> app-editors/hteditor/hteditor-2.1.0-r1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-editors/hteditor/hteditor-2.1.0-r1.ebuild b/app-editors/hteditor/hteditor-2.1.0-r1.ebuild index 16a7ab4322f..5b912857bc6 100644 --- a/app-editors/hteditor/hteditor-2.1.0-r1.ebuild +++ b/app-editors/hteditor/hteditor-2.1.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit autotools toolchain-funcs +inherit autotools flag-o-matic toolchain-funcs MY_P=${P/editor} @@ -39,6 +39,12 @@ PATCHES=( src_prepare() { default eautoreconf + + # Many literals are concatenated with macro definitions. + # Instead of patching them all let's pick old c++ standard + # and port to c++11 upstream. + # https://bugs.gentoo.org/729252 + append-cxxflags -std=c++98 } src_configure() {