From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1004577-garchives=archives.gentoo.org@lists.gentoo.org> 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 833C0138332 for <garchives@archives.gentoo.org>; Mon, 19 Feb 2018 19:43:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEA0CE0C57; Mon, 19 Feb 2018 19:43:13 +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 A21B6E0C52 for <gentoo-commits@lists.gentoo.org>; Mon, 19 Feb 2018 19:43:13 +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 C5863335C54 for <gentoo-commits@lists.gentoo.org>; Mon, 19 Feb 2018 19:43:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 658C223F for <gentoo-commits@lists.gentoo.org>; Mon, 19 Feb 2018 19:42:42 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> 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" <soap@gentoo.org> Message-ID: <1519069232.a73c3126a8421173437c7bb100aec8e100ae399b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvisio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libvisio/libvisio-0.1.6.ebuild media-libs/libvisio/libvisio-9999.ebuild X-VCS-Directories: media-libs/libvisio/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a73c3126a8421173437c7bb100aec8e100ae399b X-VCS-Branch: master Date: Mon, 19 Feb 2018 19:42:42 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e5ab5464-eea3-4666-b522-a0e6d97bb08f X-Archives-Hash: 3ff968926e6ea22d372d42a4654d9b49 commit: a73c3126a8421173437c7bb100aec8e100ae399b Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Mon Feb 19 18:17:20 2018 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Mon Feb 19 19:40:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a73c3126 media-libs/libvisio: Always build in C++14 mode Closes: https://bugs.gentoo.org/619688 Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-libs/libvisio/libvisio-0.1.6.ebuild | 7 ++++++- media-libs/libvisio/libvisio-9999.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/media-libs/libvisio/libvisio-0.1.6.ebuild b/media-libs/libvisio/libvisio-0.1.6.ebuild index 404db3604d3..ccb6e687a43 100644 --- a/media-libs/libvisio/libvisio-0.1.6.ebuild +++ b/media-libs/libvisio/libvisio-0.1.6.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit flag-o-matic + EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libvisio.git" [[ ${PV} == 9999 ]] && inherit autotools git-r3 @@ -38,6 +40,9 @@ src_prepare() { } src_configure() { + # bug 619688 + append-cxxflags -std=c++14 + econf \ $(use_with doc docs) \ $(use_enable static-libs static) \ diff --git a/media-libs/libvisio/libvisio-9999.ebuild b/media-libs/libvisio/libvisio-9999.ebuild index 79aa9cdc018..1f7cc355b43 100644 --- a/media-libs/libvisio/libvisio-9999.ebuild +++ b/media-libs/libvisio/libvisio-9999.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 +inherit flag-o-matic + EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libvisio.git" [[ ${PV} == 9999 ]] && inherit autotools git-r3 @@ -38,6 +40,9 @@ src_prepare() { } src_configure() { + # bug 619688 + append-cxxflags -std=c++14 + econf \ $(use_with doc docs) \ $(use_enable static-libs static) \