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/curb/
Date: Sat, 20 Apr 2019 23:26:43
Message-Id: 1555742190.058b5d74e330e60d1b203a1d591f1b20830047e6.graaff@gentoo
1 commit: 058b5d74e330e60d1b203a1d591f1b20830047e6
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 20 06:08:43 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 20 06:36:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=058b5d74
7
8 dev-ruby/curb: add 0.9.10
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/curb/Manifest | 1 +
14 dev-ruby/curb/curb-0.9.10.ebuild | 47 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-ruby/curb/Manifest b/dev-ruby/curb/Manifest
18 index 23df56deb4c..6e0f4f837a0 100644
19 --- a/dev-ruby/curb/Manifest
20 +++ b/dev-ruby/curb/Manifest
21 @@ -1 +1,2 @@
22 +DIST curb-0.9.10.gem 88064 BLAKE2B 8f761e752bc1fd0775f012373847330d3ced9d394e5159b74c8e329247f6221bbc26978755d84b91e75b4082b7bb50c7755db299f90f291516f355b4ab1ddc7c SHA512 eab82d3c1b34bf8e5bfd334abca38a80eaab255d31164ca189185b8b98d7f3760fb116babf50dce5aef01be30b15e9374e7a84e1b0926dba13c3e9f8d36c54ca
23 DIST curb-0.9.9.gem 87040 BLAKE2B 107c6486887c0c168a06b7cdad4cc01e34a85c7cfb20e8991db4c695e9dfe3700655d95dbc798e4eb3269586b86d61037d0e39a88c4d687e0e776a0e9cc27f0e SHA512 3f91004e109f9cc7c2d58fb7a6bc387d037237442b05ee52bad2944738eb24bf8d909ad7c21db965ba1e6291d08f0f2335c54a5c1a1ee1d224c5790e81dc8037
24
25 diff --git a/dev-ruby/curb/curb-0.9.10.ebuild b/dev-ruby/curb/curb-0.9.10.ebuild
26 new file mode 100644
27 index 00000000000..37839c5e585
28 --- /dev/null
29 +++ b/dev-ruby/curb/curb-0.9.10.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +USE_RUBY="ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_TEST="rake"
39 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
40 +
41 +inherit ruby-fakegem
42 +
43 +DESCRIPTION="Ruby-language bindings for libcurl"
44 +HOMEPAGE="https://github.com/taf2/curb"
45 +
46 +LICENSE="Ruby"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +IUSE=""
50 +
51 +DEPEND+=" net-misc/curl[ssl]"
52 +RDEPEND+=" net-misc/curl[ssl]"
53 +
54 +all_ruby_prepare() {
55 + # fix tests when localhost is also ::1
56 + sed -i -e 's|localhost:|127.0.0.1:|g' tests/*.rb || die
57 +
58 + # avoid tests making outside network connections
59 + rm tests/bug_postfields_crash.rb || die
60 + sed -e '/test_easy_http_verbs_must_respond_to_str/,/^ end/ s:^:#:' \
61 + -i tests/tc_curl_easy.rb || die
62 + sed -e '/test_connection_keepalive/aomit "network connection needed"' \
63 + -i tests/tc_curl_multi.rb || die
64 +
65 + # avoid failing tests where failure condition seems weird, no
66 + # upstream travis so not clear if the test is indeed broken.
67 + sed -i -e '/test_multi_easy_http/,/^ end/ s:^:#:' tests/tc_curl_multi.rb || die
68 +}
69 +
70 +each_ruby_configure() {
71 + ${RUBY} -Cext extconf.rb || die "extconf.rb failed"
72 +}
73 +
74 +each_ruby_compile() {
75 + emake -Cext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}" V=1
76 + cp -l ext/curb_core$(get_modname) lib || die
77 +}