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/httparty: ChangeLog httparty-0.13.1.ebuild
Date: Sat, 03 May 2014 06:18:32
Message-Id: 20140503061828.B20702004C@flycatcher.gentoo.org
1 graaff 14/05/03 06:18:28
2
3 Modified: ChangeLog
4 Added: httparty-0.13.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.29 dev-ruby/httparty/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/httparty/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 6 Mar 2014 16:14:25 -0000 1.28
24 +++ ChangeLog 3 May 2014 06:18:28 -0000 1.29
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/httparty
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httparty/ChangeLog,v 1.28 2014/03/06 16:14:25 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httparty/ChangeLog,v 1.29 2014/05/03 06:18:28 graaff Exp $
30 +
31 +*httparty-0.13.1 (03 May 2014)
32 +
33 + 03 May 2014; Hans de Graaff <graaff@g.o> +httparty-0.13.1.ebuild:
34 + Version bump.
35
36 *httparty-0.13.0 (06 Mar 2014)
37
38
39
40
41 1.1 dev-ruby/httparty/httparty-0.13.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/httparty-0.13.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/httparty-0.13.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: httparty-0.13.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/httparty/httparty-0.13.1.ebuild,v 1.1 2014/05/03 06:18:28 graaff Exp $
51
52 EAPI=5
53
54 # jruby → testsuite fails (seems like a testuite bug)
55 USE_RUBY="ruby19"
56
57 # We have a custom test function, but don't null this out so that the
58 # deps are still added
59 RUBY_FAKEGEM_TASK_TEST="none"
60
61 RUBY_FAKEGEM_TASK_DOC=""
62 RUBY_FAKEGEM_EXTRADOC="README.md History"
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead easy."
67 HOMEPAGE="http://httparty.rubyforge.org/"
68
69 LICENSE="MIT"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ppc ~x86"
72 IUSE=""
73
74 ruby_add_rdepend '=dev-ruby/multi_json-1* >=dev-ruby/multi_xml-0.5.2'
75
76 ruby_add_bdepend 'dev-ruby/rspec:0 dev-ruby/fakeweb'
77
78 all_ruby_prepare() {
79 # Remove bundler
80 rm Gemfile || die
81 sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
82
83 # sed -i -e '/git ls-files/ s:^:#:' ${PN}.gemspec || die
84 }
85
86 each_ruby_test() {
87 ${RUBY} -S rake spec || die
88 }
89
90 all_ruby_install() {
91 all_fakegem_install
92
93 docinto examples
94 dodoc examples/*
95 }