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: Fri, 10 Jan 2020 06:38:56
Message-Id: 1578638326.834d90fdf91db9bc055e2d5ace9a48ed85f93a5b.graaff@gentoo
1 commit: 834d90fdf91db9bc055e2d5ace9a48ed85f93a5b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 10 06:38:46 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 10 06:38:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834d90fd
7
8 dev-ruby/http-form_data: add 2.2.0
9
10 Package-Manager: Portage-2.3.79, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/http-form_data/Manifest | 1 +
14 .../http-form_data/http-form_data-2.2.0.ebuild | 23 ++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-ruby/http-form_data/Manifest b/dev-ruby/http-form_data/Manifest
18 index 8f3fc2b33e5..544f0d7013c 100644
19 --- a/dev-ruby/http-form_data/Manifest
20 +++ b/dev-ruby/http-form_data/Manifest
21 @@ -1,2 +1,3 @@
22 DIST http-form_data-1.0.3.gem 14336 BLAKE2B f58410dfa309fbec55e97f5bd10e56a7be0d915a0e87d4873c66a2d0f112552450424fe3a54529bc77e8bfbd5ac019f9ec231881d48942eaf55725d618203d56 SHA512 6e438a1c0c56116555737785d9b0b624f2cbee010146d0683c94e72473ed6f8a872c2ecbd878bc71f4aa378ebcd820d2743e0f6236778b65aad99c14e9c79fdf
23 DIST http-form_data-2.1.1.gem 16896 BLAKE2B b19507dddf5c072b5a190bff98c61b94209652445ba995c3834bdf47faa515cc3877afcb46ef4946b4b6ad265d917cfc0fcdba2ee98c440c134343883740917e SHA512 43e1d9a522a748ab5d1633392225d87b5b178f6ae46a9bc4296b2a71b95b54d0a0c5fa1c3d8a8f48134df7c8c5893bfd7a5db060da275f49a147385cb4d04627
24 +DIST http-form_data-2.2.0.gem 17408 BLAKE2B 35669a42e366297eb54cb3b291b0cedcd70387f3e903056ff3dbbab52a6efaa9d536111f00dd9cd360268e75dffcd8cc91ad0ed898236f0e7af89f14979d3240 SHA512 dbcc2453388ba586556b86d4cff9cf12fcde4ee5f5a913e8c5f24857b10010e920fba447c1d34bed78a1e636c2ef2649ea4dd1b428c29842b3c45eeaa1281e74
25
26 diff --git a/dev-ruby/http-form_data/http-form_data-2.2.0.ebuild b/dev-ruby/http-form_data/http-form_data-2.2.0.ebuild
27 new file mode 100644
28 index 00000000000..5787fbd94da
29 --- /dev/null
30 +++ b/dev-ruby/http-form_data/http-form_data-2.2.0.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 +
40 +RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="Utility-belt to build form data request bodies"
45 +HOMEPAGE="https://github.com/httprb/form_data.rb"
46 +
47 +LICENSE="MIT"
48 +SLOT="2"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
50 +IUSE=""
51 +
52 +all_ruby_prepare() {
53 + sed -i -e '/simplecov/,/SimpleCov.start/ s:^:#: ; 1irequire "json"' spec/spec_helper.rb || die
54 +}