Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/uuidtools: uuidtools-1.0.7-r1.ebuild ChangeLog
Date: Mon, 04 May 2009 11:54:03
Message-Id: E1M0wk7-0001Ql-8C@stork.gentoo.org
1 flameeyes 09/05/04 11:53:55
2
3 Modified: uuidtools-1.0.7-r1.ebuild ChangeLog
4 Log:
5 Fix src_test when Ruby 1.9 is not present.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: uuidtools-1.0.7-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- uuidtools-1.0.7-r1.ebuild 27 Apr 2009 12:48:03 -0000 1.1
22 +++ uuidtools-1.0.7-r1.ebuild 4 May 2009 11:53:55 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild,v 1.1 2009/04/27 12:48:03 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uuidtools/uuidtools-1.0.7-r1.ebuild,v 1.2 2009/05/04 11:53:55 flameeyes Exp $
28
29 inherit ruby eutils
30
31 @@ -36,7 +36,8 @@
32
33 src_test() {
34 for ruby in $USE_RUBY; do
35 - [[ -n `type -p $ruby` ]] && $ruby $(type -p rake) spec:normal || die "testsuite failed"
36 + [[ -n `type -p $ruby` ]] || continue
37 + $ruby $(type -p rake) spec:normal || die "testsuite failed"
38 done
39 }
40
41
42
43
44 1.12 dev-ruby/uuidtools/ChangeLog
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/uuidtools/ChangeLog?rev=1.12&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/uuidtools/ChangeLog?rev=1.12&content-type=text/plain
48 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/uuidtools/ChangeLog?r1=1.11&r2=1.12
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/uuidtools/ChangeLog,v
53 retrieving revision 1.11
54 retrieving revision 1.12
55 diff -u -r1.11 -r1.12
56 --- ChangeLog 27 Apr 2009 12:48:03 -0000 1.11
57 +++ ChangeLog 4 May 2009 11:53:55 -0000 1.12
58 @@ -1,6 +1,10 @@
59 # ChangeLog for dev-ruby/uuidtools
60 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
61 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uuidtools/ChangeLog,v 1.11 2009/04/27 12:48:03 flameeyes Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/uuidtools/ChangeLog,v 1.12 2009/05/04 11:53:55 flameeyes Exp $
63 +
64 + 04 May 2009; Diego E. Pettenò <flameeyes@g.o>
65 + uuidtools-1.0.7-r1.ebuild:
66 + Fix src_test when Ruby 1.9 is not present.
67
68 *uuidtools-1.0.7-r1 (27 Apr 2009)