5abfdcb
# SPDX-License-Identifier: MIT
5abfdcb
# Copyright (C) Fedora Project Authors
5abfdcb
# License Text: https://spdx.org/licenses/MIT.html
5abfdcb
81b557b
# Compatibility                                                             #
81b557b
#############################################################################
81b557b
# This specfile should remain compatible with EPEL 9 and stable Fedoras.    #
81b557b
# The EPEL 8 specfile is separately maintained,                             #
81b557b
# but the ansible-prep.sh and ansible-install-license.sh scripts are shared #
81b557b
# across branches.                                                          #
81b557b
#############################################################################
81b557b
c947a30
# TODO: Re-enable docs and tests once possible
81b557b
%bcond docs 0
81b557b
%bcond tests 0
81b557b
81b557b
# disable the python -s shbang flag as we want to be able to find non system modules
81b557b
# NB: We cannot use https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_py3_shebang_S on RHEL 9.
81b557b
%global py3_shebang_flags %(echo %{py3_shebang_flags} | sed 's|s||')
81b557b
b205114
# Roles' files and templates should not be mangled.
b205114
# These files are installed on remote systems which may or may not have the
2d5e2ef
# same filesystem layout as Fedora.
b205114
%global __brp_mangle_shebangs_exclude_from ^%{python3_sitelib}/ansible_collections/[^/]+/[^/]+/roles/[^/]+/(files|templates)/.*$
b205114
%global __requires_exclude_from %{?__requires_exclude_from:%__requires_exclude_from|}%{__brp_mangle_shebangs_exclude_from}
b205114
fdb05b5
%if 0%{?rhel} >= 8
de97f8a
# ansible-core package is built against Python 3.11 in RHEL 8 and RHEL 9 which
de97f8a
# is not the default version.
de97f8a
%global python3_pkgversion 3.11
e58d6b2
%endif
e58d6b2
c947a30
Name:           ansible
c947a30
Summary:        Curated set of Ansible collections included in addition to ansible-core
cc8d986
Version:        9.5.1
81b557b
%global uversion %{version_no_tilde %{quote:%nil}}
9fc79dd
Release:        1%{?dist}
fb10389
ff7cd60
# In addition to GPL-3.0-or-later, the following licenses apply.
ff7cd60
# License text that solely exists in file headers were not considered.
ff7cd60
# Instead, the overall license was determined by searching for license files
ff7cd60
# This is the only the practical way to handle license scanning for a project
ff7cd60
# of this size.
ff7cd60
# All collections must be primarily licensed under GPL-3.0-or-later, so top
ff7cd60
# level license files are excluded.
ff7cd60
# find /usr/share/licenses/ansible -type f | grep -vEe '(COPYING|LICENSE)(\.(txt|md))?$' -e 'GPL' | xargs -n1 basename | sort -u
ff7cd60
#
ff7cd60
# Apache-2.0.txt
ff7cd60
# Apache-license.txt
ff7cd60
# BSD-2-Clause.txt
ff7cd60
# BSD-3-Clause.txt
ff7cd60
# MIT.txt
ff7cd60
# MPL-2.0.txt
ff7cd60
# PSF-2.0.txt
ff7cd60
# PSF-license.txt
10415a9
License:        GPL-3.0-or-later AND Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND MIT AND MPL-2.0 AND PSF-2.0
df3a657
Source0:        %{pypi_source %{name} %{uversion}}
9e268c0
Source1:        ansible-prep.sh
9e268c0
Source2:        ansible-install-licenses.sh
3eea4a5
c947a30
Url:            https://ansible.com
c947a30
BuildArch:      noarch
f2669e1
50081c1
BuildRequires:  dos2unix
c947a30
BuildRequires:  findutils
b453756
BuildRequires:  hardlink
e58d6b2
BuildRequires:  python%{python3_pkgversion}-devel
3388b91
b453756
%if %{with tests}
c947a30
# TODO build-requires
88ed9f1
%endif
c947a30
b453756
%if %{with docs}
c947a30
# TODO build-requires
5809307
%endif
cbd93a6
81b557b
0ad4f49
%description
cbd93a6
Ansible is a radically simple model-driven configuration management,
cbd93a6
multi-node deployment, and remote task execution system. Ansible works
cbd93a6
over SSH and does not require any software or daemons to be installed
cbd93a6
on remote nodes. Extension modules can be written in any language and
cbd93a6
are transferred to managed machines automatically.
cbd93a6
c947a30
This package provides a curated set of Ansible collections included in addition
c947a30
to ansible-core.
645b44d
81b557b
c947a30
%prep
3eea4a5
%autosetup -N -n %{name}-%{uversion}
3eea4a5
81b557b
# Relax ansible-core dependency to avoid FTI bugs on EPEL
2d5e2ef
#
2d5e2ef
# This is necessary, because the EPEL ansible maintainers don't have control
2d5e2ef
# over ansible-core in RHEL, and it's difficult to time updates across
2d5e2ef
# repositories. I have tried to stick to upstream's version constraints, but
2d5e2ef
# that's apparently not working too well. This change gives us a grace period
2d5e2ef
# to properly release and test new ansible major versions after RHEL rebases
2d5e2ef
# ansible-core. The lower version constraints can stay in place.
2d5e2ef
b9879db
sed "s|ansible-core ~=|ansible-core >=|" setup.cfg > setup.cfg.bak
2d5e2ef
# Verify
2d5e2ef
set -o pipefail
b9879db
grep -B1 "ansible-core >=" setup.cfg.bak | grep -F 'install_requires ='
81b557b
%if %{defined rhel}
b9879db
mv setup.cfg.bak setup.cfg
2d5e2ef
%endif
2d5e2ef
9e268c0
# ansible-prep.sh
9e268c0
%{S:1}
b205114
9e268c0
(
9e268c0
mkdir licenses docs
9e268c0
cd ansible_collections
9e268c0
# ansible-license-install.sh
9e268c0
%{S:2} \
9e268c0
    "$(readlink -f ../licenses)" \
9e268c0
    "$(readlink -f ../docs)" \
9e268c0
)
2839040
81b557b
df3a657
%generate_buildrequires
df3a657
%pyproject_buildrequires
81b557b
df3a657
4f25327
%build
c947a30
%py3_shebang_fix ansible_collections
9e268c0
81b557b
%pyproject_wheel
81b557b
cbd93a6
4f25327
%install
81b557b
%pyproject_install
81b557b
# This adds over a minute to the build due to the size of the ansible package.
81b557b
# It's better to manually specify the paths in %%files...
81b557b
# %%pyproject_save_files ansible_collections
cbd93a6
9e268c0
mkdir -p %{buildroot}%{_licensedir}/ansible %{buildroot}%{_docdir}/ansible
9e268c0
mv licenses %{buildroot}%{_licensedir}/ansible/ansible_collections
9e268c0
mv docs %{buildroot}%{_pkgdocdir}/ansible_collections
e9de674
07ee163
hardlink -v %{buildroot}%{python3_sitelib}/ansible_collections
9e268c0
hardlink -v %{buildroot}%{_licensedir}/ansible
157c656
030afe9
# XXX: One of the build steps is messing with the permission.
030afe9
# XXX: The file is 0755 in the source tarball.
030afe9
chmod 0755 %{buildroot}%{python3_sitelib}/ansible_collections/ngine_io/cloudstack/scripts/inventory/cloudstack.py
030afe9
81b557b
9807c9b
%check
81b557b
%if %{with tests}
c947a30
# TODO: Run tests
57f52d4
%endif
cbd93a6
81b557b
9e268c0
%files
88ed9f1
%license COPYING
9e268c0
%license %{_licensedir}/ansible/ansible_collections/
481b80c
%doc README.rst PKG-INFO porting_guide_?.rst CHANGELOG-v?.rst
9e268c0
%doc %{_pkgdocdir}/ansible_collections/
df3a657
%{_bindir}/ansible-community
c947a30
# Note (dmsimard): This ansible package installs collections to the python sitelib to mirror the UX
c947a30
# when installing the ansible package from PyPi.
c947a30
# This allows users to install individual collections manually with ansible-galaxy (~/.ansible/collections/ansible_collections)
c947a30
# or via standalone distribution packages to datadir (/usr/share).
c947a30
# Both will have precedence over the collections installed in the python sitelib.
38ecce6
%{python3_sitelib}/ansible_collections/
81b557b
%{python3_sitelib}/ansible-%{uversion}.dist-info/
81b557b
d1181c4
4f25327
%changelog
cc8d986
* Thu May 02 2024 Maxwell G <maxwell@gtmx.me> - 9.5.1-1
cc8d986
- Update to 9.5.1.
cc8d986
73c3761
* Fri Mar 29 2024 Maxwell G <maxwell@gtmx.me> - 9.4.0-1
73c3761
- Update to 9.4.0.
73c3761
03969f6
* Sat Mar 02 2024 Maxwell G <maxwell@gtmx.me> - 9.3.0-1
03969f6
- Update to 9.3.0.
3eea4a5
- Backport "podman pod info" patch to containers.podman
03969f6
9fc79dd
* Thu Feb 01 2024 Maxwell G <maxwell@gtmx.me> - 9.2.0-1
9fc79dd
- Update to 9.2.0.
9fc79dd
f6be2d6
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 9.1.0-3
f6be2d6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
f6be2d6
b3c98a1
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 9.1.0-2
b3c98a1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
b3c98a1
2e72b45
* Wed Dec 06 2023 Maxwell G <maxwell@gtmx.me> - 9.1.0-1
2e72b45
- Update to 9.1.0.
2e72b45
a4ef454
* Tue Nov 21 2023 Maxwell G <maxwell@gtmx.me> - 9.0.1-1
a4ef454
- Update to 9.0.1.
a4ef454
d7639d3
* Thu Oct 19 2023 Maxwell G <maxwell@gtmx.me> - 9.0.0~a3-1
d7639d3
- Update to 9.0.0~a3.
d7639d3
2c7d8ba
* Thu Oct 12 2023 Maxwell G <maxwell@gtmx.me> - 9.0.0~a2-1
2c7d8ba
- Update to 9.0.0~a2.
2c7d8ba
b9879db
* Thu Sep 28 2023 Maxwell G <maxwell@gtmx.me> - 9.0.0~a1-1
b9879db
- Update to 9.0.0~a1.
b9879db
27ce592
* Tue Sep 12 2023 Maxwell G <maxwell@gtmx.me> - 8.4.0-1
27ce592
- Update to 8.4.0.
27ce592
46761eb
* Thu Aug 17 2023 Maxwell G <maxwell@gtmx.me> - 8.3.0-1
46761eb
- Update to 8.3.0.
46761eb
08bc506
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 8.1.0-3
08bc506
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
08bc506
0321735
* Mon Jul 03 2023 Maxwell G <maxwell@gtmx.me> - 8.1.0-2
0321735
- Rebuilt for Python 3.12
0321735
fb34c87
* Thu Jun 22 2023 Maxwell G <maxwell@gtmx.me> - 8.1.0-1
fb34c87
- Update to 8.1.0.
fb34c87
8ae3733
* Fri Jun 16 2023 Python Maint <python-maint@redhat.com> - 8.0.0-2
8ae3733
- Rebuilt for Python 3.12
8ae3733
4c40dd8
* Tue May 30 2023 Maxwell G <maxwell@gtmx.me> - 8.0.0-1
4c40dd8
- Update to 8.0.0.
4c40dd8
2d214ae
* Tue May 23 2023 Maxwell G <maxwell@gtmx.me> - 8.0.0~rc1-1
2d214ae
- Update to 8.0.0~rc1.
2d214ae
b3fea49
* Tue May 16 2023 Maxwell G <maxwell@gtmx.me> - 8.0.0~b1-1
b3fea49
- Update to 8.0.0~b1.
b3fea49
935fbf0
* Wed May 03 2023 Maxwell G <maxwell@gtmx.me> - 8.0.0~a3-1
935fbf0
- Update to 8.0.0~a3.
935fbf0
1689b29
* Thu Apr 27 2023 Maxwell G <maxwell@gtmx.me> - 8.0.0~a2-1
1689b29
- Update to 8.0.0~a2.
1689b29
0ad6f9b
* Thu Apr 20 2023 Maxwell G <maxwell@gtmx.me> - 8.0.0~a1-1
0ad6f9b
- Update to 8.0.0~a1.
0ad6f9b
cd327ca
* Wed Mar 29 2023 Maxwell G <maxwell@gtmx.me> - 7.4.0-1
cd327ca
- Update to 7.4.0.
cd327ca
e0f7982
* Wed Mar 01 2023 Maxwell G <maxwell@gtmx.me> - 7.3.0-1
e0f7982
- Update to 7.3.0.
e0f7982
2b8666f
* Tue Jan 31 2023 David Moreau-Simard <moi@dmsimard.com> - 7.2.0-1
2b8666f
- Update to 7.2.0.
2b8666f
93d8d93
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.0-2
93d8d93
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
93d8d93
89056a9
* Fri Dec 09 2022 Maxwell G <gotmax@e.email> - 7.1.0-1
89056a9
- Update to 7.1.0.
89056a9
40724bc
* Wed Nov 23 2022 Maxwell G <gotmax@e.email> - 7.0.0-1
40724bc
- Update to 7.0.0.
40724bc
1bf2be2
* Fri Nov 18 2022 Maxwell G <gotmax@e.email> - 7.0.0~rc1-1
1bf2be2
- Update to 7.0.0~rc1.
1bf2be2
549dd46
* Tue Nov 08 2022 Maxwell G <gotmax@e.email> - 7.0.0~b1-1
549dd46
- Update to 7.0.0~b1.
549dd46
481b80c
* Fri Oct 28 2022 Maxwell G <gotmax@e.email> - 7.0.0~a2-1
481b80c
- Update to 7.0.0~a2.
481b80c
31ccbd4
* Thu Oct 13 2022 Maxwell G <gotmax@e.email> - 6.5.0-1
31ccbd4
- Update to 6.5.0.
31ccbd4
4f6358b
* Thu Sep 15 2022 Maxwell G <gotmax@e.email> - 6.4.0-1
4f6358b
- Update to 6.4.0.
4f6358b
9bec653
* Tue Aug 23 2022 Maxwell G <gotmax@e.email> - 6.3.0-1
9bec653
- Update to 6.3.0.
9bec653
7482ca2
* Tue Aug 02 2022 Maxwell G <gotmax@e.email> - 6.2.0-1
7482ca2
- Update to 6.2.0.
7482ca2
9f7b707
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.0-3
9f7b707
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
9f7b707
495495e
* Fri Jul 15 2022 Maxwell G <gotmax@e.email> - 6.1.0-2
495495e
- Fix FTI (rhbz#2107532).
495495e
9b3fbb3
* Thu Jul 14 2022 Maxwell G <gotmax@e.email> - 6.1.0-1
9b3fbb3
- Update to 6.1.0.
9b3fbb3
cb4308a
* Wed Jun 22 2022 Maxwell G <gotmax@e.email> - 6.0.0-1
cb4308a
- Update to 6.0.0.
cb4308a
df3a657
* Wed Jun 22 2022 Maxwell G <gotmax@e.email> - 6.0.0~rc1-1
df3a657
- Update to 6.0.0~rc1.
df3a657
- Stop duplicating docs and licenses.
df3a657
- Don't remove tests in %%prep that are now handled by setup.py.
07ee163
- Hardlink duplicated files and fix rpmlint errors
df3a657
0d952dd
* Thu Jun 16 2022 Python Maint <python-maint@redhat.com> - 5.9.0-2
0d952dd
- Rebuilt for Python 3.11
0d952dd
ee8c7d6
* Wed Jun 08 2022 Maxwell G <gotmax@e.email> - 5.9.0-1
ee8c7d6
- Update to 5.9.0.
ee8c7d6
be43570
* Thu May 19 2022 Maxwell G <gotmax@e.email> - 5.8.0-1
be43570
- Update to 5.8.0.
be43570
- Remove fortinet.fortios patch.
be43570
3f8e37c
* Wed Apr 27 2022 Maxwell G <gotmax@e.email> - 5.7.0-1
3f8e37c
- Update to 5.7.0.
3f8e37c
- Fix SyntaxError in fortinet.fortios collection.
50081c1
- Fix rpmlint errors
3f8e37c
e58d6b2
* Mon Apr 25 2022 Maxwell G <gotmax@e.email> - 5.6.0-2
e58d6b2
- Ensure correct version of ansible-core is available at buildtime.
e58d6b2
- Implement support for epel8.
e58d6b2
95b3b7d
* Wed Apr 06 2022 Kevin Fenzi <kevin@scrye.com> - 5.6.0-1
95b3b7d
- Update to 5.6.0.
95b3b7d
363f306
* Tue Mar 15 2022 David Moreau-Simard <moi@dmsimard.com> - 5.5.0-1
363f306
- Update to latest upstream release
363f306
dca8a3e
* Tue Feb 22 2022 David Moreau-Simard <moi@dmsimard.com> - 5.4.0-1
dca8a3e
- Update to latest upstream release
dca8a3e
3520836
* Wed Feb 16 2022 Maxwell G <gotmax@e.email> - 5.3.0-2
3520836
- Fix shebangs.
3520836
a458d3d
* Tue Feb 1 2022 David Moreau-Simard <moi@dmsimard.com> - 5.3.0-1
a458d3d
- Update to latest upstream release
a458d3d
87ec646
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-2
87ec646
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
87ec646
08f34bb
* Wed Jan 12 2022 David Moreau-Simard <moi@dmsimard.com> - 5.2.0-1
08f34bb
- Update to latest upstream release
08f34bb
c947a30
* Tue Jan 11 2022 David Moreau-Simard <moi@dmsimard.com> - 5.1.0-1
c947a30
- Update to latest upstream release
c947a30
- Refactor to take into account split from ansible-core after ansible 2.9, see: https://fedoraproject.org/wiki/Changes/Ansible5
c947a30
- Remove patches intended for Ansible 2.9
c947a30
- Removed packaging macros (soon included in ansible-packaging, see rhbz#2038591)
c947a30
- Removed provides/obsoletes on ansible-python3
c947a30
663b08d
* Mon Nov 01 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.27-2
663b08d
- Add patch for oracle linux Fixes rhbz#2018369
663b08d
120cc50
* Mon Oct 11 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.27-1
120cc50
- Update to 2.9.27. Fixes rhbz#2012918
120cc50
cd1958d
* Tue Sep 14 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.26-1
cd1958d
- Update to 2.9.26. Fixes rhbz#2002394
cd1958d
19c10f9
* Fri Aug 20 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.25-1
19c10f9
- Update to 2.9.25. Fixes rhbz#1994108
19c10f9
2b5eb14
* Sun Jul 25 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.24-1
2b5eb14
- Update to 2.9.24. Fixes rhbz#1983837
2b5eb14
33bccbc
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.23-3
33bccbc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
33bccbc
f2669e1
* Sat Jul 10 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.23-2
f2669e1
- Fix FTBFS with sphinx 4.x. Fixes rhbz#1977303
f2669e1
b777386
* Tue Jun 22 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.23-1
b777386
- Update to 2.9.23. Fixes rhbz#1974592
b777386
- Add patch for Rocky Linux. Fixes rhbz#1968728
b777386
6a181e3
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.9.22-2
6a181e3
- Rebuilt for Python 3.10
6a181e3
a246576
* Mon May 24 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.22-1
a246576
- Update to 2.9.22. Fixes rhbz#1964173
a246576
f72cb6d
* Mon May 03 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.21-1
f72cb6d
- Update to 2.9.21. Fixes rhbz#1956584
f72cb6d
d1181c4
* Sat Apr 24 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.20-1
d1181c4
- Update to 2.9.20.
d1181c4
0622d76
* Sat Feb 20 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.18-1
0622d76
- Update to 2.9.18.
0622d76
- Fixes: CVE-2021-20228 CVE-2021-20178 CVE-2021-20180 CVE-2021-20191
0622d76
e89035e
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.17-3
e89035e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
e89035e
a1fd4ae
* Sun Jan 24 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.17-2
a1fd4ae
- Update to 2.9.17.
a1fd4ae
3388b91
* Sat Jan 16 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.16-2
3388b91
- Conflict with ansible-base 2.10.x for now.
3388b91
- Ajust generator so collections will install/work with either ansible or ansible-base.
3388b91
275e4f0
* Tue Dec 15 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.16-1
275e4f0
- Update to 2.9.16.
275e4f0
76106f5
* Tue Nov 03 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.15-1
76106f5
- Update to 2.9.15.
76106f5
127420a
* Tue Oct 06 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.14-1
127420a
- Update to 2.9.14.
127420a
936d803
* Tue Sep 01 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.13-1
936d803
- Update to 2.9.13. Fixes CVE-2020-14365
936d803
34e5efc
* Tue Aug 11 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.12-1
34e5efc
- Update to 2.9.12.
34e5efc
7df9e3e
* Sun Aug 09 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.11-4
7df9e3e
- Add support for generating '>=' dependencies in RPM generator
7df9e3e
250a308
* Sat Aug 08 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.11-3
250a308
- Add very basic support for generating dependencies in RPM generator
250a308
75289c7
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.11-2
75289c7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
75289c7
a200d48
* Tue Jul 21 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.11-1
a200d48
- Update to 2.9.11.
a200d48
9425f2b
* Thu Jun 18 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.10-1
2beba00
- Update to 2.9.10.
9425f2b
5ce3299
* Fri May 29 2020 Charalampos Stratakis <cstratak@redhat.com> - 2.9.9-3
5ce3299
- Fix Python 3.9 compatibility (#1808674)
4e4f90c
- Pin Pytest to version 4 for now
5ce3299
7ce937e
* Tue May 26 2020 Miro HronĨok <mhroncok@redhat.com> - 2.9.9-2
7ce937e
- Rebuilt for Python 3.9
7ce937e
6f73240
* Tue May 12 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.9-1
6f73240
- Update to 2.9.9. Fixes bug #1834582
6f73240
- Fixes gathering facts on f32+ bug #1832625
6f73240
4c3c417
* Sun Apr 19 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.7-3
4c3c417
- Own /usr/share/ansible/collections/ansible_collections
4c3c417
db3f8ce
* Sun Apr 19 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.7-2
db3f8ce
- Add macros for packaging Ansible collections
db3f8ce
fb10389
* Fri Apr 17 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.7-1
fb10389
- Update to 2.9.7.
fb10389
- fixes CVE-2020-1733 CVE-2020-1735 CVE-2020-1740 CVE-2020-1746 CVE-2020-1753 CVE-2020-10684 CVE-2020-10685 CVE-2020-10691
fb10389
- Drop the -s from the shebang to allow ansible to use locally installed modules.
fb10389
caaa954
* Fri Mar 06 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.6-1
caaa954
- Update to 2.9.6. Fixes bug #1810373
caaa954
- fixes for CVE-2020-1737, CVE-2020-1739
caaa954
04f6096
* Thu Feb 13 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.5-1
04f6096
- Update to 2.9.5. Fixes bug #1802725
04f6096
795f497
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-2
795f497
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
795f497
1565997
* Tue Jan 21 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.4-1
1565997
- Update to 2.9.4 with one bugfix.
1565997
f3a4fa4
* Thu Jan 16 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.3-1
f3a4fa4
- Update to 2.9.3.
f3a4fa4
bc604ab
* Sun Dec 08 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.2-1
bc604ab
- Update to 2.9.2.
bc604ab
bc604ab
* Thu Nov 14 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.1-2
bc604ab
- Add Requires for python3-pyyaml
bc604ab
2ffc66d
* Wed Nov 13 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.1-1
2ffc66d
- Update to 2.9.1.
2ffc66d
8b64ada
* Fri Nov 08 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.0-2
8b64ada
- Supress pwsh requires added by rpm.
8b64ada
385af9b
* Thu Oct 31 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.0-1
385af9b
- Update to 2.9.0.
385af9b
88ed9f1
* Thu Oct 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.6-1
88ed9f1
- Update to 2.8.6.
88ed9f1
- Rework spec file to drop old conditionals.
88ed9f1
88ed9f1
* Thu Oct 10 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.5-2
88ed9f1
- Make python3-paramiko and python3-winrm Recommended so they install on Fedora and not RHEL8
88ed9f1
0441d85
* Fri Sep 13 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.5-1
0441d85
- Update to 2.8.5.
0441d85
acd75dd
* Mon Aug 19 2019 Miro HronĨok <mhroncok@redhat.com> - 2.8.4-2
acd75dd
- Rebuilt for Python 3.8
acd75dd
cbc7164
* Fri Aug 16 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.4-1
cbc7164
- Update to 2.8.4. Fixes CVE-2019-10217 and CVE-2019-10206
cbc7164
2d743f6
* Thu Jul 25 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.3-1
2d743f6
- Update to 2.8.3.
2d743f6
fc79e9a
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.2-2
fc79e9a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
fc79e9a
57f52d4
* Wed Jul 03 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.2-1
57f52d4
- Update to 2.8.2. Fixes bug #1726846
57f52d4
5015e68
* Sun Jun 09 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.1-1
5015e68
- Update to 2.8.1. Fixes bug #1718131
5015e68
- Sync up Requires/Buildrequires with upstream.
5015e68
- Add patch for python 3.8 building. Fixes bug #1712531
5015e68
- Add patch for CVE-2019-10156.
5015e68
5dca638
* Fri May 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-2
5dca638
- Fixes for various releases build/test issues.
5dca638
7e6de23
* Fri May 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-1
2beba00
- Update to 2.8.0 final.
7e6de23
- Add datadirs for other packages to land ansible files in.
7e6de23
ff2dcbb
* Fri May 10 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.4rc3
ff2dcbb
- Update to 2.8.0 rc3.
ff2dcbb
9d6cf85
* Thu May 02 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.3rc2
9d6cf85
- Update to 2.8.0 rc2.
9d6cf85
8b902e6
* Fri Apr 26 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.2rc1
8b902e6
- Update to 2.8.0 rc1.
8b902e6
dd5aeac
* Mon Apr 22 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.1b
dd5aeac
- Update to 2.8.0 beta 1.
dd5aeac
903ddc6
* Thu Apr 04 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.10-1
903ddc6
- Update to 2.7.10. Fixes bug #1696379
903ddc6
4d4088c
* Thu Mar 14 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.9-1
4d4088c
- Update to 2.7.9. Fixes bug #1688974
4d4088c
2143042
* Thu Feb 21 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.8-1
2143042
- Update to 2.7.8. Fixes bug #1679787
2143042
- Fix for CVE-2019-3828
2143042
2edc7bd
* Thu Feb 07 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.7-1
2edc7bd
- Update to 2.7.7. Fixes bug #1673761
2edc7bd
9430570
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.6-2
9430570
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
9430570
1399410
* Thu Jan 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.6-1
1399410
- Update to 2.7.6.
1399410
ea48493
* Thu Dec 13 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.5-1
ea48493
- Update to 2.7.5
ea48493
45a0270
* Mon Dec 03 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.4-1
45a0270
- Update to 2.7.4
45a0270
84826f8
* Thu Nov 29 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.3-1
84826f8
- Update to 2.7.3
84826f8
54fb90d
* Thu Nov 15 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.2-1
54fb90d
- Update to 2.7.2.
54fb90d
0a0a1b4
* Mon Oct 29 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.1-1
0a0a1b4
- Update to 2.7.1.
0a0a1b4
e13444f
* Thu Oct 04 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.0-1
e13444f
- Update to 2.7.0
e13444f
bd5a9e2
* Fri Sep 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.5-1
bd5a9e2
- Update to 2.6.5.
bd5a9e2
c5bcbb1
* Fri Sep 07 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.4-1
c5bcbb1
- Update to 2.6.4.
c5bcbb1
846d5d3
* Thu Aug 16 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.3-1
846d5d3
- Upgrade to 2.6.3.
846d5d3
939db19
* Sat Jul 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.2-1
939db19
- Update to 2.6.2. Fixes bug #1609486
939db19
705da82
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-2
705da82
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
705da82
8697fb9
* Thu Jul 05 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.1-1
8697fb9
- Update to 2.6.1. Fixes bug #1598602
8697fb9
- Fixes CVE-2018-10874 and CVE-2018-10875
8697fb9
faa2d9d
* Mon Jul 02 2018 Miro HronĨok <mhroncok@redhat.com> - 2.6.0-2
faa2d9d
- Rebuilt for Python 3.7
faa2d9d
1ab45ff
* Thu Jun 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.0-1
1ab45ff
- Update to 2.6.0. Fixes bug #1596424
1ab45ff
33bc425
* Tue Jun 26 2018 Miro HronĨok <mhroncok@redhat.com> - 2.5.5-5
33bc425
- Rebuilt for Python 3.7
33bc425
480bd75
* Mon Jun 25 2018 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.5.5-4
480bd75
- Upstream patch to build docs with older jinja2 (Fedora 27)
480bd75
- Build changes to build only rst docs for modules and plugins when a distro
480bd75
  doesn't have modern enough packages to build the documentation. (EPEL7)
480bd75
e465ba5
* Tue Jun 19 2018 Miro HronĨok <mhroncok@redhat.com> - 2.5.5-3
e465ba5
- Rebuilt for Python 3.7
e465ba5
fe7c2e7
* Fri Jun 15 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.5-2
fe7c2e7
- Stop building docs on F27 as python-jinja2 is too old there.
fe7c2e7
abe4d03
* Thu Jun 14 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.5-1
abe4d03
- Update to 2.5.5. Fixes bug #1580530 and #1584927
abe4d03
- Fixes 1588855,1590200 (fedora) and 1588855,1590199 (epel)
abe4d03
  CVE-2018-10855 (security bug with no_log handling)
abe4d03
abe4d03
* Thu May 31 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.4-1
abe4d03
- Update to 2.5.4. Fixes bug #1584927
abe4d03
0b26296
* Thu May 17 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.3-1
0b26296
- Update to 2.5.3. Fixes bug #1579577 and #1574221
0b26296
a23f12a
* Thu Apr 26 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.2-1
a23f12a
- Update to 2.5.2 with bugfixes.
a23f12a
a2b2fcc
* Wed Apr 18 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.1-1
a2b2fcc
- Update to 2.5.1 with bugfixes. Fixes: #1569270 #1569153 #1566004 #1566001
a2b2fcc
0913a71
* Tue Mar 27 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.0-2
0913a71
- Some additional python3 fixes. Thanks churchyard!
0913a71
0ad4f49
* Sat Mar 24 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.0-1
0ad4f49
- Update to 2.5.0. Fixes bug #1559852
0ad4f49
- Spec changes/improvements with tests, docs, and conditionals.
0ad4f49
0ad4f49
* Fri Mar 16 2018 Miro HronĨok <mhroncok@redhat.com> - 2.4.3.0-3
0ad4f49
- Don't build and ship Python 2 bits on EL > 7 and Fedora > 29
0ad4f49
0138e41
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3.0-2
0138e41
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
0138e41
0cb7596
* Wed Jan 31 2018 Kevin Fenzi <kevin@scrye.com> - 2.4.3.0-1
0cb7596
- Update to 2.4.3. See https://github.com/ansible/ansible/blob/stable-2.4/CHANGELOG.md for full changes.
0cb7596
cd4462f
* Mon Jan 08 2018 Troy Dawson <tdawson@redhat.com> - 2.4.2.0-2
cd4462f
- Update conditional
cd4462f
4aebe9c
* Wed Nov 29 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.2.0-1
4aebe9c
- Update to 2.4.2. See https://github.com/ansible/ansible/blob/stable-2.4/CHANGELOG.md for full changes.
4aebe9c
9b892e8
* Mon Oct 30 2017 Kevin Fenzi kevin@scrye.com - 2.4.1.0-2
9b892e8
- Add PR to conditionalize docs building. Thanks tibbs!
9b892e8
- Fix up el6 patches
9b892e8
Kevin Fenzi 304bfb8
* Thu Oct 26 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.1.0-1
Kevin Fenzi 304bfb8
- Update to 2.4.1
Kevin Fenzi 304bfb8
e2fb1a1
* Thu Oct 12 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.4.0.0-3
e2fb1a1
- Fix Python3 subpackage to symlink to the python3 versions of the scripts
e2fb1a1
  instead of the python2 version
e2fb1a1
c9b6b49
* Mon Sep 25 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.0.0-2
c9b6b49
- Rebase rhel6 jinja2 patch.
c9b6b49
- Conditionalize jmespath to work around amazon linux issues. Fixes bug #1494640
c9b6b49
4a6a6ca
* Tue Sep 19 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.0.0-1
2beba00
- Update to 2.4.0.
4a6a6ca
3950c5b
* Tue Aug 08 2017 Kevin Fenzi <kevin@scrye.com> - 2.3.2.0-1
3950c5b
- Update to 2.3.2. Fixes bugs #1471017 #1461116 #1465586
3950c5b
54ddfcc
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1.0-2
54ddfcc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
54ddfcc
93d2d65
* Thu Jun 01 2017 Kevin Fenzi <kevin@scrye.com> - 2.3.1.0-1
93d2d65
- Update to 2.3.1.0.
93d2d65
9c0928d
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 2.3.0.0-3
9c0928d
- Update backported patch to the one actually merged upstream
9c0928d
1535cd9
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 2.3.0.0-2
1535cd9
- Backport hotfix to fix ansible-galaxy regression https://github.com/ansible/ansible/issues/22572
1535cd9
645b44d
* Wed Apr 12 2017 Toshio Kuratomi <toshio@fedoraproject.org> - 2.3.0.0-1
645b44d
- Update to 2.3.0
645b44d
- Remove upstreamed patches
645b44d
- Remove controlpersist socket path path as a custom solution was included
645b44d
  upstream
645b44d
- Run the unittests from the upstream tarball now instead of having to download
645b44d
  separately
645b44d
- Build a documentation subpackage
645b44d
e81e13b
* Tue Mar 28 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-3
e81e13b
- Deal with RHEL7 pytest vs python-pytest.
e81e13b
- Rebase epel6 newer jinja patch.
e81e13b
- Conditionalize exclude for RHEL6 rpm.
e81e13b
e63d730
* Tue Mar 28 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-2
e63d730
- Conditionalize python3 files for epel builds.
e63d730
508047a
* Tue Mar 28 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-1
508047a
- 2.2.2.0 final
508047a
- Add new patch to fix unittests
508047a
962ab22
* Mon Mar 27 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.4.rc1
962ab22
- Add python-crypto and python3-crypto as explicit requirements
962ab22
4a0ea48
* Mon Mar 27 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.3.rc1
4a0ea48
- Add a symlink for ansible executables to be accessed via python major version
4a0ea48
  (ie: ansible-3) in addition to python-major-minor (ansible-3.6)
4a0ea48
cbd93a6
* Wed Mar  8 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.2.rc1
cbd93a6
- Add a python3 ansible package.  Note that upstream doesn't intend for the library
cbd93a6
  to be used by third parties so this is really just for the executables.  It's not
cbd93a6
  strictly required that the executables be built for both python2 and python3 but
cbd93a6
  we do need to get testing of the python3 version to know if it's stable enough to
cbd93a6
  go into the next Fedora.  We also want the python2 version available in case a user
cbd93a6
  has to get something done and the python3 version is too buggy.
cbd93a6
- Fix Ansible cli scripts to handle appended python version
cbd93a6
cd25207
* Wed Feb 22 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-0.1.rc1
cd25207
- Update to 2.2.2.0 rc1. Fixes bug #1421485
cd25207
696bb5e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1.0-2
696bb5e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
696bb5e
c0148aa
* Mon Jan 16 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.1.0-1
c0148aa
- Update to 2.2.1.
c0148aa
- Fixes: CVE-2016-9587 CVE-2016-8647 CVE-2016-9587 CVE-2016-8647
c0148aa
- Fixes bug #1405110
c0148aa
13f3060
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-3
13f3060
- Update unit tests that will skip docker related tests if docker isn't available.
13f3060
- Drop docker BuildRequires. Fixes bug #1392918
13f3060
3cd56a1
* Fri Nov  4 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.0.0-3
3cd56a1
- Fix for dnf group install
3cd56a1
862c849
* Tue Nov 01 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-2
862c849
- Fix some BuildRequires to work on all branches.
862c849
e5bfa88
* Tue Nov 01 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-1
e5bfa88
- Update to 2.2.0. Fixes #1390564 #1388531 #1387621 #1381538 #1388113 #1390646 #1388038 #1390650
e5bfa88
- Fixes for CVE-2016-8628 CVE-2016-8614 CVE-2016-8628 CVE-2016-8614
e5bfa88
d8c3a06
* Thu Sep 29 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.2.0-1
d8c3a06
- Update to 2.1.2
d8c3a06
02ad60e
* Thu Jul 28 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.1.0-1
02ad60e
- Update to 2.1.1
02ad60e
432fdda
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0.0-3
432fdda
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
432fdda
f86a53d
* Wed Jun 15 2016 Matt Domsch <matt@domsch.com> - 2.1.0.0-2
f86a53d
- Force python 2.6 on EL6
f86a53d
7351901
* Wed May 25 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.0.0-1
7351901
- Update to 2.1.0.0.
7351901
- Fixes: 1334097 1337474 1332233 1336266
7351901
edd6a4e
* Tue Apr 19 2016 Kevin Fenzi <kevin@scrye.com> - 2.0.2.0-1
edd6a4e
- Update to 2.0.2.0. https://github.com/ansible/ansible/blob/stable-2.0/CHANGELOG.md
edd6a4e
- Fixes CVE-2016-3096
edd6a4e
- Fix for failed to resolve remote temporary directory issue. bug #1328359
edd6a4e
17fb6e7
* Thu Feb 25 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.1.0-2
17fb6e7
- Patch control_path to be not hit path length limitations (RH BZ #1311729)
17fb6e7
- Version the test tarball
17fb6e7
c0fbf3a
* Thu Feb 25 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.1.0-1
c0fbf3a
- Update to upstream bugfix for 2.0.x release series.
c0fbf3a
9807c9b
* Thu Feb  4 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.0.0.2-3
9807c9b
- Utilize the python-jinja26 package on EPEL6
9807c9b
dbc43a8
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0.2-2
dbc43a8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
dbc43a8
481d255
* Thu Jan 14 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.0.0.2-1
481d255
- Ansible 2.0.0.2 release from upstream.  (Minor bugfix to one callback plugin
481d255
  API).
481d255
fa99a17
* Tue Jan 12 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.0.1-1
fa99a17
- Ansible 2.0.0.1 from upstream.  Rewrite with many bugfixes, rewritten code,
fa99a17
  and new features. See the upstream changelog for details:
fa99a17
  https://github.com/ansible/ansible/blob/devel/CHANGELOG.md
fa99a17
e3d680d
* Wed Oct 14 2015 Adam Williamson <awilliam@redhat.com> - 1.9.4-2
e3d680d
- backport upstream fix for GH #2043 (crash when pulling Docker images)
e3d680d
5439f10
* Fri Oct 09 2015 Kevin Fenzi <kevin@scrye.com> 1.9.4-1
5439f10
- Update to 1.9.4
5439f10
773a3cc
* Sun Oct 04 2015 Kevin Fenzi <kevin@scrye.com> 1.9.3-3
773a3cc
- Backport dnf module from head. Fixes bug #1267018
773a3cc
48f30db
* Tue Sep  8 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.3-2
48f30db
- Pull in patch for yum module that fixes state=latest issue
48f30db
c393f96
* Thu Sep 03 2015 Kevin Fenzi <kevin@scrye.com> 1.9.3-1
c393f96
- Update to 1.9.3
c393f96
- Patch dnf as package manager. Fixes bug #1258080
c393f96
- Fixes bug #1251392 (in 1.9.3 release)
c393f96
- Add requires for sshpass package. Fixes bug #1258799
c393f96
8880605
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.2-1
8880605
- Update to 1.9.2
8880605
9f6c3c5
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-3
9f6c3c5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9f6c3c5
8c2ef00
* Wed May 27 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.1-2
8c2ef00
- Fix for dnf
8c2ef00
a6d1cd0
* Tue Apr 28 2015 Kevin Fenzi <kevin@scrye.com> 1.9.1-1
a6d1cd0
- Update to 1.9.1
a6d1cd0
9f51478
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0.1-2
2beba00
- Drop upstreamed epel6 patches.
9f51478
e88264c
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0.1-1
e88264c
- Update to 1.9.0.1
e88264c
be7a532
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0-1
be7a532
- Update to 1.9.0
be7a532
c7e2510
* Thu Feb 19 2015 Kevin Fenzi <kevin@scrye.com> 1.8.4-1
c7e2510
- Update to 1.8.4
c7e2510
7c6e5ed
* Tue Feb 17 2015 Kevin Fenzi <kevin@scrye.com> 1.8.3-1
7c6e5ed
- Update to 1.8.3
7c6e5ed
dee81b0
* Sun Jan 11 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.8.2-3
dee81b0
- Work around a bug in python2.6 by using simplejson (applies in EPEL6)
dee81b0
157c656
* Wed Dec 17 2014 Michael Scherer <misc@zarb.org> 1.8.2-2
157c656
- precreate /etc/ansible/roles and /usr/share/ansible_plugins
157c656
d1dfb02
* Sun Dec 07 2014 Kevin Fenzi <kevin@scrye.com> 1.8.2-1
d1dfb02
- Update to 1.8.2
d1dfb02
2d564c6
* Thu Nov 27 2014 Kevin Fenzi <kevin@scrye.com> 1.8.1-1
2d564c6
- Update to 1.8.1
2d564c6
2d564c6
* Tue Nov 25 2014 Kevin Fenzi <kevin@scrye.com> 1.8-2
2d564c6
- Rebase el6 patch
2d564c6
dde641d
* Tue Nov 25 2014 Kevin Fenzi <kevin@scrye.com> 1.8-1
dde641d
- Update to 1.8
dde641d
851d755
* Thu Oct  9 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.7.2-2
851d755
- Add /usr/bin/ansible to the rhel6 newer pycrypto patch
851d755
cbe3a8a
* Wed Sep 24 2014 Kevin Fenzi <kevin@scrye.com> 1.7.2-1
cbe3a8a
- Update to 1.7.2
cbe3a8a
9c92428
* Thu Aug 14 2014 Kevin Fenzi <kevin@scrye.com> 1.7.1-1
9c92428
- Update to 1.7.1
9c92428
aa844c7
* Wed Aug 06 2014 Kevin Fenzi <kevin@scrye.com> 1.7-1
aa844c7
- Update to 1.7
aa844c7
6cc2f27
* Fri Jul 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.10-1
6cc2f27
- Update to 1.6.10
6cc2f27
f7a8a74
* Thu Jul 24 2014 Kevin Fenzi <kevin@scrye.com> 1.6.9-1
f7a8a74
- Update to 1.6.9 with more shell quoting fixes.
f7a8a74
5023fc5
* Tue Jul 22 2014 Kevin Fenzi <kevin@scrye.com> 1.6.8-1
2beba00
- Update to 1.6.8 with fixes for shell quoting from previous release.
5023fc5
- Fixes bugs #1122060 #1122061 #1122062
5023fc5
e089d1b
* Mon Jul 21 2014 Kevin Fenzi <kevin@scrye.com> 1.6.7-1
e089d1b
- Update to 1.6.7
e089d1b
- Fixes CVE-2014-4966 and CVE-2014-4967
e089d1b
1f98aa4
* Tue Jul 01 2014 Kevin Fenzi <kevin@scrye.com> 1.6.6-1
1f98aa4
- Update to 1.6.6
1f98aa4
be36041
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.5-1
be36041
- Update to 1.6.5
be36041
48985db
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.4-1
48985db
- Update to 1.6.4
48985db
6543624
* Mon Jun 09 2014 Kevin Fenzi <kevin@scrye.com> 1.6.3-1
6543624
- Update to 1.6.3
6543624
7e2a193
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
7e2a193
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7e2a193
ab647b7
* Fri May 23 2014 Kevin Fenzi <kevin@scrye.com> 1.6.2-1
ab647b7
- Update to 1.6.2 release
ab647b7
f80af22
* Wed May  7 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6.1-1
f80af22
- Bugfix 1.6.1 release
f80af22
03e3edf
* Mon May  5 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6-1
03e3edf
- Update to 1.6
03e3edf
- Drop accelerate fix, merged upstream
03e3edf
- Refresh RHEL6 pycrypto patch.  It was half-merged upstream.
03e3edf
be38730
* Fri Apr 18 2014 Kevin Fenzi <kevin@scrye.com> 1.5.5-1
be38730
- Update to 1.5.5
be38730
9ea6a64
* Mon Apr  7 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5.4-2
9ea6a64
- Fix setuptools requirement to apply to rhel=6, not rhel<6
9ea6a64
6e2c5cb
* Wed Apr  2 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5.4-1
6e2c5cb
- Update to 1.5.4
f8b9292
- Add upstream patch to fix accelerator mode
f8b9292
- Merge fedora and el6 spec files
19c1aa7
8dc5eaa
* Fri Mar 14 2014 Kevin Fenzi <kevin@scrye.com> 1.5.3-2
8dc5eaa
- Update to NEW 1.5.3 upstream release.
6e2c5cb
- Add missing dependency on python-setuptools (el6 build)
8dc5eaa
585d682
* Thu Mar 13 2014 Kevin Fenzi <kevin@scrye.com> 1.5.3-1
585d682
- Update to 1.5.3
6e2c5cb
- Fix ansible-vault for newer python-crypto dependency (el6 build)
585d682
1ad558c
* Tue Mar 11 2014 Kevin Fenzi <kevin@scrye.com> 1.5.2-2
1ad558c
- Update to redone 1.5.2 release
1ad558c
cfa0fe3
* Tue Mar 11 2014 Kevin Fenzi <kevin@scrye.com> 1.5.2-1
cfa0fe3
- Update to 1.5.2
cfa0fe3
6193d7a
* Mon Mar 10 2014 Kevin Fenzi <kevin@scrye.com> 1.5.1-1
6193d7a
- Update to 1.5.1
6193d7a
f9dbd15
* Fri Feb 28 2014 Kevin Fenzi <kevin@scrye.com> 1.5-1
f9dbd15
- Update to 1.5
f9dbd15
13553cc
* Wed Feb 12 2014 Kevin Fenzi <kevin@scrye.com> 1.4.5-1
13553cc
- Update to 1.4.5
13553cc
cb37d1d
* Sat Dec 28 2013 Kevin Fenzi <kevin@scrye.com> 1.4.3-1
cb37d1d
- Update to 1.4.3 with ansible galaxy commands.
cb37d1d
- Adds python-httplib2 to requires
cb37d1d
6a1b38a
* Wed Nov 27 2013 Kevin Fenzi <kevin@scrye.com> 1.4.1-1
6a1b38a
- Update to upstream 1.4.1 bugfix release
6a1b38a
c10ee8c
* Thu Nov 21 2013 Kevin Fenzi <kevin@scrye.com> 1.4-1
c10ee8c
- Update to 1.4
c10ee8c
9e05299
* Tue Oct 29 2013 Kevin Fenzi <kevin@scrye.com> 1.3.4-1
9e05299
- Update to 1.3.4
9e05299
8f16660
* Tue Oct 08 2013 Kevin Fenzi <kevin@scrye.com> 1.3.3-1
8f16660
- Update to 1.3.3
8f16660
efb5883
* Thu Sep 19 2013 Kevin Fenzi <kevin@scrye.com> 1.3.2-1
efb5883
- Update to 1.3.2 with minor upstream fixes
efb5883
467cba4
* Mon Sep 16 2013 Kevin Fenzi <kevin@scrye.com> 1.3.1-1
467cba4
- Update to 1.3.1
467cba4
467cba4
* Sat Sep 14 2013 Kevin Fenzi <kevin@scrye.com> 1.3.0-2
467cba4
- Merge upstream spec changes to support EPEL5
467cba4
- (Still needs python26-keyczar and deps added to EPEL)
467cba4
1869e0c
* Thu Sep 12 2013 Kevin Fenzi <kevin@scrye.com> 1.3.0-1
1869e0c
- Update to 1.3.0
1869e0c
- Drop node-fireball subpackage entirely.
2beba00
- Obsolete/provide fireball subpackage.
1869e0c
- Add Requires python-keyczar on main package for accelerated mode.
1869e0c
8aaea91
* Wed Aug 21 2013 Kevin Fenzi <kevin@scrye.com> 1.2.3-2
8aaea91
- Update to 1.2.3
8aaea91
- Fixes CVE-2013-4260 and CVE-2013-4259
8aaea91
93c711c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-2
93c711c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
93c711c
953ca27
* Sat Jul 06 2013 Kevin Fenzi <kevin@scrye.com> 1.2.2-1
953ca27
- Update to 1.2.2 with minor fixes
953ca27
0fa1d4e
* Fri Jul 05 2013 Kevin Fenzi <kevin@scrye.com> 1.2.1-2
0fa1d4e
- Update to newer upstream re-release to fix a syntax error
0fa1d4e
3cc7e56
* Thu Jul 04 2013 Kevin Fenzi <kevin@scrye.com> 1.2.1-1
3cc7e56
- Update to 1.2.1
3cc7e56
- Fixes CVE-2013-2233
3cc7e56
6301504
* Mon Jun 10 2013 Kevin Fenzi <kevin@scrye.com> 1.2-1
6301504
- Update to 1.2
6301504
c2a8c32
* Tue Apr 02 2013 Kevin Fenzi <kevin@scrye.com> 1.1-1
c2a8c32
- Update to 1.1
c2a8c32
db87ecb
* Mon Mar 18 2013 Kevin Fenzi <kevin@scrye.com> 1.0-1
db87ecb
- Update to 1.0
db87ecb
499398d
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-2
499398d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
499398d
c23d872
* Fri Nov 30 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
c23d872
- Release 0.9
c23d872
7109b73
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
7109b73
- Release of 0.8
1c6284a
953ca27
* Thu Aug 9 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
ef39e27
- Release of 0.7
ef39e27
7109b73
* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
4e9234e
- Release of 0.6
24b3dae
7109b73
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
24b3dae
- Release of 0.5
fc9a76b
7109b73
* Wed May 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.4-0
550a48d
- Release of 0.4
550a48d
4f25327
* Mon Apr 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.3-1
4f25327
- Release of 0.3
4f25327
4f25327
* Tue Apr  3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
4f25327
- Release of 0.0.2
4f25327
4f25327
* Sat Mar 10 2012  <tbielawa@redhat.com> - 0.0.1-1
4f25327
- Release of 0.0.1