Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http-form_data/
Date: Tue, 26 Apr 2016 05:29:44
Message-Id: 1461648540.a4f789a149ff7f91317f4c4df246bbd68e49fb02.graaff@gentoo
1 commit: a4f789a149ff7f91317f4c4df246bbd68e49fb02
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 05:29:00 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 05:29:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f789a1
7
8 dev-ruby/http-form_data: add ruby23 revision
9
10 Drop x86 keyword due to bug 562452
11
12 Package-Manager: portage-2.2.26
13
14 .../http-form_data/http-form_data-1.0.1-r1.ebuild | 25 ++++++++++++++++++++++
15 1 file changed, 25 insertions(+)
16
17 diff --git a/dev-ruby/http-form_data/http-form_data-1.0.1-r1.ebuild b/dev-ruby/http-form_data/http-form_data-1.0.1-r1.ebuild
18 new file mode 100644
19 index 0000000..6da3eb6
20 --- /dev/null
21 +++ b/dev-ruby/http-form_data/http-form_data-1.0.1-r1.ebuild
22 @@ -0,0 +1,25 @@
23 +# Copyright 1999-2016 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=5
28 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
29 +
30 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
31 +
32 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
33 +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
34 +
35 +inherit ruby-fakegem
36 +
37 +DESCRIPTION="Utility-belt to build form data request bodies"
38 +HOMEPAGE="https://github.com/httprb/form_data.rb"
39 +
40 +LICENSE="MIT"
41 +SLOT="1.0"
42 +KEYWORDS="~amd64 ~ppc64"
43 +IUSE=""
44 +
45 +all_ruby_prepare() {
46 + sed -i -e '/simplecov/,/SimpleCov.start/ s:^:#:' spec/spec_helper.rb || die
47 +}