-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
48 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../.git/annex/objects/F8/FG/SHA256E-s85504--b99ed3c65376e0fd8107647fbaf5a8ab4f66c347d1271fb74cea757e209c6115.0.gem/SHA256E-s85504--b99ed3c65376e0fd8107647fbaf5a8ab4f66c347d1271fb74cea757e209c6115.0.gem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,19 @@ | ||
# template: scl | ||
%{?scl:%scl_package rubygem-%{gem_name}} | ||
%{!?scl:%global pkg_name %{name}} | ||
|
||
# template: default | ||
%global gem_name http | ||
|
||
Name: %{?scl_prefix}rubygem-%{gem_name} | ||
Version: 3.3.0 | ||
Release: 2%{?dist} | ||
Name: rubygem-%{gem_name} | ||
Version: 5.2.0 | ||
Release: 1%{?dist} | ||
Summary: HTTP should be easy | ||
Group: Development/Languages | ||
License: MIT | ||
URL: https://github.com/httprb/http | ||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem | ||
|
||
# start specfile generated dependencies | ||
Requires: %{?scl_prefix_ruby}ruby(release) | ||
Requires: %{?scl_prefix_ruby}ruby >= 2.2 | ||
Requires: %{?scl_prefix_ruby}ruby(rubygems) | ||
Requires: %{?scl_prefix}rubygem(http_parser.rb) >= 0.6.0 | ||
Requires: %{?scl_prefix}rubygem(http_parser.rb) < 0.7 | ||
Requires: %{?scl_prefix}rubygem(http-form_data) >= 2.0 | ||
Requires: %{?scl_prefix}rubygem(http-form_data) < 3 | ||
Requires: %{?scl_prefix}rubygem(http-cookie) >= 1.0 | ||
Requires: %{?scl_prefix}rubygem(http-cookie) < 2 | ||
Requires: %{?scl_prefix}rubygem(addressable) >= 2.3 | ||
Requires: %{?scl_prefix}rubygem(addressable) < 3 | ||
BuildRequires: %{?scl_prefix_ruby}ruby(release) | ||
BuildRequires: %{?scl_prefix_ruby}ruby >= 2.2 | ||
BuildRequires: %{?scl_prefix_ruby}rubygems-devel | ||
Requires: ruby >= 2.6 | ||
BuildRequires: ruby >= 2.6 | ||
BuildRequires: rubygems-devel | ||
BuildArch: noarch | ||
Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} | ||
# end specfile generated dependencies | ||
|
||
%description | ||
|
@@ -38,52 +22,41 @@ method chaining system for building requests, similar to Python's Requests. | |
|
||
|
||
%package doc | ||
Summary: Documentation for %{pkg_name} | ||
Group: Documentation | ||
Requires: %{?scl_prefix}%{pkg_name} = %{version}-%{release} | ||
Summary: Documentation for %{name} | ||
Requires: %{name} = %{version}-%{release} | ||
BuildArch: noarch | ||
|
||
%description doc | ||
Documentation for %{pkg_name}. | ||
Documentation for %{name}. | ||
|
||
%prep | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
gem unpack %{SOURCE0} | ||
%{?scl:EOF} | ||
%setup -q -D -T -n %{gem_name}-%{version} | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec | ||
%{?scl:EOF} | ||
%setup -q -n %{gem_name}-%{version} | ||
|
||
%build | ||
# Create the gem as gem install only works on a gem file | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
gem build %{gem_name}.gemspec | ||
%{?scl:EOF} | ||
gem build ../%{gem_name}-%{version}.gemspec | ||
|
||
# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir | ||
# by default, so that we can move it into the buildroot in %%install | ||
%{?scl:scl enable %{scl} - << \EOF} | ||
%gem_install | ||
%{?scl:EOF} | ||
|
||
%install | ||
mkdir -p %{buildroot}%{gem_dir} | ||
cp -pa .%{gem_dir}/* \ | ||
cp -a .%{gem_dir}/* \ | ||
%{buildroot}%{gem_dir}/ | ||
|
||
%files | ||
%dir %{gem_instdir} | ||
%exclude %{gem_instdir}/.coveralls.yml | ||
%exclude %{gem_instdir}/.github | ||
%exclude %{gem_instdir}/.gitignore | ||
%exclude %{gem_instdir}/.rubocop.yml | ||
%exclude %{gem_instdir}/.travis.yml | ||
%{gem_instdir}/.rubocop | ||
%exclude %{gem_instdir}/.rubocop_todo.yml | ||
%exclude %{gem_instdir}/.yardopts | ||
%doc %{gem_instdir}/CHANGES_OLD.md | ||
%exclude %{gem_instdir}/Guardfile | ||
%exclude %{gem_instdir}/.ruby-version | ||
%license %{gem_instdir}/LICENSE.txt | ||
%doc %{gem_instdir}/SECURITY.md | ||
%{gem_libdir} | ||
%{gem_instdir}/logo.png | ||
%exclude %{gem_cache} | ||
|
@@ -92,15 +65,18 @@ cp -pa .%{gem_dir}/* \ | |
%files doc | ||
%doc %{gem_docdir} | ||
%exclude %{gem_instdir}/.rspec | ||
%doc %{gem_instdir}/CHANGES.md | ||
%doc %{gem_instdir}/CHANGELOG.md | ||
%doc %{gem_instdir}/CONTRIBUTING.md | ||
%{gem_instdir}/Gemfile | ||
%doc %{gem_instdir}/README.md | ||
%{gem_instdir}/Rakefile | ||
%{gem_instdir}/http.gemspec | ||
%exclude %{gem_instdir}/http.gemspec | ||
%{gem_instdir}/spec | ||
|
||
%changelog | ||
* Fri Aug 23 2024 5.2.0-1 | ||
- Update to 5.2.0-1 | ||
|
||
* Tue Apr 06 2021 Eric D. Helms <[email protected]> - 3.3.0-2 | ||
- Rebuild for Ruby 2.7 | ||
|
||
|