commit: ccb074d14ae7fed2047812d6e59bede724bba8b4
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 8 07:53:27 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 08:59:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccb074d1
dev-ruby/http: drop 5.1.1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/http/Manifest | 1 -
dev-ruby/http/http-5.1.1.ebuild | 58 -----------------------------------------
2 files changed, 59 deletions(-)
diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index e231bb5237ff..b99c72efca8b 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -1,2 +1 @@
-DIST http-5.1.1.gem 82944 BLAKE2B
bd44ede401712ddd13b76f9e3266622aefd78f37a89c84217c7f8206214e9e2ee994fe375a6e7897315dd83853d4e8ab2c0c9c34a59fe47c1a0617f3c126fdab
SHA512
a39d88297b6f2f0a51a22fe502d1f7883d44a3fa0af250e1a8142f093fb3865b02b797bc46780d9129f0c67e18f97cc551aa1dbd794b3b4cda6bdb5495fe95e3
DIST http-5.2.0.gem 85504 BLAKE2B
60391b959752c63e2f8cffcb86d6aad47fd30817f348ac6fc28ebce4fa5186f482c08db5e4413fc84eb54a9beb2682260c0c7241a76b40c3489fe7f2abcfb154
SHA512
88a813498db68827ea665c3a568ce45b0096203484564f3de18d46abdd87d2ecd756745f9f530965db306f8e37185d3d0b31959082bbe01fee5545b36b0716bd
diff --git a/dev-ruby/http/http-5.1.1.ebuild b/dev-ruby/http/http-5.1.1.ebuild
deleted file mode 100644
index 7f619c9f3bc7..000000000000
--- a/dev-ruby/http/http-5.1.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby30 ruby31 ruby32"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-inherit ruby-fakegem
-
-DESCRIPTION="An easy-to-use client library for making requests from Ruby"
-HOMEPAGE="https://github.com/tarcieri/http"
-
-LICENSE="MIT"
-SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-ruby_add_rdepend "=dev-ruby/addressable-2*
- >=dev-ruby/addressable-2.8
- =dev-ruby/http-cookie-1*
- >=dev-ruby/http-form_data-2.2:2
- >=dev-ruby/llhttp-ffi-0.4.0:0/0.4"
-
-ruby_add_bdepend "
- test? (
- =dev-ruby/certificate_authority-1*
- dev-ruby/rspec-its
- dev-ruby/webrick
- )"
-
-all_ruby_prepare() {
- # Avoid specs that require network access
- sed -i -e '/.persistent/,/^ end/ s:^:#:' \
- spec/lib/http_spec.rb || die
- sed -i -e '/with non-ASCII URLs/,/^ end/ s:^:#:' \
- spec/lib/http/client_spec.rb || die
-
- # Avoid spec that may fail with a running web server
- sed -i -e '/unifies socket errors into HTTP::ConnectionError/,/^ end/
s:^:#:' spec/lib/http_spec.rb || die
-
- # Fix spec for production release
- sed -i -e '/User-Agent:/ s/.dev//'
spec/lib/http/features/logging_spec.rb || die
-
- # Avoid specs also failing upstream due to some certificate issue
- sed -i -e '/context "ssl"/,/^ end/ s:^:#:' spec/lib/http_spec.rb
|| die
- sed -i -e '/describe "working with SSL"/,/^ end/ s:^:#:'
spec/lib/http/client_spec.rb || die
-
- # Disable coverage
- sed -i -e 's/require_relative ".\/support\/simplecov"//g'
"spec/spec_helper.rb" || die
-}
-
-each_ruby_test() {
- # disables dev-ruby/fuubar dep
- CI=1 each_fakegem_test
-}