package init

This commit is contained in:
lyn1001 2020-08-21 14:28:28 +08:00
parent 41e1f1cb9f
commit ff187e0c90
4 changed files with 101 additions and 0 deletions

BIN
excon-0.62.0.gem Normal file

Binary file not shown.

View File

@ -0,0 +1,23 @@
From d92263f73cfb20527ff0d689338bbe5348798d11 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com>
Date: Tue, 5 Feb 2019 10:38:33 +0100
Subject: [PATCH] Ruby 2.6 escapes InvalidURIError output.
https://github.com/ruby/ruby/commit/684cdb4f8340f7a88b00bb91139da74b99ec1147
---
tests/error_tests.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/error_tests.rb b/tests/error_tests.rb
index c1bf15fe..21d2103b 100644
--- a/tests/error_tests.rb
+++ b/tests/error_tests.rb
@@ -35,7 +35,7 @@
Excon.new('http://localhost', path: "foo\r\nbar: baz")
false
rescue => err
- err.to_s.include? "foo\r\nbar: baz"
+ err.to_s.include?(RUBY_VERSION >= '2.6.0' ? 'foo\r\nbar: baz' : "foo\r\nbar: baz")
end
end

73
rubygem-excon.spec Normal file
View File

@ -0,0 +1,73 @@
%global gem_name excon
Name: rubygem-%{gem_name}
Version: 0.62.0
Release: 1
Summary: Speed, persistence, http(s)
License: MIT
URL: https://github.com/excon/excon
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
Patch0: rubygem-excon-0.62.0-Ruby-2.6-escapes-InvalidURIError-output.patch
BuildRequires: ruby(release) rubygems-devel ruby %{_bindir}/openssl rubygem-rack
BuildRequires: rubygem-shindo rubygem(activesupport) rubygem(delorean) rubygem(eventmachine)
BuildRequires: rubygem(open4) rubygem(puma) rubygem(sinatra) rubygem(rspec)
BuildArch: noarch
%description
EXtended http(s) CONnections.
%package doc
Summary: Documentation for %{name}
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
%description doc
Documentation for %{name}.
%prep
%setup -q -n %{gem_name}-%{version}
%patch0 -p1
sed -i "/ciphers/ s/'.*'/'PROFILE=SYSTEM'/" lib/excon/constants.rb
%build
gem build ../%{gem_name}-%{version}.gemspec
%gem_install
%install
mkdir -p %{buildroot}%{gem_dir}
cp -a .%{gem_dir}/* \
%{buildroot}%{gem_dir}/
rm -rf %{buildroot}%{gem_instdir}/data
%check
pushd .%{gem_instdir}
sed -i '/if plugin == :unicorn/ i\ before { skip("until #{plugin} is in Fedora") } if plugin == :unicorn' spec/support/shared_contexts/test_server_context.rb
sed -i '/with_unicorn/ s/^/ pending\n\n/' tests/{basic_tests.rb,proxy_tests.rb}
rspec spec
sed -i "/'bundler\/setup'/ s/^/#/" tests/test_helper.rb
sed -i '/redirecting_with_cookie.ru/,/^ end/ s/^/#/' tests/middlewares/capture_cookies_tests.rb
openssl req -subj '/CN=excon/O=excon' -new -newkey rsa:2048 -sha256 -days 365 -nodes -x509 -keyout tests/data/excon.cert.key -out tests/data/excon.cert.crt
openssl req -subj '/CN=127.0.0.1/O=excon' -new -newkey rsa:2048 -sha256 -days 365 -nodes -x509 -keyout tests/data/127.0.0.1.cert.key -out tests/data/127.0.0.1.cert.crt
shindo
popd
%files
%dir %{gem_instdir}
%exclude %{gem_instdir}/.*
%license %{gem_instdir}/LICENSE.md
%{gem_libdir}
%exclude %{gem_cache}
%{gem_spec}
%files doc
%doc %{gem_docdir}
%doc %{gem_instdir}/CONTRIBUT*
%{gem_instdir}/Gemfile
%doc %{gem_instdir}/README.md
%{gem_instdir}/Rakefile
%{gem_instdir}/benchmarks
%doc %{gem_instdir}/changelog.txt
%{gem_instdir}/excon.gemspec
%{gem_instdir}/spec
%{gem_instdir}/tests
%changelog
* Wed Aug 12 2020 yanan li <liyanan032@huawei.com> - 0.62.0-1
- Package init

5
rubygem-excon.yaml Normal file
View File

@ -0,0 +1,5 @@
git_url: https://github.com/excon/excon.git
version_control: github
src_repo: excon/excon
tag_prefix: "^v"
seperator: "."