-
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.
Update rubygem-prometheus-client to 4.1.0
- Loading branch information
Showing
3 changed files
with
22 additions
and
37 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
packages/foreman/rubygem-prometheus-client/prometheus-client-1.0.0.gem
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
packages/foreman/rubygem-prometheus-client/prometheus-client-4.1.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../.git/annex/objects/WF/qg/SHA256E-s31232--02241b497ca41c4b0dddf640699ffa91050964e642672603a585dd1b6abda0f1.0.gem/SHA256E-s31232--02241b497ca41c4b0dddf640699ffa91050964e642672603a585dd1b6abda0f1.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,71 +1,53 @@ | ||
%{?scl:%scl_package rubygem-%{gem_name}} | ||
%{!?scl:%global pkg_name %{name}} | ||
|
||
# template: default | ||
%global gem_name prometheus-client | ||
|
||
Name: %{?scl_prefix}rubygem-%{gem_name} | ||
Version: 1.0.0 | ||
Release: 3%{?dist} | ||
Name: rubygem-%{gem_name} | ||
Version: 4.1.0 | ||
Release: 1%{?dist} | ||
Summary: A suite of instrumentation metric primitivesthat can be exposed through a web services interface | ||
Group: Development/Languages | ||
License: ASL 2.0 | ||
License: Apache-2.0 | ||
URL: https://github.com/prometheus/client_ruby | ||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem | ||
Requires: %{?scl_prefix_ruby}ruby(release) | ||
Requires: %{?scl_prefix_ruby}ruby | ||
Requires: %{?scl_prefix_ruby}ruby(rubygems) | ||
Requires: %{?scl_prefix}rubygem(quantile) >= 0.2.0 | ||
Requires: %{?scl_prefix}rubygem(quantile) < 0.3 | ||
BuildRequires: %{?scl_prefix_ruby}ruby(release) | ||
BuildRequires: %{?scl_prefix_ruby}ruby | ||
BuildRequires: %{?scl_prefix_ruby}rubygems-devel | ||
|
||
# start specfile generated dependencies | ||
Requires: ruby | ||
BuildRequires: ruby | ||
BuildRequires: rubygems-devel | ||
BuildArch: noarch | ||
Provides: %{?scl_prefix}rubygem(%{gem_name}) = %{version} | ||
# end specfile generated dependencies | ||
|
||
%description | ||
A suite of instrumentation metric primitivesthat can be exposed through a web | ||
services interface. | ||
|
||
|
||
%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} | ||
%license %{gem_instdir}/LICENSE | ||
%{gem_libdir} | ||
%exclude %{gem_cache} | ||
%{gem_spec} | ||
|
@@ -75,6 +57,9 @@ cp -pa .%{gem_dir}/* \ | |
%doc %{gem_instdir}/README.md | ||
|
||
%changelog | ||
* Mon Apr 03 2023 Evgeni Golov 4.1.0-1 | ||
- Update to 4.1.0 | ||
|
||
* Thu Mar 11 2021 Eric D. Helms <[email protected]> - 1.0.0-3 | ||
- Rebuild against rh-ruby27 | ||
|
||
|