Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/libgnome-keyring: ChangeLog libgnome-keyring-2.30.1.ebuild
Date: Mon, 06 Sep 2010 12:15:30
Message-Id: 20100906121523.C1C1C20051@flycatcher.gentoo.org
1 pacho 10/09/06 12:15:23
2
3 Modified: ChangeLog libgnome-keyring-2.30.1.ebuild
4 Log:
5 Fix running tests on console, bug 323661.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.7 gnome-base/libgnome-keyring/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog?r1=1.6&r2=1.7
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- ChangeLog 11 Aug 2010 16:26:23 -0000 1.6
22 +++ ChangeLog 6 Sep 2010 12:15:23 -0000 1.7
23 @@ -1,6 +1,10 @@
24 # ChangeLog for gnome-base/libgnome-keyring
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.6 2010/08/11 16:26:23 josejx Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/ChangeLog,v 1.7 2010/09/06 12:15:23 pacho Exp $
28 +
29 + 06 Sep 2010; Pacho Ramos <pacho@g.o>
30 + libgnome-keyring-2.30.1.ebuild:
31 + Fix running tests on console, bug 323661.
32
33 11 Aug 2010; Joseph Jezak <josejx@g.o>
34 libgnome-keyring-2.30.1.ebuild:
35
36
37
38 1.7 gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild?r1=1.6&r2=1.7
43
44 Index: libgnome-keyring-2.30.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- libgnome-keyring-2.30.1.ebuild 11 Aug 2010 16:26:23 -0000 1.6
51 +++ libgnome-keyring-2.30.1.ebuild 6 Sep 2010 12:15:23 -0000 1.7
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild,v 1.6 2010/08/11 16:26:23 josejx Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libgnome-keyring/libgnome-keyring-2.30.1.ebuild,v 1.7 2010/09/06 12:15:23 pacho Exp $
57
58 EAPI=2
59
60 @@ -30,3 +30,8 @@
61 $(use_enable debug)
62 $(use_enable test tests)"
63 }
64 +
65 +src_test() {
66 + # Needed to run tests on console, bug #323661
67 + dbus-launch emake check || die "tests failed"
68 +}