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 787A81382C5 for ; Mon, 19 Feb 2018 19:43:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98795E0C33; Mon, 19 Feb 2018 19:43: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 75470E0C32 for ; Mon, 19 Feb 2018 19:43:12 +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 B9848335C43 for ; Mon, 19 Feb 2018 19:43:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E394216 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: <1519069202.06111229ebf32f3b305a5c02c8278d68bf2e7cc2.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libebook/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libebook/libebook-0.1.2-r1.ebuild app-text/libebook/libebook-0.1.3.ebuild X-VCS-Directories: app-text/libebook/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 06111229ebf32f3b305a5c02c8278d68bf2e7cc2 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: aad1dd8c-2c97-44d5-a763-50cbe76476e1 X-Archives-Hash: 366f4af054669e71c3ca3a02715789c3 commit: 06111229ebf32f3b305a5c02c8278d68bf2e7cc2 Author: David Seifert gentoo org> AuthorDate: Mon Feb 19 18:17:19 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 19 19:40:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06111229 app-text/libebook: Always build in C++14 mode Closes: https://bugs.gentoo.org/618854 Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-text/libebook/libebook-0.1.2-r1.ebuild | 7 +++++-- app-text/libebook/libebook-0.1.3.ebuild | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/app-text/libebook/libebook-0.1.2-r1.ebuild b/app-text/libebook/libebook-0.1.2-r1.ebuild index 53975fc2cc1..f7039345c93 100644 --- a/app-text/libebook/libebook-0.1.2-r1.ebuild +++ b/app-text/libebook/libebook-0.1.2-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 @@ -6,7 +6,7 @@ EAPI=6 MY_PN="libe-book" MY_P="${MY_PN}-${PV}" -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Library parsing various ebook formats" HOMEPAGE="http://www.sourceforge.net/projects/libebook/" @@ -45,6 +45,9 @@ src_prepare() { } src_configure() { + # bug 618854 + append-cxxflags -std=c++14 + econf \ --disable-static \ --disable-werror \ diff --git a/app-text/libebook/libebook-0.1.3.ebuild b/app-text/libebook/libebook-0.1.3.ebuild index e58db48faea..381b4866c42 100644 --- a/app-text/libebook/libebook-0.1.3.ebuild +++ b/app-text/libebook/libebook-0.1.3.ebuild @@ -6,7 +6,7 @@ EAPI=6 MY_PN="libe-book" MY_P="${MY_PN}-${PV}" -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Library parsing various ebook formats" HOMEPAGE="http://www.sourceforge.net/projects/libebook/" @@ -41,6 +41,9 @@ src_prepare() { } src_configure() { + # bug 618854 + append-cxxflags -std=c++14 + econf \ --disable-static \ --disable-werror \