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/tzinfo: tzinfo-0.3.13.ebuild ChangeLog
Date: Mon, 04 May 2009 11:53:35
Message-Id: E1M0wjk-0001Oc-Ow@stork.gentoo.org
1 flameeyes 09/05/04 11:53:32
2
3 Modified: tzinfo-0.3.13.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.3 dev-ruby/tzinfo/tzinfo-0.3.13.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild?r1=1.2&r2=1.3
14
15 Index: tzinfo-0.3.13.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- tzinfo-0.3.13.ebuild 20 Apr 2009 00:33:13 -0000 1.2
22 +++ tzinfo-0.3.13.ebuild 4 May 2009 11:53:32 -0000 1.3
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/tzinfo/tzinfo-0.3.13.ebuild,v 1.2 2009/04/20 00:33:13 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/tzinfo-0.3.13.ebuild,v 1.3 2009/05/04 11:53:32 flameeyes Exp $
28
29 inherit ruby
30
31 @@ -41,7 +41,8 @@
32
33 src_test() {
34 for ruby in $USE_RUBY; do
35 - [[ -n `type -p $ruby` ]] && $ruby $(type -p rake) test || die "testsuite failed"
36 + [[ -n `type -p $ruby` ]] || continue
37 + $ruby $(type -p rake) test || die "testsuite failed"
38 done
39 }
40
41
42
43
44 1.33 dev-ruby/tzinfo/ChangeLog
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.33&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?rev=1.33&content-type=text/plain
48 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/tzinfo/ChangeLog?r1=1.32&r2=1.33
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v
53 retrieving revision 1.32
54 retrieving revision 1.33
55 diff -u -r1.32 -r1.33
56 --- ChangeLog 20 Apr 2009 20:06:26 -0000 1.32
57 +++ ChangeLog 4 May 2009 11:53:32 -0000 1.33
58 @@ -1,6 +1,10 @@
59 # ChangeLog for dev-ruby/tzinfo
60 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
61 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.32 2009/04/20 20:06:26 maekke Exp $
62 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tzinfo/ChangeLog,v 1.33 2009/05/04 11:53:32 flameeyes Exp $
63 +
64 + 04 May 2009; Diego E. Pettenò <flameeyes@g.o>
65 + tzinfo-0.3.13.ebuild:
66 + Fix src_test when Ruby 1.9 is not present.
67
68 20 Apr 2009; Markus Meier <maekke@g.o> tzinfo-0.3.12-r1:
69 x86 stable, bug #266520