Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/capistrano: ChangeLog capistrano-2.9.0.ebuild
Date: Sat, 28 Apr 2012 18:46:04
Message-Id: 20120428184553.DB6F62004B@flycatcher.gentoo.org
1 graaff 12/04/28 18:45:53
2
3 Modified: ChangeLog capistrano-2.9.0.ebuild
4 Log:
5 Remove more bundler references and unstated and unneeded ruby-debug dependency. Don't run failing tests. Bug 395657.
6
7 (Portage version: 2.1.10.49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.75 dev-ruby/capistrano/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/capistrano/ChangeLog?rev=1.75&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/capistrano/ChangeLog?rev=1.75&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/capistrano/ChangeLog?r1=1.74&r2=1.75
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/ChangeLog,v
19 retrieving revision 1.74
20 retrieving revision 1.75
21 diff -u -r1.74 -r1.75
22 --- ChangeLog 22 Dec 2011 14:36:56 -0000 1.74
23 +++ ChangeLog 28 Apr 2012 18:45:53 -0000 1.75
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-ruby/capistrano
26 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/ChangeLog,v 1.74 2011/12/22 14:36:56 ago Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/ChangeLog,v 1.75 2012/04/28 18:45:53 graaff Exp $
30 +
31 + 28 Apr 2012; Hans de Graaff <graaff@g.o> capistrano-2.9.0.ebuild:
32 + Remove more bundler references and unstated and unneeded ruby-debug
33 + dependency. Don't run failing tests. Bug 395657.
34
35 22 Dec 2011; Agostino Sarubbo <ago@g.o> capistrano-2.9.0.ebuild:
36 Stable for AMD64, wrt bug #395657
37
38
39
40 1.3 dev-ruby/capistrano/capistrano-2.9.0.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/capistrano/capistrano-2.9.0.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/capistrano/capistrano-2.9.0.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/capistrano/capistrano-2.9.0.ebuild?r1=1.2&r2=1.3
45
46 Index: capistrano-2.9.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/capistrano-2.9.0.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- capistrano-2.9.0.ebuild 22 Dec 2011 14:36:56 -0000 1.2
53 +++ capistrano-2.9.0.ebuild 28 Apr 2012 18:45:53 -0000 1.3
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2011 Gentoo Foundation
56 +# Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/capistrano-2.9.0.ebuild,v 1.2 2011/12/22 14:36:56 ago Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/capistrano/capistrano-2.9.0.ebuild,v 1.3 2012/04/28 18:45:53 graaff Exp $
60
61 EAPI="2"
62 USE_RUBY="ruby18"
63 @@ -29,5 +29,15 @@
64
65 all_ruby_prepare() {
66 rm Gemfile || die
67 - sed -i -e '/[Bb]undler/d' Rakefile || die
68 + sed -i -e '/[Bb]undler/d' Rakefile test/utils.rb || die
69 + sed -i -e '/ruby-debug/ s:^:#:' test/utils.rb || die
70 +
71 + # Comment out test failing to a similar namespace defined in new
72 + # versions of Rake, already fixed in newer versions of capistrano.
73 + rm test/recipes_test.rb || die
74 +
75 + # Avoid copy strategy tests since these fail in some cases due to
76 + # complicated (aka unknown) interactions with other parts of the
77 + # test suite.
78 + rm test/deploy/strategy/copy_test.rb || die
79 }