Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libaccounts-glib/
Date: Mon, 21 Sep 2015 15:20:38
Message-Id: 1442848810.f76cd535db994f9435df53573979c9683feb79db.kensington@gentoo
1 commit: f76cd535db994f9435df53573979c9683feb79db
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 20 21:13:47 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 21 15:20:10 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76cd535
7
8 net-libs/libaccounts-glib: Really disable broken tests
9
10 Bug: https://bugs.gentoo.org/show_bug.cgi?id=560656
11
12 Package-Manager: portage-2.2.20.1
13
14 net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild | 11 +++--------
15 1 file changed, 3 insertions(+), 8 deletions(-)
16
17 diff --git a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
18 index 6f974fb..b3373fd 100644
19 --- a/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
20 +++ b/net-libs/libaccounts-glib/libaccounts-glib-1.18.ebuild
21 @@ -4,8 +4,6 @@
22
23 EAPI=5
24
25 -inherit autotools
26 -
27 DESCRIPTION="Accounts SSO (Single Sign-On) management library for GLib applications"
28 HOMEPAGE="https://01.org/gsso/"
29 SRC_URI="http://dev.gentoo.org/~kensington/distfiles/${P}.tar.gz"
30 @@ -24,12 +22,9 @@ DEPEND="
31
32 RDEPEND="$DEPEND"
33
34 -src_prepare() {
35 - sed -i -e "/tests\/Makefile/d" configure.ac || die
36 - eautoreconf
37 -}
38 -
39 src_configure() {
40 export HAVE_GCOV_FALSE='#'
41 - econf $(use_enable debug)
42 + econf \
43 + $(use_enable debug) \
44 + --disable-tests
45 }