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 2A9511382C5 for ; Mon, 19 Feb 2018 19:43:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4D22E0C58; Mon, 19 Feb 2018 19:43:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A5B47E0C58 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 5A739335C34 for ; Mon, 19 Feb 2018 19:43:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6E15232 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: <1519069211.12d356d589aa327bbee1339b23ac144c977f4e6c.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libcmis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/libcmis/libcmis-0.5.2_pre20160820-r1.ebuild dev-cpp/libcmis/libcmis-9999.ebuild X-VCS-Directories: dev-cpp/libcmis/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 12d356d589aa327bbee1339b23ac144c977f4e6c 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: e32aec3b-c629-4107-a2b6-d11cc285d7fa X-Archives-Hash: b4001d9dc7ff846a6b42afa2213ae946 commit: 12d356d589aa327bbee1339b23ac144c977f4e6c 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:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12d356d5 dev-cpp/libcmis: Always build in C++14 mode Closes: https://bugs.gentoo.org/618778 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-cpp/libcmis/libcmis-0.5.2_pre20160820-r1.ebuild | 7 +++++-- dev-cpp/libcmis/libcmis-9999.ebuild | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dev-cpp/libcmis/libcmis-0.5.2_pre20160820-r1.ebuild b/dev-cpp/libcmis/libcmis-0.5.2_pre20160820-r1.ebuild index ef3f0775329..8377602271d 100644 --- a/dev-cpp/libcmis/libcmis-0.5.2_pre20160820-r1.ebuild +++ b/dev-cpp/libcmis/libcmis-0.5.2_pre20160820-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 @@ -14,7 +14,7 @@ elif [[ ${PV} = *_pre* ]]; then else SRC_URI="https://github.com/tdf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi -inherit alternatives autotools ${SCM_ECLASS} +inherit alternatives autotools flag-o-matic ${SCM_ECLASS} unset SCM_ECLASS DESCRIPTION="C++ client library for the CMIS interface" @@ -59,6 +59,9 @@ src_prepare() { } src_configure() { + # bug 618778 + append-cxxflags -std=c++14 + econf \ --program-suffix=-${SLOT} \ --disable-werror \ diff --git a/dev-cpp/libcmis/libcmis-9999.ebuild b/dev-cpp/libcmis/libcmis-9999.ebuild index 603a0334c7d..78e5b1990a3 100644 --- a/dev-cpp/libcmis/libcmis-9999.ebuild +++ b/dev-cpp/libcmis/libcmis-9999.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 @@ -14,7 +14,7 @@ elif [[ ${PV} = *_pre* ]]; then else SRC_URI="https://github.com/tdf/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" fi -inherit alternatives autotools ${SCM_ECLASS} +inherit alternatives autotools flag-o-matic ${SCM_ECLASS} unset SCM_ECLASS DESCRIPTION="C++ client library for the CMIS interface" @@ -57,6 +57,9 @@ src_prepare() { } src_configure() { + # bug 618778 + append-cxxflags -std=c++14 + econf \ --program-suffix=-${SLOT} \ --disable-werror \