Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/arora: arora-0.4.ebuild ChangeLog
Date: Thu, 06 Nov 2008 00:58:14
Message-Id: E1KxtCO-0008AV-6Q@stork.gentoo.org
1 yngwin 08/11/06 00:58:12
2
3 Modified: arora-0.4.ebuild ChangeLog
4 Log:
5 Die when make install fails, fixes bug 245454. And not allowing parallel make should fix the failure.
6 (Portage version: 2.2_rc13/cvs/Linux 2.6.26-hh3 i686)
7
8 Revision Changes Path
9 1.3 www-client/arora/arora-0.4.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/arora/arora-0.4.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/arora/arora-0.4.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/arora/arora-0.4.ebuild?r1=1.2&r2=1.3
14
15 Index: arora-0.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.4.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- arora-0.4.ebuild 1 Oct 2008 18:58:20 -0000 1.2
22 +++ arora-0.4.ebuild 6 Nov 2008 00:58:12 -0000 1.3
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.4.ebuild,v 1.2 2008/10/01 18:58:20 yngwin Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.4.ebuild,v 1.3 2008/11/06 00:58:12 yngwin Exp $
28
29 EAPI=2
30 inherit eutils qt4
31 @@ -60,6 +60,6 @@
32 }
33
34 src_install() {
35 - emake DESTDIR="${D}" install
36 + emake -j1 DESTDIR="${D}" install || die 'make install failed'
37 dodoc AUTHORS ChangeLog README
38 }
39
40
41
42 1.8 www-client/arora/ChangeLog
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/arora/ChangeLog?rev=1.8&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/arora/ChangeLog?rev=1.8&content-type=text/plain
46 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-client/arora/ChangeLog?r1=1.7&r2=1.8
47
48 Index: ChangeLog
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v
51 retrieving revision 1.7
52 retrieving revision 1.8
53 diff -u -r1.7 -r1.8
54 --- ChangeLog 1 Oct 2008 18:58:20 -0000 1.7
55 +++ ChangeLog 6 Nov 2008 00:58:12 -0000 1.8
56 @@ -1,6 +1,10 @@
57 # ChangeLog for www-client/arora
58 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
59 -# $Header: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v 1.7 2008/10/01 18:58:20 yngwin Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/www-client/arora/ChangeLog,v 1.8 2008/11/06 00:58:12 yngwin Exp $
61 +
62 + 06 Nov 2008; Ben de Groot <yngwin@g.o> arora-0.4.ebuild:
63 + Die when make install fails, fixes bug 245454. And not allowing parallel
64 + make should fix the failure.
65
66 01 Oct 2008; Ben de Groot <yngwin@g.o> arora-0.4.ebuild:
67 Fix to prevent pre-stripping binary (bug 239206)