Blame awscli.spec

Fabio Alessandro Locati 47d29d
%if 0%{?rhel}
Fabio Alessandro Locati 33f79a
%bcond_with python3
Fabio Alessandro Locati 47d29d
%else
Fabio Alessandro Locati 33f79a
%bcond_without python3
Fabio Alessandro Locati 47d29d
%endif
Fabio Alessandro Locati 47d29d
David Duncan 319d0a
%global botocore_version 1.10.42
Fabio Alessandro Locati 33f79a
Fabio Alessandro Locati 47d29d
Name:           awscli
David Duncan afd01d
Version:        1.15.72
David Duncan b3180f
Release:        2%{?dist}
Fabio Alessandro Locati 47d29d
Summary:        Universal Command Line Environment for AWS
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
License:        ASL 2.0 and MIT
Fabio Alessandro Locati 47d29d
URL:            http://aws.amazon.com/cli
David Duncan 99a33d
Source0:        https://files.pythonhosted.org/packages/source/a/%{name}/%{name}-%{version}.tar.gz
Fabio Alessandro Locati 47d29d
BuildArch:      noarch
Fabio Alessandro Locati 33f79a
%if %{with python3}
Fabio Alessandro Locati 47d29d
BuildRequires:  python3-devel
Fabio Alessandro Locati 47d29d
BuildRequires:  python3-setuptools
David Duncan b3180f
Requires:       python3-botocore >= %{botocore_version}
Fabio Alessandro Locati e78f5e
Requires:       python3-colorama >= 0.2.5
Fabio Alessandro Locati e78f5e
Requires:       python3-docutils >= 0.10
Fabio Alessandro Locati e78f5e
Requires:       python3-rsa >= 3.1.2
Fabio Alessandro Locati bd5978
Requires:       python3-s3transfer >= 0.1.9
Fabio Alessandro Locati fc8f0f
Requires:       python3-PyYAML >= 3.10
Fabio Alessandro Locati 47d29d
%else
Fabio Alessandro Locati 47d29d
BuildRequires:  python2-devel
Fabio Alessandro Locati 47d29d
BuildRequires:  python-setuptools
Fabio Alessandro Locati 33f79a
Requires:       python2-botocore = %{botocore_version}
Fabio Alessandro Locati e78f5e
Requires:       python-colorama >= 0.2.5
Fabio Alessandro Locati e78f5e
Requires:       python-docutils >= 0.10
Fabio Alessandro Locati e78f5e
Requires:       python2-rsa >= 3.1.2
Fabio Alessandro Locati bd5978
Requires:       python2-s3transfer >= 0.1.9
Fabio Alessandro Locati fc8f0f
Requires:       PyYAML >= 3.10
Fabio Alessandro Locati 33f79a
%endif # with python3
Fabio Alessandro Locati 47d29d
%if 0%{?fedora}
Fabio Alessandro Locati 47d29d
Recommends: bash-completion
Fabio Alessandro Locati 47d29d
Recommends: zsh
Fabio Alessandro Locati 47d29d
%endif # Fedora
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 33f79a
%if %{with python3}
Fabio Alessandro Locati 47d29d
%{?python_provide:%python_provide python3-%{name}}
Fabio Alessandro Locati 47d29d
%else
Fabio Alessandro Locati 47d29d
%{?python_provide:%python_provide python2-%{name}}
Fabio Alessandro Locati 33f79a
%endif # with python3
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
%description
Fabio Alessandro Locati 47d29d
This package provides a unified
Fabio Alessandro Locati 47d29d
command line interface to Amazon Web Services.
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
%prep
Fabio Alessandro Locati 47d29d
%setup -q -n %{name}-%{version}
Fabio Alessandro Locati 47d29d
rm -rf %{name}.egg-info
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
%build
Fabio Alessandro Locati 33f79a
%if %{with python3}
Fabio Alessandro Locati 47d29d
%py3_build
Fabio Alessandro Locati 47d29d
%else
Fabio Alessandro Locati c204f1
%py2_build
Fabio Alessandro Locati 33f79a
%endif # with python3
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
%install
Fabio Alessandro Locati 33f79a
%if %{with python3}
Fabio Alessandro Locati 47d29d
%py3_install
Fabio Alessandro Locati 47d29d
%else
Fabio Alessandro Locati c204f1
%py2_install
Fabio Alessandro Locati 33f79a
%endif # with python3
Fabio Alessandro Locati 47d29d
# Fix path and permissions for bash completition
Fabio Alessandro Locati e31b42
%global bash_completion_dir /etc/bash_completion.d
Fabio Alessandro Locati 47d29d
mkdir -p %{buildroot}%{bash_completion_dir}
Fabio Alessandro Locati 47d29d
mv %{buildroot}%{_bindir}/aws_bash_completer %{buildroot}%{bash_completion_dir}
Fabio Alessandro Locati 47d29d
chmod 644 %{buildroot}%{bash_completion_dir}/aws_bash_completer
Fabio Alessandro Locati 47d29d
# Fix path and permissions for zsh completition
Fabio Alessandro Locati 47d29d
%global zsh_completion_dir /usr/share/zsh/site-functions
Fabio Alessandro Locati 47d29d
mkdir -p %{buildroot}%{zsh_completion_dir}
Fabio Alessandro Locati 47d29d
mv %{buildroot}%{_bindir}/aws_zsh_completer.sh %{buildroot}%{zsh_completion_dir}
Kevin Fenzi a69a70
chmod 755 %{buildroot}%{zsh_completion_dir}/aws_zsh_completer.sh
Fabio Alessandro Locati 47d29d
ls -alh %{buildroot}%{zsh_completion_dir}/aws_zsh_completer.sh
Fabio Alessandro Locati 47d29d
# We don't need the Windows CMD script
Fabio Alessandro Locati 47d29d
rm %{buildroot}%{_bindir}/aws.cmd
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
%files
Fabio Alessandro Locati 47d29d
%{!?_licensedir:%global license %doc} 
Fabio Alessandro Locati 47d29d
%doc README.rst
Fabio Alessandro Locati 47d29d
%license LICENSE.txt
Fabio Alessandro Locati 47d29d
%{_bindir}/aws
Fabio Alessandro Locati 47d29d
%{_bindir}/aws_completer
Fabio Alessandro Locati 47d29d
%dir %{bash_completion_dir}
Fabio Alessandro Locati 47d29d
%{bash_completion_dir}/aws_bash_completer
Fabio Alessandro Locati 47d29d
%dir %{zsh_completion_dir}
Fabio Alessandro Locati 47d29d
%{zsh_completion_dir}/aws_zsh_completer.sh
Fabio Alessandro Locati 33f79a
%if %{with python3}
Fabio Alessandro Locati 47d29d
%{python3_sitelib}/awscli
Fabio Alessandro Locati 47d29d
%{python3_sitelib}/%{name}-%{version}-py?.?.egg-info
Fabio Alessandro Locati 47d29d
%else
Fabio Alessandro Locati 47d29d
%{python2_sitelib}/awscli
Fabio Alessandro Locati 47d29d
%{python2_sitelib}/%{name}-%{version}-py?.?.egg-info
Fabio Alessandro Locati 33f79a
%endif # with python3
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati 47d29d
%changelog
David Duncan afd01d
* Sun Sep 02 2018 David Duncan <davdunc@amazon.com> - 1.15.72-1
David Duncan afd01d
- Update to 1.15.72. Updates bug #1613078
David Duncan afd01d
Kevin Fenzi 257b61
* Sun Aug 05 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.71-1
Kevin Fenzi 257b61
- Update to 1.15.71. Fixes bug #1612393
Kevin Fenzi 257b61
Kevin Fenzi 00b79a
* Fri Aug 03 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.70-1
Kevin Fenzi 00b79a
- Update to 1.15.70. Fixes bug #1611853
Kevin Fenzi 00b79a
Kevin Fenzi 7db1ea
* Wed Aug 01 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.69-1
Kevin Fenzi 7db1ea
- Update to 1.15.69. Fixes bug #1610059
Kevin Fenzi 7db1ea
Kevin Fenzi 81ddcd
* Fri Jul 27 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.66-1
Kevin Fenzi 81ddcd
- Update to 1.15.66. Fixes bug #1609074
Kevin Fenzi 81ddcd
Kevin Fenzi 21bd30
* Thu Jul 26 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.65-1
Kevin Fenzi 21bd30
- Update to 1.15.65. Fixes bug #1608097
Kevin Fenzi 21bd30
Kevin Fenzi 4de1eb
* Sun Jul 22 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.63-1
Kevin Fenzi 4de1eb
- Update to 1.15.63. Fixes bug #1606924
Kevin Fenzi 4de1eb
Kevin Fenzi 4e5e2d
* Thu Jul 19 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.62-1
Kevin Fenzi 4e5e2d
- Update to 1.15.62. Fixes bug #1602972
Kevin Fenzi 4e5e2d
Kevin Fenzi b8d493
* Wed Jul 18 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.60-1
Kevin Fenzi b8d493
- Update to 1.15.60. Fixes bug #1602176
Kevin Fenzi b8d493
Kevin Fenzi 803833
* Sun Jul 15 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.59-1
Kevin Fenzi 803833
- Update to 1.15.59. Fixes bug #1599467
Kevin Fenzi 803833
Fedora Release Engineering 50d0d0
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.53-2
Fedora Release Engineering 50d0d0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Fedora Release Engineering 50d0d0
Kevin Fenzi 61d747
* Fri Jul 06 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.53-1
Kevin Fenzi 61d747
- Update to 1.15.53. Fixes bug #1598936
Kevin Fenzi 61d747
Kevin Fenzi 90412a
* Thu Jul 05 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.52-1
Kevin Fenzi 90412a
- Update to 1.15.52. Fixes bug #1598597
Kevin Fenzi 90412a
Kevin Fenzi 3fe671
* Wed Jul 04 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.51-2
Kevin Fenzi 3fe671
- Update to 1.15.51. Fixes bug #1596663
Kevin Fenzi 3fe671
Miro Hrončok 00ed94
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 1.15.48-2
Miro Hrončok 00ed94
- Rebuilt for Python 3.7
Miro Hrončok 00ed94
Kevin Fenzi 5930b9
* Thu Jun 28 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.48-1
Kevin Fenzi 5930b9
- Update to 1.14.48. Fixes bug #1596420
Kevin Fenzi 5930b9
Kevin Fenzi ff5e4f
* Thu Jun 28 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.47-1
Kevin Fenzi ff5e4f
- Update to 1.14.47. Fixes bug #1595469
Kevin Fenzi ff5e4f
Kevin Fenzi 08a0af
* Sat Jun 23 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.45-1
Kevin Fenzi 08a0af
- Update to 1.14.45. Fixes bug #1594465
Kevin Fenzi 08a0af
Kevin Fenzi bb646d
* Fri Jun 22 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.44-1
Kevin Fenzi bb646d
- Update to 1.14.44. Fixes bug #1594038
Kevin Fenzi bb646d
Kevin Fenzi 70b6ae
* Fri Jun 22 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.43-1
Kevin Fenzi 70b6ae
- Update to 1.14.43. Fixes bug #1594038
Kevin Fenzi 70b6ae
- Fix python-botocore version to match new python-botocore.
Kevin Fenzi 70b6ae
Kevin Fenzi be8fb5
* Wed Jun 20 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.42-1
Kevin Fenzi be8fb5
- Update to 1.14.42. Fixes bug #1593483
Kevin Fenzi be8fb5
Kevin Fenzi 108b67
* Wed Jun 20 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.41-1
Kevin Fenzi 108b67
- Update to 1.15.41. Fixes bug #1593040
Kevin Fenzi 108b67
Miro Hrončok d154c0
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.15.40-2
Miro Hrončok d154c0
- Rebuilt for Python 3.7
Miro Hrončok d154c0
Kevin Fenzi 401332
* Fri Jun 15 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.40-1
Kevin Fenzi 401332
- Update to 1.15.40. Fixes bug #1591986
Kevin Fenzi 401332
Kevin Fenzi 6f7df0
* Fri Jun 15 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.39-1
Kevin Fenzi 6f7df0
- Update to 1.15.39. Fixes bug #1591048
Kevin Fenzi 6f7df0
Kevin Fenzi bb6499
* Tue Jun 12 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.37-1
Kevin Fenzi bb6499
- Update to 1.15.37. Fixes bug #1590039
Kevin Fenzi bb6499
Kevin Fenzi da5321
* Sat Jun 09 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.35-1
Kevin Fenzi da5321
- Update to 1.15.35. Fixes bug #1588851
Kevin Fenzi da5321
Kevin Fenzi f4426b
* Wed Jun 06 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.33-1
Kevin Fenzi f4426b
- Update to 1.15.33. Fixes bug #1586055
Kevin Fenzi f4426b
Kevin Fenzi 9a5609
* Sun Jun 03 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.31-1
Kevin Fenzi 9a5609
- Update to 1.15.31. Fixes bug #1583867
Kevin Fenzi 9a5609
Kevin Fenzi 84bf5d
* Sun May 27 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.28-1
Kevin Fenzi 84bf5d
- Update to 1.15.28. Fixes bug #1580992
Kevin Fenzi 84bf5d
Kevin Fenzi 26a73c
* Fri May 18 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.24-1
Kevin Fenzi 26a73c
- Update to 1.15.24. Fixes bug #1579995
Kevin Fenzi 26a73c
Kevin Fenzi 1e985f
* Fri May 18 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.23-1
Kevin Fenzi 1e985f
- Update to 1.15.23. Fixes bug #1579573
Kevin Fenzi 1e985f
Kevin Fenzi 4ea961
* Wed May 16 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.22-1
Kevin Fenzi 4ea961
- Update to 1.15.22. Fixes bug #1579086
Kevin Fenzi 4ea961
Kevin Fenzi 23d71f
* Wed May 16 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.21-1
Kevin Fenzi 23d71f
- Update to 1.15.21. Fixes bug #1578162
Kevin Fenzi 23d71f
Kevin Fenzi a69a70
* Fri May 11 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.19-1
Kevin Fenzi a69a70
- Update to 1.15.19. Fixes bug #1574745
Kevin Fenzi a69a70
Kevin Fenzi e82eee
* Wed May 02 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.12-1
Kevin Fenzi e82eee
- Update to 1.15.12. Fixes bug #1574052
Kevin Fenzi e82eee
Kevin Fenzi 8bf405
* Fri Apr 27 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.10-1
Kevin Fenzi 8bf405
- Update to 1.15.10. Fixes bug #1572396
Kevin Fenzi 8bf405
Kevin Fenzi 76226c
* Thu Apr 26 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.9-1
Kevin Fenzi 76226c
- Update to 1.15.9. Fixes bug #1571002
Kevin Fenzi 76226c
Kevin Fenzi 0367af
* Mon Apr 23 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.6-1
Kevin Fenzi 0367af
- Update to 1.15.6. Fixes bug #1570216
Kevin Fenzi 0367af
Kevin Fenzi 94b407
* Fri Apr 20 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.5-1
Kevin Fenzi 94b407
- Update to 1.15.5. Fixes bug #1569974
Kevin Fenzi 94b407
Kevin Fenzi ba8403
* Sat Apr 14 2018 Kevin Fenzi <kevin@scrye.com> - 1.15.4-1
Kevin Fenzi ba8403
- Update to 1.15.4. Fixes bug #1565379
Kevin Fenzi ba8403
Kevin Fenzi da90a1
* Sat Apr 07 2018 Kevin Fenzi <kevin@scrye.com>  - 1.15.2-1
Kevin Fenzi ba8403
- Update to 1.15.2. Fixes bug #1563195
Kevin Fenzi da90a1
Kevin Fenzi dc00c1
* Sat Mar 31 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.68-1
Kevin Fenzi dc00c1
- Update to 1.4.68. Fixes bug #1561240
Kevin Fenzi dc00c1
Kevin Fenzi 163df8
* Tue Mar 27 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.64-1
Kevin Fenzi 163df8
- Update to 1.4.64. Fixes bug #1560762
Kevin Fenzi 163df8
Kevin Fenzi e7baac
* Sun Mar 25 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.63-1
Kevin Fenzi e7baac
- Update to 1.4.63. Fixes bug #1559367
Kevin Fenzi e7baac
Kevin Fenzi aed06f
* Fri Mar 23 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.62-1
Kevin Fenzi aed06f
- Update to 1.4.62. Fixes bug #1559367
Kevin Fenzi aed06f
Kevin Fenzi 0176c9
* Wed Mar 21 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.60-1
Kevin Fenzi 0176c9
- Update to 1.4.60. Fixes bug #1559193
Kevin Fenzi 0176c9
Kevin Fenzi 2647e5
* Wed Mar 21 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.59-1
Kevin Fenzi 2647e5
- Update to 1.4.59. Fixes bug #1558758
Kevin Fenzi 2647e5
Kevin Fenzi bcf4be
* Sat Mar 17 2018 Kevin Fenzi <kevin@scrye.com>  - 1.14.58-1
Kevin Fenzi bcf4be
- Update to 1.4.58. Fixes bug #1555085
Kevin Fenzi bcf4be
Kevin Fenzi d1d851
* Tue Mar 13 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.55-1
Kevin Fenzi d1d851
- Update to 1.4.55. Fixes bug #1555085
Kevin Fenzi d1d851
Kevin Fenzi 2fc437
* Tue Mar 13 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.54-1
Kevin Fenzi d1d851
- Update to 1.14.54. Fixes bug #1554552
Kevin Fenzi 2fc437
Kevin Fenzi bf381b
* Thu Mar 08 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.53-1
Kevin Fenzi bf381b
- Update to 1.14.53. Fixes bug 1552345
Kevin Fenzi bf381b
Kevin Fenzi a9b19a
* Sat Mar 03 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.50-2
Kevin Fenzi a9b19a
- Update for new python-botocore.
Kevin Fenzi a9b19a
Kevin Fenzi 0d7d8d
* Sat Mar 03 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.50-1
Kevin Fenzi 0d7d8d
- Update to 1.14.50. Fixes bug #1550746
Kevin Fenzi 0d7d8d
Kevin Fenzi 60b2b3
* Thu Mar 01 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.49-1
Kevin Fenzi 60b2b3
- Update to 1.14.49. Fixes bug #1549549
Kevin Fenzi 60b2b3
Kevin Fenzi e9b5ea
* Sat Feb 24 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.46-1
Kevin Fenzi e9b5ea
- Update to 1.14.46. Fixes bug #1546901
Kevin Fenzi e9b5ea
Kevin Fenzi 84e54f
* Sat Feb 17 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.41-1
Kevin Fenzi 84e54f
- Update to 1.14.41. Fixes bug #1546437
Kevin Fenzi 84e54f
Kevin Fenzi 681e8c
* Fri Feb 16 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.40-1
Kevin Fenzi 681e8c
- Update to 1.14.40. Fixes bug #1544045
Kevin Fenzi 681e8c
Kevin Fenzi aa9de8
* Thu Feb 08 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.34-1
Kevin Fenzi aa9de8
- Update to 1.14.34. Fixes bug #1543659
Kevin Fenzi aa9de8
Kevin Fenzi 2f4f7e
* Wed Feb 07 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.33-1
Kevin Fenzi 2f4f7e
- Update to 1.14.33. Fixes bug #1542468
Kevin Fenzi 2f4f7e
Fedora Release Engineering 0d4e57
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.14.32-3
Fedora Release Engineering 0d4e57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Fedora Release Engineering 0d4e57
Kevin Fenzi a9fa52
* Wed Jan 31 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.32-2
Kevin Fenzi a9fa52
- Fix python-botocore version requirement.
Kevin Fenzi a9fa52
Kevin Fenzi 4be11b
* Wed Jan 31 2018 Kevin Fenzi <kevin@scrye.com> - 1.14.32-1
Kevin Fenzi 4be11b
- Update to 1.14.32. Fixes bug #1481464
Kevin Fenzi 4be11b
Fabio Alessandro Locati a61a23
* Sun Aug 13 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.133-1
Fabio Alessandro Locati a61a23
- Update to 1.11.133
Fabio Alessandro Locati a61a23
Fedora Release Engineering db7e79
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.109-3
Fedora Release Engineering db7e79
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Fedora Release Engineering db7e79
Fabio Alessandro Locati 353d8c
* Wed Jun 21 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.109-2
Fabio Alessandro Locati 353d8c
- Forgot to update
Fabio Alessandro Locati 353d8c
Fabio Alessandro Locati 4f9e50
* Wed Jun 21 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.109-1
Fabio Alessandro Locati 4f9e50
- Update to 1.11.109
Fabio Alessandro Locati 4f9e50
Fabio Alessandro Locati 2f2cf8
* Tue May 23 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.90-1
Fabio Alessandro Locati 2f2cf8
- Update to 1.11.90
Fabio Alessandro Locati 2f2cf8
Fabio Alessandro Locati f6f503
* Wed Mar 15 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.63-1
Fabio Alessandro Locati f6f503
- Update to 1.11.63
Fabio Alessandro Locati f6f503
Fabio Alessandro Locati 2c93fc
* Sat Feb 25 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.55-1
Fabio Alessandro Locati 2c93fc
- Update to 1.11.55
Fabio Alessandro Locati 2c93fc
Fedora Release Engineering 68999f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.40-2
Fedora Release Engineering 68999f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Fedora Release Engineering 68999f
Fabio Alessandro Locati e02a95
* Fri Jan 20 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.40-1
Fabio Alessandro Locati e02a95
- Update to 1.11.40
Fabio Alessandro Locati e02a95
Fabio Alessandro Locati 57a642
* Wed Dec 28 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.34-2
Fabio Alessandro Locati 57a642
- Update to 1.11.34
Fabio Alessandro Locati 57a642
Miro Hrončok d170b1
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.11.28-3
Miro Hrončok d170b1
- Rebuild for Python 3.6
Miro Hrončok d170b1
Fabio Alessandro Locati fc8f0f
* Tue Dec 13 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.28-2
Fabio Alessandro Locati fc8f0f
- Add PyYAML dependency
Fabio Alessandro Locati fc8f0f
Fabio Alessandro Locati fc8f0f
* Sun Dec 11 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.28-1
Fabio Alessandro Locati ee5aef
- Update to 1.11.28
Fabio Alessandro Locati ee5aef
Fabio Alessandro Locati fc8f0f
* Sat Dec 03 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.24-1
Fabio Alessandro Locati 33f79a
- Update to 1.11.24
Fabio Alessandro Locati 33f79a
Fabio Alessandro Locati fc8f0f
* Thu Nov 24 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.21-1
Fabio Alessandro Locati 1d05c9
- Update to 1.11.21
Fabio Alessandro Locati 1d05c9
Fabio Alessandro Locati fc8f0f
* Mon Oct 10 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.12-1
Fabio Alessandro Locati 1d05c9
- Update to 1.11.12
Fabio Alessandro Locati 879609
Fabio Alessandro Locati fc8f0f
* Sun Oct 02 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.11.0-1
Fabio Alessandro Locati b9d505
- Update to 1.11.0
Fabio Alessandro Locati b9d505
Fabio Alessandro Locati fc8f0f
* Wed Sep 28 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.67-1
Fabio Alessandro Locati 17e80b
- Update to 1.10.67
Fabio Alessandro Locati 17e80b
Fabio Alessandro Locati fc8f0f
* Wed Sep 07 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.62-1
Fabio Alessandro Locati 3f5dc1
- Update to 1.10.62
Fabio Alessandro Locati 3f5dc1
Fabio Alessandro Locati fc8f0f
* Wed Aug 24 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.59-1
Fabio Alessandro Locati ed5ed7
- Update to current upstream version
Fabio Alessandro Locati ed5ed7
Fabio Alessandro Locati fc8f0f
* Fri Aug 05 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.53-1
Fabio Alessandro Locati a8bdd4
- Update to current upstream version
Fabio Alessandro Locati a8bdd4
Fedora Release Engineering c58e60
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.45-2
Fedora Release Engineering c58e60
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
Fedora Release Engineering c58e60
Fabio Alessandro Locati fc8f0f
* Wed Jul 06 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.45-1
Fabio Alessandro Locati 7615ef
- Update to current upstream version
Fabio Alessandro Locati 7615ef
Fabio Alessandro Locati fc8f0f
* Wed Jun 08 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.36-1
Fabio Alessandro Locati e78f5e
- Update to current upstream version
Fabio Alessandro Locati e78f5e
Fabio Alessandro Locati fc8f0f
* Sat May 28 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.34-1
Fabio Alessandro Locati 0820a0
- Update to current upstream version
Fabio Alessandro Locati 0820a0
Fabio Alessandro Locati fc8f0f
* Wed Feb 24 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.7-1
Fabio Alessandro Locati f124c8
- Update to current upstream version
Fabio Alessandro Locati f124c8
Fabio Alessandro Locati fc8f0f
* Tue Feb 23 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.6-2
Fabio Alessandro Locati f4d1ba
- Fix broken dependency
Fabio Alessandro Locati f4d1ba
Fabio Alessandro Locati fc8f0f
* Fri Feb 19 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.6-1
Fabio Alessandro Locati ebb98a
- Update to current upstream version
Fabio Alessandro Locati ebb98a
Fabio Alessandro Locati fc8f0f
* Wed Feb 17 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.5-1
Fabio Alessandro Locati 95621d
- Update to current upstream version
Fabio Alessandro Locati 95621d
Fabio Alessandro Locati fc8f0f
* Fri Feb 12 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.4-1
Fabio Alessandro Locati ddfd86
- Update to current upstream version
Fabio Alessandro Locati ddfd86
Fabio Alessandro Locati fc8f0f
* Wed Feb 10 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.3-1
Fabio Alessandro Locati cf310e
- Update to current upstream version
Fabio Alessandro Locati cf310e
Fabio Alessandro Locati fc8f0f
* Tue Feb 09 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.2-1
Fabio Alessandro Locati 9b7fd5
- Update to current upstream version
Fabio Alessandro Locati 9b7fd5
Fabio Alessandro Locati fc8f0f
* Tue Feb 02 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.1-1
Fabio Alessandro Locati 79364a
- Update to current upstream version
Fabio Alessandro Locati 79364a
Fabio Alessandro Locati fc8f0f
* Fri Jan 22 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.10.0-1
Fabio Alessandro Locati 8064f3
- Update to current upstream version
Fabio Alessandro Locati 8064f3
Fabio Alessandro Locati fc8f0f
* Wed Jan 20 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.9.21-1
Fabio Alessandro Locati 95c26f
- Update to current upstream version
Fabio Alessandro Locati 95c26f
- Don't fix documentation permissions any more (pull request merged)
Fabio Alessandro Locati 95c26f
Fabio Alessandro Locati fc8f0f
* Fri Jan 15 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.920-1
Fabio Alessandro Locati fbcd14
- Update to current upstream version
Fabio Alessandro Locati fbcd14
Fabio Alessandro Locati fc8f0f
* Fri Jan 15 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.9.19-1
Fabio Alessandro Locati 9e2a3e
- Update to current upstream version
Fabio Alessandro Locati 9e2a3e
- Don't substitue the text of bin/aws_bash_completer anymore (pull request merged)
Fabio Alessandro Locati 9e2a3e
- Don't remove the shabang from awscli/paramfile.py anymore (pull request merged)
Fabio Alessandro Locati 9e2a3e
Fabio Alessandro Locati fc8f0f
* Wed Jan 13 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.9.18-1
Fabio Alessandro Locati e31b42
- Update to current upstream version
Fabio Alessandro Locati e31b42
- Fix completion for bash
Fabio Alessandro Locati e31b42
- Remove bcdoc dependency that is not used anymore
Fabio Alessandro Locati e31b42
Fabio Alessandro Locati fc8f0f
* Sun Jan 10 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.9.17-1
Fabio Alessandro Locati e31b42
- Update to current upstream version
Fabio Alessandro Locati b6e9de
- Lock the botocore dependency version
Fabio Alessandro Locati b6e9de
Fabio Alessandro Locati fc8f0f
* Sat Jan 09 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.9.16-1
Fabio Alessandro Locati 47d29d
- Update to current upstream version
Fabio Alessandro Locati 47d29d
- Add dir /usr/share/zsh
Fabio Alessandro Locati 47d29d
- Add dir /usr/share/zsh/site-functions
Fabio Alessandro Locati 47d29d
- Add MIT license (topictags.py is MIT licensed)
Fabio Alessandro Locati 47d29d
- Move dependency from python-devel to python2-devel
Fabio Alessandro Locati 47d29d
- Add Recommends lines for zsh and bsah-completion for Fedora
Fabio Alessandro Locati 47d29d
- Remove BuildReuires: bash-completion
Fabio Alessandro Locati 47d29d
- Remove the macros py2_build and py2_install to prefer the extended form
Fabio Alessandro Locati 47d29d
- Force non-executable bit for documentation
Fabio Alessandro Locati 47d29d
- Remove shabang from awscli/paramfile.py
Fabio Alessandro Locati 47d29d
- Fix bash completion
Fabio Alessandro Locati 47d29d
- Fix zsh completion
Fabio Alessandro Locati 47d29d
- Remove aws.cmd
Fabio Alessandro Locati 47d29d
Fabio Alessandro Locati fc8f0f
* Tue Dec 29 2015 Fabio Alessandro Locati <fale@fedoraproject.org> - 1.9.15-1
Fabio Alessandro Locati 47d29d
- Initial package.