forked from jkenn99/yum-s3-iam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yum-plugin-s3-iam.spec
76 lines (56 loc) · 2.23 KB
/
yum-plugin-s3-iam.spec
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
Name: %{name}
Version: %{version}
Release: %{release}
Summary: Yum package manager plugin for private S3 repositories.
Group: Application/SystemTools
License: Apache License Version 2.0
URL: https://github.com/jkenn99/yum-s3-iam
Source0: %{name}-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildArch: noarch
Requires: yum
%description
Yum package manager plugin for private S3 repositories.
Uses Amazon IAM & EC2 Roles.
%prep
%setup -q
%build
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=%{buildroot}
%clean
rm -rf ${RPM_BUILD_ROOT}
%files
%defattr(-,root,root,-)
%doc s3iam.repo
%doc LICENSE NOTICE README.md
%config /etc/yum/pluginconf.d/s3iam.conf
/usr/lib/yum-plugins/s3iam.py*
%changelog
* Tue Dec 04 2018 James Kennedy <[email protected]>
- Added additional exception handling
* Tue Aug 28 2018 Piotr Kasperski <[email protected]>
- Added https://github.com/seporaitis/yum-s3-iam/pull/64
* Fri May 05 2017 Mathias Brossard <[email protected]> 1.2.2-1
- Handle special value '__none__' for proxy (@andlam)
* Fri May 05 2017 Mathias Brossard <[email protected]> 1.2.1-1
- Add support for proxy (@AgarFu)
* Fri May 05 2017 Mathias Brossard <[email protected]> 1.2.0-1
- Improvements for running outside of EC2 (@mbrossard)
- Fix for cross-region STS authentication (@jonnangle)
- Fix for regression on 'us-east-1' (@mestudd, @mbrossard)
* Tue Feb 21 2017 Mathias Brossard <[email protected]> 1.1.2-1
- Fix for no-region regression introduced by cn-north-1 region support
(@mbrossard)
* Thu Feb 16 2017 Mathias Brossard <[email protected]> 1.1.1-1
- Add support for cn-north-1 region (@mbrossard)
* Wed Jul 11 2016 Mathias Brossard <[email protected]> 1.1.0-1
- Add support for AWS v4 signature (@mbrossard)
- Add support for s3:// scheme (@asedge, @mbrossard)
- Add retries with exponential back-off (@bemehow, @mbrossard)
* Tue Jul 05 2016 Mathias Brossard <[email protected]> 1.0.3-1
- Add support for delegated roles (@ToneD)
* Tue Nov 03 2015 Mathias Brossard <[email protected]> 1.0.2-1
- Fix for trailing line-feed on signature on newer python 2.7 (@mbrossard)
* Fri May 31 2013 Matt Jamison <[email protected]> 1.0-1
- Initial packaging