Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/gjs/
Date: Mon, 02 Sep 2019 14:14:17
Message-Id: 1567433083.da77cabcae7381d4e56cb56918af3cc8b541f1af.leio@gentoo
1 commit: da77cabcae7381d4e56cb56918af3cc8b541f1af
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 2 14:04:16 2019 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 2 14:04:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da77cabc
7
8 dev-libs/gjs-1.56.2: get tests to pass
9
10 Disabled Xvfb tests for now, as some of them are having issues with discussions
11 with upstream ongoing.
12 Wrap the tests run inside dbus-run-session, despite upstream Makefiles trying
13 to do that already for some tests - seem to be missing for some, or other
14 mysterious problems when not doing our own dbus-run-session too.
15
16 Package-Manager: Portage-2.3.69, Repoman-2.3.12
17 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
18
19 dev-libs/gjs/gjs-1.56.2.ebuild | 7 ++++---
20 1 file changed, 4 insertions(+), 3 deletions(-)
21
22 diff --git a/dev-libs/gjs/gjs-1.56.2.ebuild b/dev-libs/gjs/gjs-1.56.2.ebuild
23 index 071966de153..d436481cec5 100644
24 --- a/dev-libs/gjs/gjs-1.56.2.ebuild
25 +++ b/dev-libs/gjs/gjs-1.56.2.ebuild
26 @@ -44,8 +44,9 @@ src_configure() {
27 $(use_with gtk) \
28 $(use_enable readline) \
29 $(use_with test dbus-tests) \
30 - $(use_with test xvfb-tests) \
31 - --disable-installed-tests
32 + --disable-installed-tests \
33 + --without-xvfb-tests
34 + #$(use_with test xvfb-tests) # https://gitlab.gnome.org/GNOME/gjs/issues/280
35 }
36
37 src_install() {
38 @@ -62,5 +63,5 @@ src_install() {
39 }
40
41 src_test() {
42 - virtx default
43 + virtx dbus-run-session emake check || die
44 }