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 8DFEC1382C5 for ; Mon, 19 Feb 2018 19:43:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACADAE0C5A; Mon, 19 Feb 2018 19:43:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 8BA4FE0C52 for ; Mon, 19 Feb 2018 19:43:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A7AD7335C5B for ; Mon, 19 Feb 2018 19:43:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C447E231 for ; Mon, 19 Feb 2018 19:42:41 +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: <1519069208.543adb508b78e2abcb84ff47cb8f7f8bb927e10b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sword/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/sword/sword-1.7.4-r1.ebuild X-VCS-Directories: app-text/sword/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 543adb508b78e2abcb84ff47cb8f7f8bb927e10b X-VCS-Branch: master Date: Mon, 19 Feb 2018 19:42:41 +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-Archives-Salt: 69dd4652-78b0-4364-ba58-a7b3310b1eda X-Archives-Hash: 19b01595e88ebac930f4304e63b6f464 commit: 543adb508b78e2abcb84ff47cb8f7f8bb927e10b Author: David Seifert gentoo org> AuthorDate: Mon Feb 19 18:17:20 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 19 19:40:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=543adb50 app-text/sword: Always build in C++14 mode Closes: https://bugs.gentoo.org/618776 Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-text/sword/sword-1.7.4-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-text/sword/sword-1.7.4-r1.ebuild b/app-text/sword/sword-1.7.4-r1.ebuild index be1fa4a3314..72b16688cc8 100644 --- a/app-text/sword/sword-1.7.4-r1.ebuild +++ b/app-text/sword/sword-1.7.4-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -47,6 +47,10 @@ src_prepare() { src_configure() { # TODO: Why is this here and can we remove it? strip-flags + + # bug 618776 + append-cxxflags -std=c++14 + econf \ $(use_enable static-libs static) \ $(use_enable debug) \