summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-10 16:31:03 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-10 16:31:03 +0000
commit50a3fae08e3c96399d4b6044fbdc7d51b548fb4e (patch)
treee21e1fcc79231d1c3f7614168e0794f3a2a0dc44
parent2493ce71f05017ff89ad552dd6672c46ef7cb42d (diff)
automatic import of rubygem-net-http-persistentopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--rubygem-net-http-persistent.spec96
-rw-r--r--sources1
3 files changed, 98 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..db07f9b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/net-http-persistent-4.0.1.gem
diff --git a/rubygem-net-http-persistent.spec b/rubygem-net-http-persistent.spec
new file mode 100644
index 0000000..24542a2
--- /dev/null
+++ b/rubygem-net-http-persistent.spec
@@ -0,0 +1,96 @@
+%global _empty_manifest_terminate_build 0
+%global gem_name net-http-persistent
+Name: rubygem-net-http-persistent
+Version: 4.0.1
+Release: 1
+Summary: Manages persistent connections using Net::HTTP including a thread pool for connecting to multiple hosts
+License: MIT
+URL: https://github.com/drbrain/net-http-persistent
+Source0: https://rubygems.org/gems/net-http-persistent-4.0.1.gem
+BuildArch: noarch
+
+Requires: rubygem-connection_pool
+BuildRequires: ruby
+BuildRequires: ruby-devel
+BuildRequires: rubygems
+BuildRequires: rubygems-devel
+BuildRequires: rsync
+Provides: rubygem-net-http-persistent
+
+%description
+Manages persistent connections using Net::HTTP including a thread pool for
+connecting to multiple hosts.
+
+Using persistent HTTP connections can dramatically increase the speed of HTTP.
+Creating a new HTTP connection for every request involves an extra TCP
+round-trip and causes TCP congestion avoidance negotiation to start over.
+
+Net::HTTP supports persistent connections with some API methods but does not
+make setting up a single persistent connection or managing multiple
+connections easy. Net::HTTP::Persistent wraps Net::HTTP and allows you to
+focus on how to make HTTP requests.
+
+%package help
+Summary: Development documents and examples for net-http-persistent
+Provides: rubygem-net-http-persistent-doc
+BuildArch: noarch
+
+%description help
+Manages persistent connections using Net::HTTP including a thread pool for
+connecting to multiple hosts.
+
+Using persistent HTTP connections can dramatically increase the speed of HTTP.
+Creating a new HTTP connection for every request involves an extra TCP
+round-trip and causes TCP congestion avoidance negotiation to start over.
+
+Net::HTTP supports persistent connections with some API methods but does not
+make setting up a single persistent connection or managing multiple
+connections easy. Net::HTTP::Persistent wraps Net::HTTP and allows you to
+focus on how to make HTTP requests.
+
+%prep
+%autosetup -n net-http-persistent-4.0.1
+gem spec %{SOURCE0} -l --ruby > net-http-persistent.gemspec
+
+%build
+gem build net-http-persistent.gemspec
+%gem_install
+
+%install
+mkdir -p %{buildroot}%{gem_dir}
+cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
+rsync -a --exclude=".*" .%{gem_dir}/* %{buildroot}%{gem_dir}/
+if [ -d .%{_bindir} ]; then
+ mkdir -p %{buildroot}%{_bindir}
+ cp -a .%{_bindir}/* %{buildroot}%{_bindir}/
+fi
+if [ -d ext ]; then
+ mkdir -p %{buildroot}%{gem_extdir_mri}/%{gem_name}
+ if [ -d .%{gem_extdir_mri}/%{gem_name} ]; then
+ cp -a .%{gem_extdir_mri}/%{gem_name}/*.so %{buildroot}%{gem_extdir_mri}/%{gem_name}
+ else
+ cp -a .%{gem_extdir_mri}/*.so %{buildroot}%{gem_extdir_mri}/%{gem_name}
+fi
+ cp -a .%{gem_extdir_mri}/gem.build_complete %{buildroot}%{gem_extdir_mri}/
+ rm -rf %{buildroot}%{gem_instdir}/ext/
+fi
+pushd %{buildroot}
+touch filelist.lst
+if [ -d %{buildroot}%{_bindir} ]; then
+ find .%{_bindir} -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+
+%files -n rubygem-net-http-persistent -f filelist.lst
+%dir %{gem_instdir}
+%{gem_instdir}/*
+%exclude %{gem_cache}
+%{gem_spec}
+
+%files help
+%{gem_docdir}/*
+
+%changelog
+* Fri Mar 10 2023 Ruby_Bot <Ruby_Bot@openeuler.org>
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..e358ccc
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+42857574ef30faa06e646a7f45292f4b net-http-persistent-4.0.1.gem