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/http: http-0.8.12.ebuild ChangeLog
Date: Sat, 30 May 2015 05:06:20
Message-Id: 20150530050610.46B85A04@oystercatcher.gentoo.org
1 graaff 15/05/30 05:06:10
2
3 Modified: ChangeLog
4 Added: http-0.8.12.ebuild
5 Log:
6 Version bump. Drop ruby22 and ppc, ppc64, x86 keywords due to new dependencies, bug 550798.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.17 dev-ruby/http/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/http/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/http/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/http/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/http/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 11 Apr 2015 08:29:09 -0000 1.16
24 +++ ChangeLog 30 May 2015 05:06:10 -0000 1.17
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/http
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/http/ChangeLog,v 1.16 2015/04/11 08:29:09 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/http/ChangeLog,v 1.17 2015/05/30 05:06:10 graaff Exp $
30 +
31 +*http-0.8.12 (30 May 2015)
32 +
33 + 30 May 2015; Hans de Graaff <graaff@g.o> +http-0.8.12.ebuild:
34 + Version bump. Drop ruby22 and ppc, ppc64, x86 keywords due to new
35 + dependencies, bug 550798.
36
37 11 Apr 2015; Hans de Graaff <graaff@g.o> http-0.6.3-r1.ebuild:
38 Add ruby22.
39
40
41
42 1.1 dev-ruby/http/http-0.8.12.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/http/http-0.8.12.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/http/http-0.8.12.ebuild?rev=1.1&content-type=text/plain
46
47 Index: http-0.8.12.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/http/http-0.8.12.ebuild,v 1.1 2015/05/30 05:06:10 graaff Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
57
58 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
59 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="An easy-to-use client library for making requests from Ruby"
64 HOMEPAGE="https://github.com/tarcieri/http"
65
66 LICENSE="MIT"
67 SLOT="0.8"
68 KEYWORDS="~amd64"
69 IUSE=""
70
71 ruby_add_rdepend "
72 >=dev-ruby/addressable-2.3
73 >=dev-ruby/http-cookie-1.0
74 >=dev-ruby/http-form_data-1.0.1:1.0
75 >=dev-ruby/http_parser_rb-0.6.0 =dev-ruby/http_parser_rb-0.6*"
76
77 ruby_add_bdepend "
78 test? ( dev-ruby/certificate_authority dev-ruby/rspec-its )"
79
80 all_ruby_prepare() {
81 sed -i -e '/simplecov/,/end/ s:^:#:' \
82 -e '1irequire "cgi"' spec/spec_helper.rb || die
83 }