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: httparty-0.13.5.ebuild ChangeLog
Date: Sun, 31 May 2015 05:46:46
Message-Id: 20150531054639.9C8C5A14@oystercatcher.gentoo.org
1 graaff 15/05/31 05:46:39
2
3 Modified: ChangeLog
4 Added: httparty-0.13.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.39 dev-ruby/httparty/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/ChangeLog?rev=1.39&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/ChangeLog?rev=1.39&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/ChangeLog?r1=1.38&r2=1.39
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/httparty/ChangeLog,v
20 retrieving revision 1.38
21 retrieving revision 1.39
22 diff -u -r1.38 -r1.39
23 --- ChangeLog 16 May 2015 08:20:24 -0000 1.38
24 +++ ChangeLog 31 May 2015 05:46:39 -0000 1.39
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/httparty
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httparty/ChangeLog,v 1.38 2015/05/16 08:20:24 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httparty/ChangeLog,v 1.39 2015/05/31 05:46:39 graaff Exp $
30 +
31 +*httparty-0.13.5 (31 May 2015)
32 +
33 + 31 May 2015; Hans de Graaff <graaff@g.o> +httparty-0.13.5.ebuild:
34 + Version bump.
35
36 16 May 2015; Hans de Graaff <graaff@g.o> -httparty-0.13.1.ebuild:
37 Cleanup.
38
39
40
41 1.1 dev-ruby/httparty/httparty-0.13.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/httparty-0.13.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/httparty/httparty-0.13.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: httparty-0.13.5.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.5.ebuild,v 1.1 2015/05/31 05:46:39 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 # We have a custom test function, but don't null this out so that the
57 # deps are still added
58 RUBY_FAKEGEM_TASK_TEST="none"
59
60 RUBY_FAKEGEM_TASK_DOC=""
61 RUBY_FAKEGEM_EXTRADOC="README.md History"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead easy"
66 HOMEPAGE="http://jnunemaker.github.com/httparty"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~x86"
71 IUSE=""
72
73 ruby_add_rdepend '>=dev-ruby/json-1.8:0 >=dev-ruby/multi_xml-0.5.2'
74
75 ruby_add_bdepend 'dev-ruby/rspec:3 dev-ruby/fakeweb'
76
77 all_ruby_prepare() {
78 # Remove bundler
79 rm Gemfile || die
80 sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
81
82 # Avoid test dependency on cucumber. We can't run the features since
83 # they depend on mongrel which is no longer packaged.
84 sed -i -e '/cucumber/I s:^:#:' Rakefile || die
85 }
86
87 each_ruby_test() {
88 ${RUBY} -S rake spec || die
89 }
90
91 all_ruby_install() {
92 all_fakegem_install
93
94 docinto examples
95 dodoc examples/*
96 }