Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libhubbub/
Date: Fri, 25 Jan 2019 20:55:28
Message-Id: 1548449705.09c796445b6028ac922090727d4eba85fca06e1e.vdupras@gentoo
1 commit: 09c796445b6028ac922090727d4eba85fca06e1e
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 25 20:53:46 2019 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 25 20:55:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c79644
7
8 net-libs/libhubbub: fix test failure
9
10 Closes: https://bugs.gentoo.org/675836
11 Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
12 Package-Manager: Portage-2.3.51, Repoman-2.3.11
13
14 net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild | 7 ++++---
15 1 file changed, 4 insertions(+), 3 deletions(-)
16
17 diff --git a/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild b/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild
18 index d0a20d7641e..28a147d5b6d 100644
19 --- a/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild
20 +++ b/net-libs/libhubbub/libhubbub-0.3.5-r1.ebuild
21 @@ -1,9 +1,9 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 +# Copyright 1999-2019 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27
28 -inherit toolchain-funcs
29 +inherit toolchain-funcs flag-o-matic
30
31 DESCRIPTION="HTML5 compliant parsing library, written in C"
32 HOMEPAGE="http://www.netsurf-browser.org/projects/hubbub/"
33 @@ -22,7 +22,7 @@ DEPEND="${RDEPEND}
34 virtual/pkgconfig
35 test? (
36 dev-lang/perl
37 - >=dev-libs/json-c-0.10-r1
38 + <dev-libs/json-c-0.13
39 )"
40
41 DOCS=( README docs/{Architecture,Macros,Todo,Treebuilder,Updated} )
42 @@ -36,6 +36,7 @@ src_prepare() {
43 _emake() {
44 source /usr/share/netsurf-buildsystem/gentoo-helpers.sh
45 netsurf_define_makeconf
46 + append-cflags -Wno-error
47 emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@
48 }