Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsignon-glib/
Date: Sat, 28 Oct 2017 20:52:53
Message-Id: 1509223961.7882e73b161e091c098dcd2dbf8071df48020930.asturm@gentoo
1 commit: 7882e73b161e091c098dcd2dbf8071df48020930
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 28 19:28:26 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 28 20:52:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7882e73b
7
8 net-libs/libsignon-glib: epatch->eapply, drop eutils, fix REQUIRED_USE
9
10 Gentoo-bug: 635122
11 Package-Manager: Portage-2.3.13, Repoman-2.3.4
12
13 net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild b/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild
17 index 83bffcb79c4..7a39014192a 100644
18 --- a/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild
19 +++ b/net-libs/libsignon-glib/libsignon-glib-1.13-r1.ebuild
20 @@ -1,10 +1,10 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 +# Copyright 1999-2017 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26
27 PYTHON_COMPAT=( python{2_7,3_4,3_5} )
28 -inherit autotools eutils python-r1 vcs-snapshot xdg-utils
29 +inherit autotools python-r1 vcs-snapshot xdg-utils
30
31 DESCRIPTION="GLib binding for the D-Bus API provided by signond"
32 HOMEPAGE="https://01.org/gsso/"
33 @@ -15,7 +15,7 @@ LICENSE="LGPL-2.1"
34 KEYWORDS="amd64 x86"
35 IUSE="debug doc +introspection python test"
36
37 -REQUIRED_USE="${PYTHON_REQUIRED_USE} python? ( introspection )"
38 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} introspection )"
39
40 RDEPEND="
41 dev-libs/glib:2
42 @@ -40,7 +40,7 @@ src_prepare() {
43 default
44
45 if ! use doc; then
46 - epatch "${FILESDIR}/${PN}-1.12-doc-disable.patch"
47 + eapply "${FILESDIR}/${PN}-1.12-doc-disable.patch"
48 fi
49
50 eautoreconf
51 @@ -83,5 +83,5 @@ src_install() {
52 if use python; then
53 python_foreach_impl run_in_build_dir default
54 fi
55 - prune_libtool_files
56 + find "${D}" -name '*.la' -delete || die
57 }