Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/http/
Date: Sat, 27 Aug 2022 23:10:50
Message-Id: 1661586831.b679400f1f2047aeb7e03650a69002aae50ba95f.sam@gentoo
1 commit: b679400f1f2047aeb7e03650a69002aae50ba95f
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 27 07:53:51 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 27 07:53:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b679400f
7
8 dev-ruby/http: drop 4.1.1
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-ruby/http/Manifest | 1 -
13 dev-ruby/http/http-4.1.1.ebuild | 46 -----------------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
17 index 4cdab66abad6..41b2ecc8d0a2 100644
18 --- a/dev-ruby/http/Manifest
19 +++ b/dev-ruby/http/Manifest
20 @@ -1,2 +1 @@
21 -DIST http-4.1.1.gem 74240 BLAKE2B 350d4a2eb966f8dae05a206e20a92d8ce0601df36673cae8c969b8849d6715c5d0ab0e24c4b6cc4f117e4788e535296f86d5193198df4a8229572817c9cd3f75 SHA512 89e088521212293db692b66a7058327c215bba119b3f01d4120fd32f0754294d4cbada88ed9cffb6f182f6d712a0923dadfc645c1618e25a802fcc3d467356de
22 DIST http-4.4.1.gem 75776 BLAKE2B ab34a6a567842d52f9b7cbe3fc3fb8e4757f5cf1303deacdf2f2130a44e82fde64f0db561c3f8fc28100faea277a9c4a9352f95e6cb1359730b34e83a7b36d72 SHA512 6e43a8ae379d7c8a807a9a03c87bfb5ad1719f9838e26ac7a695220ee2bc50344accc2db268d30da175328fd5468b87ec8532d17ce42a5b74d6c2c4c281d1bc9
23
24 diff --git a/dev-ruby/http/http-4.1.1.ebuild b/dev-ruby/http/http-4.1.1.ebuild
25 deleted file mode 100644
26 index d9ea9b87273d..000000000000
27 --- a/dev-ruby/http/http-4.1.1.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -USE_RUBY="ruby24 ruby25 ruby26"
35 -
36 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
37 -
38 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 -RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
40 -
41 -inherit ruby-fakegem
42 -
43 -DESCRIPTION="An easy-to-use client library for making requests from Ruby"
44 -HOMEPAGE="https://github.com/tarcieri/http"
45 -
46 -LICENSE="MIT"
47 -SLOT="4"
48 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
49 -IUSE=""
50 -
51 -ruby_add_rdepend "
52 - >=dev-ruby/addressable-2.3:0
53 - >=dev-ruby/http-cookie-1.0:0
54 - dev-ruby/http-form_data:2
55 - >=dev-ruby/http_parser_rb-0.6.0 =dev-ruby/http_parser_rb-0.6*"
56 -
57 -ruby_add_bdepend "
58 - test? ( dev-ruby/certificate_authority dev-ruby/rspec-its )"
59 -
60 -all_ruby_prepare() {
61 - sed -i -e '/simplecov/,/end/ s:^:#:' \
62 - -e '1irequire "cgi"' spec/spec_helper.rb || die
63 -
64 - # Avoid specs that require network access
65 - sed -i -e '/.persistent/,/^ end/ s:^:#:' \
66 - spec/lib/http_spec.rb || die
67 - sed -i -e '/with non-ASCII URLs/,/^ end/ s:^:#:' \
68 - spec/lib/http/client_spec.rb || die
69 -
70 - # Avoid spec that may fail with a running web server
71 - sed -i -e '/unifies socket errors into HTTP::ConnectionError/,/^ end/ s:^:#:' spec/lib/http_spec.rb || die
72 -
73 - # Fix spec for production release
74 - sed -i -e '/User-Agent:/ s/.dev//' spec/lib/http/features/logging_spec.rb || die
75 -}