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/patron/
Date: Mon, 12 Jul 2021 13:26:44
Message-Id: 1626096390.59fb91b761840e19d61c3c50032c1d6c62c4101a.graaff@gentoo
1 commit: 59fb91b761840e19d61c3c50032c1d6c62c4101a
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 12 08:25:37 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 12 13:26:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59fb91b7
7
8 dev-ruby/patron: add ruby27; EAPI 7; fix extension
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/patron/patron-0.13.3-r1.ebuild | 39 +++++++++++++++++++++++++++++++++
14 1 file changed, 39 insertions(+)
15
16 diff --git a/dev-ruby/patron/patron-0.13.3-r1.ebuild b/dev-ruby/patron/patron-0.13.3-r1.ebuild
17 new file mode 100644
18 index 00000000000..08c165ff73f
19 --- /dev/null
20 +++ b/dev-ruby/patron/patron-0.13.3-r1.ebuild
21 @@ -0,0 +1,39 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +USE_RUBY="ruby26 ruby27"
27 +
28 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
29 +RUBY_FAKEGEM_EXTRADOC="README.md"
30 +
31 +RUBY_FAKEGEM_EXTENSIONS=(ext/patron/extconf.rb)
32 +RUBY_FAKEGEM_EXTENSION_DIR="lib/patron"
33 +
34 +inherit ruby-fakegem
35 +
36 +DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
37 +HOMEPAGE="https://toland.github.com/patron/"
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
42 +IUSE=""
43 +
44 +DEPEND+=" net-misc/curl"
45 +RDEPEND+=" net-misc/curl"
46 +
47 +ruby_add_bdepend "test? ( dev-ruby/rack www-servers/puma )"
48 +
49 +all_ruby_prepare() {
50 + # Fix Rakefile
51 + sed -i -e 's:rake/rdoctask:rdoc/task:' \
52 + -e 's/README.txt/README.md/' \
53 + -e '/bundler/I s:^:#:' \
54 + -e '/extensiontask/ s:^:#:' \
55 + -e '/ExtensionTask/,/^end/ s:^:#:' \
56 + Rakefile || die
57 +
58 + # Avoid specs with failures. We were not running any specs before.
59 + rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb || die
60 +}