summaryrefslogtreecommitdiff
path: root/dev-ruby/puppet_forge/files/puppet_forge-5.0.1-typhoeus.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ruby/puppet_forge/files/puppet_forge-5.0.1-typhoeus.patch')
-rw-r--r--dev-ruby/puppet_forge/files/puppet_forge-5.0.1-typhoeus.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-ruby/puppet_forge/files/puppet_forge-5.0.1-typhoeus.patch b/dev-ruby/puppet_forge/files/puppet_forge-5.0.1-typhoeus.patch
deleted file mode 100644
index 3f39e97afe8c..000000000000
--- a/dev-ruby/puppet_forge/files/puppet_forge-5.0.1-typhoeus.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Typhoeus support only works then the faraday-typhoeus package is installed.
-https://github.com/typhoeus/typhoeus/issues/709
-
---- a/lib/puppet_forge/connection.rb 2023-09-09 09:02:03.981164238 +0200
-+++ b/lib/puppet_forge/connection.rb 2023-09-09 09:03:56.506144279 +0200
-@@ -82,7 +82,7 @@
-
- begin
- # Use Typhoeus if available.
-- Gem::Specification.find_by_name('typhoeus', '~> 1.4')
-+ Gem::Specification.find_by_name('typhoeus', '~> 1.4') && Gem::Specification.find_by_name('faraday-typhoeus')
- require 'typhoeus/adapters/faraday'
- adapter = :typhoeus
- rescue Gem::LoadError