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/httpclient: httpclient-2.2.4.ebuild ChangeLog
Date: Sat, 28 Apr 2012 17:49:18
Message-Id: 20120428174907.BC2082004B@flycatcher.gentoo.org
1 graaff 12/04/28 17:49:07
2
3 Modified: httpclient-2.2.4.ebuild ChangeLog
4 Log:
5 Move test fixes forward to latest version.
6
7 (Portage version: 2.1.10.49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-ruby/httpclient/httpclient-2.2.4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httpclient/httpclient-2.2.4.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httpclient/httpclient-2.2.4.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httpclient/httpclient-2.2.4.ebuild?r1=1.2&r2=1.3
15
16 Index: httpclient-2.2.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/httpclient-2.2.4.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- httpclient-2.2.4.ebuild 14 Dec 2011 18:49:16 -0000 1.2
23 +++ httpclient-2.2.4.ebuild 28 Apr 2012 17:49:07 -0000 1.3
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2011 Gentoo Foundation
26 +# Copyright 1999-2012 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/httpclient-2.2.4.ebuild,v 1.2 2011/12/14 18:49:16 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/httpclient-2.2.4.ebuild,v 1.3 2012/04/28 17:49:07 graaff Exp $
30
31 EAPI=4
32
33 @@ -36,6 +36,13 @@
34 all_ruby_prepare () {
35 rm Gemfile || die
36 sed -i -e '/[bB]undler/s:^:#:' Rakefile || die
37 +
38 + # Comment out harmless test failures with ruby 1.8, bug 411191
39 + sed -i -e '228,268 s:^:#:' test/test_http-access2.rb || die
40 +
41 + # Comment out test requiring network access that makes assumptions
42 + # about the environment, bug 395155
43 + sed -i -e '/test_async_error/,/^ end/ s:^:#:' test/test_httpclient.rb || die
44 }
45
46 each_ruby_prepare() {
47
48
49
50 1.36 dev-ruby/httpclient/ChangeLog
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httpclient/ChangeLog?rev=1.36&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httpclient/ChangeLog?rev=1.36&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httpclient/ChangeLog?r1=1.35&r2=1.36
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/ChangeLog,v
59 retrieving revision 1.35
60 retrieving revision 1.36
61 diff -u -r1.35 -r1.36
62 --- ChangeLog 28 Apr 2012 17:41:51 -0000 1.35
63 +++ ChangeLog 28 Apr 2012 17:49:07 -0000 1.36
64 @@ -1,6 +1,9 @@
65 # ChangeLog for dev-ruby/httpclient
66 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/ChangeLog,v 1.35 2012/04/28 17:41:51 graaff Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/ChangeLog,v 1.36 2012/04/28 17:49:07 graaff Exp $
69 +
70 + 28 Apr 2012; Hans de Graaff <graaff@g.o> httpclient-2.2.4.ebuild:
71 + Move test fixes forward to latest version.
72
73 28 Apr 2012; Hans de Graaff <graaff@g.o> httpclient-2.2.2.ebuild:
74 Comment out test relying on specific DNS results, bug 395155.