Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libabw/
Date: Mon, 19 Feb 2018 19:43:12
Message-Id: 1519069199.4854a7de6a7a43a0a3bb86468df1cfea512ec656.soap@gentoo
1 commit: 4854a7de6a7a43a0a3bb86468df1cfea512ec656
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 19 18:17:19 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 19 19:39:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4854a7de
7
8 app-text/libabw: Always build in C++14 mode
9
10 Closes: https://bugs.gentoo.org/619470
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12 Closes: https://github.com/gentoo/gentoo/pull/7222
13
14 app-text/libabw/libabw-0.1.1.ebuild | 7 +++++--
15 app-text/libabw/libabw-0.1.2.ebuild | 5 ++++-
16 2 files changed, 9 insertions(+), 3 deletions(-)
17
18 diff --git a/app-text/libabw/libabw-0.1.1.ebuild b/app-text/libabw/libabw-0.1.1.ebuild
19 index 617c9c18aad..a1015d7310f 100644
20 --- a/app-text/libabw/libabw-0.1.1.ebuild
21 +++ b/app-text/libabw/libabw-0.1.1.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=6
28
29 -inherit autotools
30 +inherit autotools flag-o-matic
31
32 DESCRIPTION="Library parsing abiword documents"
33 HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libabw"
34 @@ -39,6 +39,9 @@ src_prepare() {
35 }
36
37 src_configure() {
38 + # bug 619470
39 + append-cxxflags -std=c++14
40 +
41 econf \
42 --disable-werror \
43 $(use_with doc docs) \
44
45 diff --git a/app-text/libabw/libabw-0.1.2.ebuild b/app-text/libabw/libabw-0.1.2.ebuild
46 index 9db45bfc4cf..b9c4771fff7 100644
47 --- a/app-text/libabw/libabw-0.1.2.ebuild
48 +++ b/app-text/libabw/libabw-0.1.2.ebuild
49 @@ -3,7 +3,7 @@
50
51 EAPI=6
52
53 -inherit autotools
54 +inherit autotools flag-o-matic
55
56 DESCRIPTION="Library parsing abiword documents"
57 HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libabw"
58 @@ -32,6 +32,9 @@ src_prepare() {
59 }
60
61 src_configure() {
62 + # bug 619470
63 + append-cxxflags -std=c++14
64 +
65 econf \
66 --disable-werror \
67 $(use_with doc docs) \