Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/uriparser/
Date: Mon, 05 Oct 2015 16:28:16
Message-Id: 1444062344.d861ab7b23746e0f1242662c19e713e11f197aba.sping@gentoo
1 commit: d861ab7b23746e0f1242662c19e713e11f197aba
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 5 16:25:42 2015 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 5 16:25:44 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d861ab7b
7
8 dev-libs/uriparser: Improve on QA issues
9
10 .. pointed out by @hasufell at
11 https://github.com/gentoo/gentoo/commit/2114f96d146d19c46c6b6849ccc22b4a278d8730
12
13 dev-libs/uriparser/uriparser-0.8.3.ebuild | 11 +++++------
14 1 file changed, 5 insertions(+), 6 deletions(-)
15
16 diff --git a/dev-libs/uriparser/uriparser-0.8.3.ebuild b/dev-libs/uriparser/uriparser-0.8.3.ebuild
17 index de49e8c..a52452d 100644
18 --- a/dev-libs/uriparser/uriparser-0.8.3.ebuild
19 +++ b/dev-libs/uriparser/uriparser-0.8.3.ebuild
20 @@ -2,7 +2,7 @@
21 # Distributed under the terms of the GNU General Public License v2
22 # $Id$
23
24 -EAPI=4
25 +EAPI=5
26
27 DESCRIPTION="Uriparser is a strictly RFC 3986 compliant URI parsing library in C"
28 HOMEPAGE="http://uriparser.sourceforge.net/"
29 @@ -28,16 +28,15 @@ src_configure() {
30 --enable-char \
31 $(use_enable unicode wchar_t) \
32 $(use_enable doc) \
33 - --disable-dependency-tracking \
34 --docdir=/usr/share/doc/${PF}/
35 }
36
37 src_install() {
38 - emake DESTDIR="${D}" install || die "make install failed"
39 - dodoc AUTHORS ChangeLog THANKS || die
40 + emake DESTDIR="${D}" install
41 + dodoc AUTHORS ChangeLog THANKS
42
43 if use doc && use qt4; then
44 - insinto /usr/share/doc/${PF}/
45 - doins doc/*.qch || die # Using doins to avoid dodoc's compression
46 + dodoc doc/*.qch
47 + docompress -x /usr/share/doc/${PF}/${P}.qch
48 fi
49 }