-
Notifications
You must be signed in to change notification settings - Fork 614
Expand file tree
/
Copy pathrubygem-addressable.spec
More file actions
48 lines (39 loc) · 1.66 KB
/
rubygem-addressable.spec
File metadata and controls
48 lines (39 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
%global debug_package %{nil}
%global gem_name addressable
Summary: an alternative implementation to the URI implementation that is part of Ruby's standard library
Name: rubygem-%{gem_name}
Version: 2.9.0
Release: 1%{?dist}
License: Apache 2.0
Vendor: Microsoft Corporation
Distribution: Mariner
Group: Development/Languages
URL: https://github.com/sporkmonger/addressable
Source0: https://github.com/sporkmonger/addressable/archive/refs/tags/addressable-%{version}.tar.gz#/%{gem_name}-%{gem_name}-%{version}.tar.gz
BuildRequires: ruby
Requires: rubygem-public_suffix < 5.0
Provides: rubygem(%{gem_name}) = %{version}-%{release}
%description
Addressable is an alternative implementation to the URI implementation that is
part of Ruby's standard library. It offers heuristic parsing, and additionally
provides extensive support for IRIs and URI templates.
%prep
%setup -q -n %{gem_name}-%{gem_name}-%{version}
%build
gem build %{gem_name}
%install
gem install -V --local --force --install-dir %{buildroot}/%{gemdir} %{gem_name}-%{version}.gem
%files
%defattr(-,root,root,-)
%license %{gemdir}/gems/%{gem_name}-%{version}/LICENSE.txt
%{gemdir}
%changelog
* Fri Apr 10 2026 CBL-Mariner Servicing Account <cblmargh@microsoft.com> - 2.9.0-1
- Auto-upgrade to 2.9.0 - for CVE-2026-35611
* Wed Jun 22 2022 Neha Agarwal <nehaagarwal@microsoft.com> - 2.8.0-2
- Build from .tar.gz source.
* Thu Aug 04 2021 Nicolas Guibourge <nicolasg@microsoft.com> - 2.8.0-1
- Move to 2.8.0 to fix CVE-2021-32740
* Mon Jan 04 2021 Henry Li <lihl@microsoft.com> - 2.7.0-1
- License verified
- Original version for CBL-Mariner