Blame SPECS/ansible.spec

a3e8f6
# TODO: Re-enable docs and tests once possible
a3e8f6
%global with_docs 0
a3e8f6
%global with_tests 0
a3e8f6
%global ansible_licensedir %{_defaultlicensedir}/ansible
a3e8f6
%global ansible_docdir %{_defaultdocdir}/ansible
a3e8f6
%if 0%{?rhel} == 8
a3e8f6
# for rhel8 we want to use python3.8 as ansible-core is using that
a3e8f6
%global __python3 /usr/bin/python3.8
a3e8f6
%endif
a3e8f6
a3e8f6
Name:           ansible
a3e8f6
Summary:        Curated set of Ansible collections included in addition to ansible-core
ec9060
Version:        5.6.0
a3e8f6
Release:        1%{?dist}
a3e8f6
a3e8f6
License:        GPLv3+
a3e8f6
Source0:        %{pypi_source}
a3e8f6
Url:            https://ansible.com
a3e8f6
BuildArch:      noarch
a3e8f6
a3e8f6
BuildRequires:  findutils
ec9060
ec9060
# for rhel8 we expect python38 as it's required by ansible-core
ec9060
# on Fedora current version it's already higher so requiring python3 
ec9060
%if 0%{?rhel} == 8
a3e8f6
BuildRequires:  python38-devel
a3e8f6
BuildRequires:  python38-setuptools
ec9060
%else
ec9060
BuildRequires:  python3-devel
ec9060
BuildRequires:  python3-setuptools
ec9060
%endif
a3e8f6
a3e8f6
%if 0%{?with_tests}
a3e8f6
# TODO build-requires
a3e8f6
%endif
a3e8f6
a3e8f6
%if 0%{?with_docs}
a3e8f6
# TODO build-requires
a3e8f6
%endif
a3e8f6
a3e8f6
%description
a3e8f6
Ansible is a radically simple model-driven configuration management,
a3e8f6
multi-node deployment, and remote task execution system. Ansible works
a3e8f6
over SSH and does not require any software or daemons to be installed
a3e8f6
on remote nodes. Extension modules can be written in any language and
a3e8f6
are transferred to managed machines automatically.
a3e8f6
a3e8f6
This package provides a curated set of Ansible collections included in addition
a3e8f6
to ansible-core.
a3e8f6
a3e8f6
%prep
a3e8f6
%autosetup
a3e8f6
a3e8f6
# Remove unnecessary files and directories included in the Ansible collection release tarballs
a3e8f6
# Tracked upstream in part by: https://github.com/ansible-community/community-topics/issues/29
a3e8f6
echo "[START] Delete unnecessary files and directories"
a3e8f6
a3e8f6
# Collection tarballs contain a lot of hidden files and directories
a3e8f6
hidden_pattern=".*\.(DS_Store|all-contributorsrc|ansible-lint|azure-pipelines|circleci|codeclimate.yml|flake8|galaxy_install_info|gitattributes|github|gitignore|gitkeep|gitlab-ci.yml|idea|keep|mypy_cache|nojekyll|orig|plugin-cache.yaml|pre-commit-config.yaml|project|pydevproject|pytest_cache|pytest_cache|readthedocs.yml|settings|swp|travis.yml|vscode|yamllint|yamllint.yaml|zuul.d|zuul.yaml)$"
a3e8f6
find ansible_collections -regextype posix-egrep -regex "${hidden_pattern}" -print -depth -exec rm -rf {} \;
a3e8f6
a3e8f6
# TODO: Delete (bulky) tests for now but we should run sanity and unit tests soon.
a3e8f6
find ansible_collections -type d -wholename "*tests/integration" -print -depth -exec rm -rf {} \;
a3e8f6
find ansible_collections -type d -wholename "*tests/unit" -print -depth -exec rm -rf {} \;
a3e8f6
find ansible_collections -type d -wholename "*tests/sanity" -print -depth -exec rm -rf {} \;
a3e8f6
find ansible_collections -type d -wholename "*tests/regression" -print -depth -exec rm -rf {} \;
a3e8f6
a3e8f6
# https://github.com/ansible-collections/kubernetes.core/pull/298
a3e8f6
rm -rf ansible_collections/kubernetes/core/molecule
a3e8f6
a3e8f6
# rpmlint W: pem-certificate
a3e8f6
find ansible_collections/cyberark/conjur -type f -name "*.pem" -print -delete
a3e8f6
a3e8f6
# rpmlint E: zero-length
a3e8f6
find -type f -name "*requirements.txt" -size 0 -print -delete
a3e8f6
rm -f ansible_collections/community/zabbix/roles/zabbix_agent/files/win_sample/doSomething.ps1
a3e8f6
a3e8f6
echo "[END] Delete unnecessary files and directories"
a3e8f6
a3e8f6
%build
a3e8f6
# disable the python -s shbang flag as we want to be able to find non system modules
a3e8f6
%global py3_shbang_opts %{nil}
a3e8f6
%py3_shebang_fix ansible_collections
a3e8f6
%py3_build
a3e8f6
a3e8f6
%install
a3e8f6
%py3_install
a3e8f6
a3e8f6
# Install docs and licenses
a3e8f6
(
a3e8f6
  mkdir -p "%{buildroot}%{ansible_docdir}" "%{buildroot}%{ansible_licensedir}"
a3e8f6
  cd ansible_collections
a3e8f6
  # This finds the license file for each collection, copies it to
a3e8f6
  # `%%{ansible_licensedir}/collection_namespace/collection_name`, and then adds
a3e8f6
  # `%%license /path/to/license` to the %%files list. See `man find` for more info.
a3e8f6
  # The extra percent signs are needed to escape RPM.
a3e8f6
  find . -mindepth 3 -type f \( -name LICENSE -o -name COPYING \) \
a3e8f6
         -exec cp -p --parents '{}' '%{buildroot}%{ansible_licensedir}' \; \
a3e8f6
         -printf '%%%%license %%%%{ansible_licensedir}/%%P\n'  | tee -a ../files.list
a3e8f6
  # This does the same thing, but for READMEs.
a3e8f6
  find . -mindepth 3 -type f -name 'README.*' \
a3e8f6
         -exec cp -p --parents '{}' '%{buildroot}%{ansible_docdir}' \; \
a3e8f6
         -printf '%%%%doc %%%%{ansible_docdir}/%%P\n' | tee -a ../files.list
a3e8f6
)
a3e8f6
a3e8f6
%check
a3e8f6
%if 0%{?with_tests}
a3e8f6
# TODO: Run tests
a3e8f6
%endif
a3e8f6
a3e8f6
%files -f files.list
a3e8f6
%license COPYING
a3e8f6
%doc README.rst PKG-INFO porting_guide_5.rst CHANGELOG-v5.rst
a3e8f6
# Note (dmsimard): This ansible package installs collections to the python sitelib to mirror the UX
a3e8f6
# when installing the ansible package from PyPi.
a3e8f6
# This allows users to install individual collections manually with ansible-galaxy (~/.ansible/collections/ansible_collections)
a3e8f6
# or via standalone distribution packages to datadir (/usr/share).
a3e8f6
# Both will have precedence over the collections installed in the python sitelib.
a3e8f6
%{python3_sitelib}/ansible_collections
a3e8f6
%{python3_sitelib}/*egg-info
a3e8f6
a3e8f6
%changelog
ec9060
* Tue Apr 12 2022 Fabian Arrotin <arrfab@centos.org> - 5.6.0-1
ec9060
- Bumped to 5.6.0 version
ec9060
a3e8f6
* Tue Mar 15 2022 David Moreau-Simard <moi@dmsimard.com> - 5.5.0-1
a3e8f6
- Update to latest upstream release
a3e8f6
a3e8f6
* Tue Feb 22 2022 David Moreau-Simard <moi@dmsimard.com> - 5.4.0-1
a3e8f6
- Update to latest upstream release
a3e8f6
a3e8f6
* Wed Feb 16 2022 Maxwell G <gotmax@e.email> - 5.3.0-2
a3e8f6
- Fix shebangs.
a3e8f6
a3e8f6
* Tue Feb 1 2022 David Moreau-Simard <moi@dmsimard.com> - 5.3.0-1
a3e8f6
- Update to latest upstream release
a3e8f6
a3e8f6
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.2.0-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
a3e8f6
a3e8f6
* Wed Jan 12 2022 David Moreau-Simard <moi@dmsimard.com> - 5.2.0-1
a3e8f6
- Update to latest upstream release
a3e8f6
a3e8f6
* Tue Jan 11 2022 David Moreau-Simard <moi@dmsimard.com> - 5.1.0-1
a3e8f6
- Update to latest upstream release
a3e8f6
- Refactor to take into account split from ansible-core after ansible 2.9, see: https://fedoraproject.org/wiki/Changes/Ansible5
a3e8f6
- Remove patches intended for Ansible 2.9
a3e8f6
- Removed packaging macros (soon included in ansible-packaging, see rhbz#2038591)
a3e8f6
- Removed provides/obsoletes on ansible-python3
a3e8f6
a3e8f6
* Mon Nov 01 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.27-2
a3e8f6
- Add patch for oracle linux Fixes rhbz#2018369
a3e8f6
a3e8f6
* Mon Oct 11 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.27-1
a3e8f6
- Update to 2.9.27. Fixes rhbz#2012918
a3e8f6
a3e8f6
* Tue Sep 14 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.26-1
a3e8f6
- Update to 2.9.26. Fixes rhbz#2002394
a3e8f6
a3e8f6
* Fri Aug 20 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.25-1
a3e8f6
- Update to 2.9.25. Fixes rhbz#1994108
a3e8f6
a3e8f6
* Sun Jul 25 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.24-1
a3e8f6
- Update to 2.9.24. Fixes rhbz#1983837
a3e8f6
a3e8f6
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.23-3
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
a3e8f6
a3e8f6
* Sat Jul 10 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.23-2
a3e8f6
- Fix FTBFS with sphinx 4.x. Fixes rhbz#1977303
a3e8f6
a3e8f6
* Tue Jun 22 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.23-1
a3e8f6
- Update to 2.9.23. Fixes rhbz#1974592
a3e8f6
- Add patch for Rocky Linux. Fixes rhbz#1968728
a3e8f6
a3e8f6
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.9.22-2
a3e8f6
- Rebuilt for Python 3.10
a3e8f6
a3e8f6
* Mon May 24 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.22-1
a3e8f6
- Update to 2.9.22. Fixes rhbz#1964173
a3e8f6
a3e8f6
* Mon May 03 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.21-1
a3e8f6
- Update to 2.9.21. Fixes rhbz#1956584
a3e8f6
a3e8f6
* Sat Apr 24 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.20-1
a3e8f6
- Update to 2.9.20.
a3e8f6
a3e8f6
* Sat Feb 20 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.18-1
a3e8f6
- Update to 2.9.18.
a3e8f6
- Fixes: CVE-2021-20228 CVE-2021-20178 CVE-2021-20180 CVE-2021-20191
a3e8f6
a3e8f6
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.17-3
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a3e8f6
a3e8f6
* Sun Jan 24 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.17-2
a3e8f6
- Update to 2.9.17.
a3e8f6
a3e8f6
* Sat Jan 16 2021 Kevin Fenzi <kevin@scrye.com> - 2.9.16-2
a3e8f6
- Conflict with ansible-base 2.10.x for now.
a3e8f6
- Ajust generator so collections will install/work with either ansible or ansible-base.
a3e8f6
a3e8f6
* Tue Dec 15 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.16-1
a3e8f6
- Update to 2.9.16.
a3e8f6
a3e8f6
* Tue Nov 03 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.15-1
a3e8f6
- Update to 2.9.15.
a3e8f6
a3e8f6
* Tue Oct 06 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.14-1
a3e8f6
- Update to 2.9.14.
a3e8f6
a3e8f6
* Tue Sep 01 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.13-1
a3e8f6
- Update to 2.9.13. Fixes CVE-2020-14365
a3e8f6
a3e8f6
* Tue Aug 11 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.12-1
a3e8f6
- Update to 2.9.12.
a3e8f6
a3e8f6
* Sun Aug 09 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.11-4
a3e8f6
- Add support for generating '>=' dependencies in RPM generator
a3e8f6
a3e8f6
* Sat Aug 08 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.11-3
a3e8f6
- Add very basic support for generating dependencies in RPM generator
a3e8f6
a3e8f6
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.11-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a3e8f6
a3e8f6
* Tue Jul 21 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.11-1
a3e8f6
- Update to 2.9.11.
a3e8f6
a3e8f6
* Thu Jun 18 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.10-1
a3e8f6
- Update to 2.9.10.
a3e8f6
a3e8f6
* Fri May 29 2020 Charalampos Stratakis <cstratak@redhat.com> - 2.9.9-3
a3e8f6
- Fix Python 3.9 compatibility (#1808674)
a3e8f6
- Pin Pytest to version 4 for now
a3e8f6
a3e8f6
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.9.9-2
a3e8f6
- Rebuilt for Python 3.9
a3e8f6
a3e8f6
* Tue May 12 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.9-1
a3e8f6
- Update to 2.9.9. Fixes bug #1834582
a3e8f6
- Fixes gathering facts on f32+ bug #1832625
a3e8f6
a3e8f6
* Sun Apr 19 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.7-3
a3e8f6
- Own /usr/share/ansible/collections/ansible_collections
a3e8f6
a3e8f6
* Sun Apr 19 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.9.7-2
a3e8f6
- Add macros for packaging Ansible collections
a3e8f6
a3e8f6
* Fri Apr 17 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.7-1
a3e8f6
- Update to 2.9.7.
a3e8f6
- 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
a3e8f6
- Drop the -s from the shebang to allow ansible to use locally installed modules.
a3e8f6
a3e8f6
* Fri Mar 06 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.6-1
a3e8f6
- Update to 2.9.6. Fixes bug #1810373
a3e8f6
- fixes for CVE-2020-1737, CVE-2020-1739
a3e8f6
a3e8f6
* Thu Feb 13 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.5-1
a3e8f6
- Update to 2.9.5. Fixes bug #1802725
a3e8f6
a3e8f6
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a3e8f6
a3e8f6
* Tue Jan 21 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.4-1
a3e8f6
- Update to 2.9.4 with one bugfix.
a3e8f6
a3e8f6
* Thu Jan 16 2020 Kevin Fenzi <kevin@scrye.com> - 2.9.3-1
a3e8f6
- Update to 2.9.3.
a3e8f6
a3e8f6
* Sun Dec 08 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.2-1
a3e8f6
- Update to 2.9.2.
a3e8f6
a3e8f6
* Thu Nov 14 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.1-2
a3e8f6
- Add Requires for python3-pyyaml
a3e8f6
a3e8f6
* Wed Nov 13 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.1-1
a3e8f6
- Update to 2.9.1.
a3e8f6
a3e8f6
* Fri Nov 08 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.0-2
a3e8f6
- Supress pwsh requires added by rpm.
a3e8f6
a3e8f6
* Thu Oct 31 2019 Kevin Fenzi <kevin@scrye.com> - 2.9.0-1
a3e8f6
- Update to 2.9.0.
a3e8f6
a3e8f6
* Thu Oct 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.6-1
a3e8f6
- Update to 2.8.6.
a3e8f6
- Rework spec file to drop old conditionals.
a3e8f6
a3e8f6
* Thu Oct 10 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.5-2
a3e8f6
- Make python3-paramiko and python3-winrm Recommended so they install on Fedora and not RHEL8
a3e8f6
a3e8f6
* Fri Sep 13 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.5-1
a3e8f6
- Update to 2.8.5.
a3e8f6
a3e8f6
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.8.4-2
a3e8f6
- Rebuilt for Python 3.8
a3e8f6
a3e8f6
* Fri Aug 16 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.4-1
a3e8f6
- Update to 2.8.4. Fixes CVE-2019-10217 and CVE-2019-10206
a3e8f6
a3e8f6
* Thu Jul 25 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.3-1
a3e8f6
- Update to 2.8.3.
a3e8f6
a3e8f6
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.2-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a3e8f6
a3e8f6
* Wed Jul 03 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.2-1
a3e8f6
- Update to 2.8.2. Fixes bug #1726846
a3e8f6
a3e8f6
* Sun Jun 09 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.1-1
a3e8f6
- Update to 2.8.1. Fixes bug #1718131
a3e8f6
- Sync up Requires/Buildrequires with upstream.
a3e8f6
- Add patch for python 3.8 building. Fixes bug #1712531
a3e8f6
- Add patch for CVE-2019-10156.
a3e8f6
a3e8f6
* Fri May 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-2
a3e8f6
- Fixes for various releases build/test issues.
a3e8f6
a3e8f6
* Fri May 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-1
a3e8f6
- Update to 2.8.0 final.
a3e8f6
- Add datadirs for other packages to land ansible files in.
a3e8f6
a3e8f6
* Fri May 10 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.4rc3
a3e8f6
- Update to 2.8.0 rc3.
a3e8f6
a3e8f6
* Thu May 02 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.3rc2
a3e8f6
- Update to 2.8.0 rc2.
a3e8f6
a3e8f6
* Fri Apr 26 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.2rc1
a3e8f6
- Update to 2.8.0 rc1.
a3e8f6
a3e8f6
* Mon Apr 22 2019 Kevin Fenzi <kevin@scrye.com> - 2.8.0-0.1b
a3e8f6
- Update to 2.8.0 beta 1.
a3e8f6
a3e8f6
* Thu Apr 04 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.10-1
a3e8f6
- Update to 2.7.10. Fixes bug #1696379
a3e8f6
a3e8f6
* Thu Mar 14 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.9-1
a3e8f6
- Update to 2.7.9. Fixes bug #1688974
a3e8f6
a3e8f6
* Thu Feb 21 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.8-1
a3e8f6
- Update to 2.7.8. Fixes bug #1679787
a3e8f6
- Fix for CVE-2019-3828
a3e8f6
a3e8f6
* Thu Feb 07 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.7-1
a3e8f6
- Update to 2.7.7. Fixes bug #1673761
a3e8f6
a3e8f6
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.6-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a3e8f6
a3e8f6
* Thu Jan 17 2019 Kevin Fenzi <kevin@scrye.com> - 2.7.6-1
a3e8f6
- Update to 2.7.6.
a3e8f6
a3e8f6
* Thu Dec 13 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.5-1
a3e8f6
- Update to 2.7.5
a3e8f6
a3e8f6
* Mon Dec 03 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.4-1
a3e8f6
- Update to 2.7.4
a3e8f6
a3e8f6
* Thu Nov 29 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.3-1
a3e8f6
- Update to 2.7.3
a3e8f6
a3e8f6
* Thu Nov 15 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.2-1
a3e8f6
- Update to 2.7.2.
a3e8f6
a3e8f6
* Mon Oct 29 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.1-1
a3e8f6
- Update to 2.7.1.
a3e8f6
a3e8f6
* Thu Oct 04 2018 Kevin Fenzi <kevin@scrye.com> - 2.7.0-1
a3e8f6
- Update to 2.7.0
a3e8f6
a3e8f6
* Fri Sep 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.5-1
a3e8f6
- Update to 2.6.5.
a3e8f6
a3e8f6
* Fri Sep 07 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.4-1
a3e8f6
- Update to 2.6.4.
a3e8f6
a3e8f6
* Thu Aug 16 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.3-1
a3e8f6
- Upgrade to 2.6.3.
a3e8f6
a3e8f6
* Sat Jul 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.2-1
a3e8f6
- Update to 2.6.2. Fixes bug #1609486
a3e8f6
a3e8f6
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a3e8f6
a3e8f6
* Thu Jul 05 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.1-1
a3e8f6
- Update to 2.6.1. Fixes bug #1598602
a3e8f6
- Fixes CVE-2018-10874 and CVE-2018-10875
a3e8f6
a3e8f6
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-2
a3e8f6
- Rebuilt for Python 3.7
a3e8f6
a3e8f6
* Thu Jun 28 2018 Kevin Fenzi <kevin@scrye.com> - 2.6.0-1
a3e8f6
- Update to 2.6.0. Fixes bug #1596424
a3e8f6
a3e8f6
* Tue Jun 26 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.5-5
a3e8f6
- Rebuilt for Python 3.7
a3e8f6
a3e8f6
* Mon Jun 25 2018 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.5.5-4
a3e8f6
- Upstream patch to build docs with older jinja2 (Fedora 27)
a3e8f6
- Build changes to build only rst docs for modules and plugins when a distro
a3e8f6
  doesn't have modern enough packages to build the documentation. (EPEL7)
a3e8f6
a3e8f6
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.5.5-3
a3e8f6
- Rebuilt for Python 3.7
a3e8f6
a3e8f6
* Fri Jun 15 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.5-2
a3e8f6
- Stop building docs on F27 as python-jinja2 is too old there.
a3e8f6
a3e8f6
* Thu Jun 14 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.5-1
a3e8f6
- Update to 2.5.5. Fixes bug #1580530 and #1584927
a3e8f6
- Fixes 1588855,1590200 (fedora) and 1588855,1590199 (epel)
a3e8f6
  CVE-2018-10855 (security bug with no_log handling)
a3e8f6
a3e8f6
* Thu May 31 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.4-1
a3e8f6
- Update to 2.5.4. Fixes bug #1584927
a3e8f6
a3e8f6
* Thu May 17 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.3-1
a3e8f6
- Update to 2.5.3. Fixes bug #1579577 and #1574221
a3e8f6
a3e8f6
* Thu Apr 26 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.2-1
a3e8f6
- Update to 2.5.2 with bugfixes.
a3e8f6
a3e8f6
* Wed Apr 18 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.1-1
a3e8f6
- Update to 2.5.1 with bugfixes. Fixes: #1569270 #1569153 #1566004 #1566001
a3e8f6
a3e8f6
* Tue Mar 27 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.0-2
a3e8f6
- Some additional python3 fixes. Thanks churchyard!
a3e8f6
a3e8f6
* Sat Mar 24 2018 Kevin Fenzi <kevin@scrye.com> - 2.5.0-1
a3e8f6
- Update to 2.5.0. Fixes bug #1559852
a3e8f6
- Spec changes/improvements with tests, docs, and conditionals.
a3e8f6
a3e8f6
* Fri Mar 16 2018 Miro Hrončok <mhroncok@redhat.com> - 2.4.3.0-3
a3e8f6
- Don't build and ship Python 2 bits on EL > 7 and Fedora > 29
a3e8f6
a3e8f6
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3.0-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a3e8f6
a3e8f6
* Wed Jan 31 2018 Kevin Fenzi <kevin@scrye.com> - 2.4.3.0-1
a3e8f6
- Update to 2.4.3. See https://github.com/ansible/ansible/blob/stable-2.4/CHANGELOG.md for full changes.
a3e8f6
a3e8f6
* Mon Jan 08 2018 Troy Dawson <tdawson@redhat.com> - 2.4.2.0-2
a3e8f6
- Update conditional
a3e8f6
a3e8f6
* Wed Nov 29 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.2.0-1
a3e8f6
- Update to 2.4.2. See https://github.com/ansible/ansible/blob/stable-2.4/CHANGELOG.md for full changes.
a3e8f6
a3e8f6
* Mon Oct 30 2017 Kevin Fenzi kevin@scrye.com - 2.4.1.0-2
a3e8f6
- Add PR to conditionalize docs building. Thanks tibbs!
a3e8f6
- Fix up el6 patches
a3e8f6
a3e8f6
* Thu Oct 26 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.1.0-1
a3e8f6
- Update to 2.4.1
a3e8f6
a3e8f6
* Thu Oct 12 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.4.0.0-3
a3e8f6
- Fix Python3 subpackage to symlink to the python3 versions of the scripts
a3e8f6
  instead of the python2 version
a3e8f6
a3e8f6
* Mon Sep 25 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.0.0-2
a3e8f6
- Rebase rhel6 jinja2 patch.
a3e8f6
- Conditionalize jmespath to work around amazon linux issues. Fixes bug #1494640
a3e8f6
a3e8f6
* Tue Sep 19 2017 Kevin Fenzi <kevin@scrye.com> - 2.4.0.0-1
a3e8f6
- Update to 2.4.0.
a3e8f6
a3e8f6
* Tue Aug 08 2017 Kevin Fenzi <kevin@scrye.com> - 2.3.2.0-1
a3e8f6
- Update to 2.3.2. Fixes bugs #1471017 #1461116 #1465586
a3e8f6
a3e8f6
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1.0-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a3e8f6
a3e8f6
* Thu Jun 01 2017 Kevin Fenzi <kevin@scrye.com> - 2.3.1.0-1
a3e8f6
- Update to 2.3.1.0.
a3e8f6
a3e8f6
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 2.3.0.0-3
a3e8f6
- Update backported patch to the one actually merged upstream
a3e8f6
a3e8f6
* Wed Apr 19 2017 James Hogarth <james.hogarth@gmail.com> - 2.3.0.0-2
a3e8f6
- Backport hotfix to fix ansible-galaxy regression https://github.com/ansible/ansible/issues/22572
a3e8f6
a3e8f6
* Wed Apr 12 2017 Toshio Kuratomi <toshio@fedoraproject.org> - 2.3.0.0-1
a3e8f6
- Update to 2.3.0
a3e8f6
- Remove upstreamed patches
a3e8f6
- Remove controlpersist socket path path as a custom solution was included
a3e8f6
  upstream
a3e8f6
- Run the unittests from the upstream tarball now instead of having to download
a3e8f6
  separately
a3e8f6
- Build a documentation subpackage
a3e8f6
a3e8f6
* Tue Mar 28 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-3
a3e8f6
- Deal with RHEL7 pytest vs python-pytest.
a3e8f6
- Rebase epel6 newer jinja patch.
a3e8f6
- Conditionalize exclude for RHEL6 rpm.
a3e8f6
a3e8f6
* Tue Mar 28 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-2
a3e8f6
- Conditionalize python3 files for epel builds.
a3e8f6
a3e8f6
* Tue Mar 28 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-1
a3e8f6
- 2.2.2.0 final
a3e8f6
- Add new patch to fix unittests
a3e8f6
a3e8f6
* Mon Mar 27 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.4.rc1
a3e8f6
- Add python-crypto and python3-crypto as explicit requirements
a3e8f6
a3e8f6
* Mon Mar 27 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.3.rc1
a3e8f6
- Add a symlink for ansible executables to be accessed via python major version
a3e8f6
  (ie: ansible-3) in addition to python-major-minor (ansible-3.6)
a3e8f6
a3e8f6
* Wed Mar  8 2017 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.2.0-0.2.rc1
a3e8f6
- Add a python3 ansible package.  Note that upstream doesn't intend for the library
a3e8f6
  to be used by third parties so this is really just for the executables.  It's not
a3e8f6
  strictly required that the executables be built for both python2 and python3 but
a3e8f6
  we do need to get testing of the python3 version to know if it's stable enough to
a3e8f6
  go into the next Fedora.  We also want the python2 version available in case a user
a3e8f6
  has to get something done and the python3 version is too buggy.
a3e8f6
- Fix Ansible cli scripts to handle appended python version
a3e8f6
a3e8f6
* Wed Feb 22 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.2.0-0.1.rc1
a3e8f6
- Update to 2.2.2.0 rc1. Fixes bug #1421485
a3e8f6
a3e8f6
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1.0-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a3e8f6
a3e8f6
* Mon Jan 16 2017 Kevin Fenzi <kevin@scrye.com> - 2.2.1.0-1
a3e8f6
- Update to 2.2.1.
a3e8f6
- Fixes: CVE-2016-9587 CVE-2016-8647 CVE-2016-9587 CVE-2016-8647
a3e8f6
- Fixes bug #1405110
a3e8f6
a3e8f6
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-3
a3e8f6
- Update unit tests that will skip docker related tests if docker isn't available.
a3e8f6
- Drop docker BuildRequires. Fixes bug #1392918
a3e8f6
a3e8f6
* Fri Nov  4 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.2.0.0-3
a3e8f6
- Fix for dnf group install
a3e8f6
a3e8f6
* Tue Nov 01 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-2
a3e8f6
- Fix some BuildRequires to work on all branches.
a3e8f6
a3e8f6
* Tue Nov 01 2016 Kevin Fenzi <kevin@scrye.com> - 2.2.0.0-1
a3e8f6
- Update to 2.2.0. Fixes #1390564 #1388531 #1387621 #1381538 #1388113 #1390646 #1388038 #1390650
a3e8f6
- Fixes for CVE-2016-8628 CVE-2016-8614 CVE-2016-8628 CVE-2016-8614
a3e8f6
a3e8f6
* Thu Sep 29 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.2.0-1
a3e8f6
- Update to 2.1.2
a3e8f6
a3e8f6
* Thu Jul 28 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.1.0-1
a3e8f6
- Update to 2.1.1
a3e8f6
a3e8f6
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0.0-3
a3e8f6
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
a3e8f6
a3e8f6
* Wed Jun 15 2016 Matt Domsch <matt@domsch.com> - 2.1.0.0-2
a3e8f6
- Force python 2.6 on EL6
a3e8f6
a3e8f6
* Wed May 25 2016 Kevin Fenzi <kevin@scrye.com> - 2.1.0.0-1
a3e8f6
- Update to 2.1.0.0.
a3e8f6
- Fixes: 1334097 1337474 1332233 1336266
a3e8f6
a3e8f6
* Tue Apr 19 2016 Kevin Fenzi <kevin@scrye.com> - 2.0.2.0-1
a3e8f6
- Update to 2.0.2.0. https://github.com/ansible/ansible/blob/stable-2.0/CHANGELOG.md
a3e8f6
- Fixes CVE-2016-3096
a3e8f6
- Fix for failed to resolve remote temporary directory issue. bug #1328359
a3e8f6
a3e8f6
* Thu Feb 25 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.1.0-2
a3e8f6
- Patch control_path to be not hit path length limitations (RH BZ #1311729)
a3e8f6
- Version the test tarball
a3e8f6
a3e8f6
* Thu Feb 25 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.1.0-1
a3e8f6
- Update to upstream bugfix for 2.0.x release series.
a3e8f6
a3e8f6
* Thu Feb  4 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.0.0.2-3
a3e8f6
- Utilize the python-jinja26 package on EPEL6
a3e8f6
a3e8f6
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0.2-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a3e8f6
a3e8f6
* Thu Jan 14 2016 Toshio Kuratomi <toshio@fedoraproject.org> - - 2.0.0.2-1
a3e8f6
- Ansible 2.0.0.2 release from upstream.  (Minor bugfix to one callback plugin
a3e8f6
  API).
a3e8f6
a3e8f6
* Tue Jan 12 2016 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0.0.1-1
a3e8f6
- Ansible 2.0.0.1 from upstream.  Rewrite with many bugfixes, rewritten code,
a3e8f6
  and new features. See the upstream changelog for details:
a3e8f6
  https://github.com/ansible/ansible/blob/devel/CHANGELOG.md
a3e8f6
a3e8f6
* Wed Oct 14 2015 Adam Williamson <awilliam@redhat.com> - 1.9.4-2
a3e8f6
- backport upstream fix for GH #2043 (crash when pulling Docker images)
a3e8f6
a3e8f6
* Fri Oct 09 2015 Kevin Fenzi <kevin@scrye.com> 1.9.4-1
a3e8f6
- Update to 1.9.4
a3e8f6
a3e8f6
* Sun Oct 04 2015 Kevin Fenzi <kevin@scrye.com> 1.9.3-3
a3e8f6
- Backport dnf module from head. Fixes bug #1267018
a3e8f6
a3e8f6
* Tue Sep  8 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.3-2
a3e8f6
- Pull in patch for yum module that fixes state=latest issue
a3e8f6
a3e8f6
* Thu Sep 03 2015 Kevin Fenzi <kevin@scrye.com> 1.9.3-1
a3e8f6
- Update to 1.9.3
a3e8f6
- Patch dnf as package manager. Fixes bug #1258080
a3e8f6
- Fixes bug #1251392 (in 1.9.3 release)
a3e8f6
- Add requires for sshpass package. Fixes bug #1258799
a3e8f6
a3e8f6
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.2-1
a3e8f6
- Update to 1.9.2
a3e8f6
a3e8f6
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-3
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a3e8f6
a3e8f6
* Wed May 27 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.9.1-2
a3e8f6
- Fix for dnf
a3e8f6
a3e8f6
* Tue Apr 28 2015 Kevin Fenzi <kevin@scrye.com> 1.9.1-1
a3e8f6
- Update to 1.9.1
a3e8f6
a3e8f6
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0.1-2
a3e8f6
- Drop upstreamed epel6 patches.
a3e8f6
a3e8f6
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0.1-1
a3e8f6
- Update to 1.9.0.1
a3e8f6
a3e8f6
* Wed Mar 25 2015 Kevin Fenzi <kevin@scrye.com> 1.9.0-1
a3e8f6
- Update to 1.9.0
a3e8f6
a3e8f6
* Thu Feb 19 2015 Kevin Fenzi <kevin@scrye.com> 1.8.4-1
a3e8f6
- Update to 1.8.4
a3e8f6
a3e8f6
* Tue Feb 17 2015 Kevin Fenzi <kevin@scrye.com> 1.8.3-1
a3e8f6
- Update to 1.8.3
a3e8f6
a3e8f6
* Sun Jan 11 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.8.2-3
a3e8f6
- Work around a bug in python2.6 by using simplejson (applies in EPEL6)
a3e8f6
a3e8f6
* Wed Dec 17 2014 Michael Scherer <misc@zarb.org> 1.8.2-2
a3e8f6
- precreate /etc/ansible/roles and /usr/share/ansible_plugins
a3e8f6
a3e8f6
* Sun Dec 07 2014 Kevin Fenzi <kevin@scrye.com> 1.8.2-1
a3e8f6
- Update to 1.8.2
a3e8f6
a3e8f6
* Thu Nov 27 2014 Kevin Fenzi <kevin@scrye.com> 1.8.1-1
a3e8f6
- Update to 1.8.1
a3e8f6
a3e8f6
* Tue Nov 25 2014 Kevin Fenzi <kevin@scrye.com> 1.8-2
a3e8f6
- Rebase el6 patch
a3e8f6
a3e8f6
* Tue Nov 25 2014 Kevin Fenzi <kevin@scrye.com> 1.8-1
a3e8f6
- Update to 1.8
a3e8f6
a3e8f6
* Thu Oct  9 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.7.2-2
a3e8f6
- Add /usr/bin/ansible to the rhel6 newer pycrypto patch
a3e8f6
a3e8f6
* Wed Sep 24 2014 Kevin Fenzi <kevin@scrye.com> 1.7.2-1
a3e8f6
- Update to 1.7.2
a3e8f6
a3e8f6
* Thu Aug 14 2014 Kevin Fenzi <kevin@scrye.com> 1.7.1-1
a3e8f6
- Update to 1.7.1
a3e8f6
a3e8f6
* Wed Aug 06 2014 Kevin Fenzi <kevin@scrye.com> 1.7-1
a3e8f6
- Update to 1.7
a3e8f6
a3e8f6
* Fri Jul 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.10-1
a3e8f6
- Update to 1.6.10
a3e8f6
a3e8f6
* Thu Jul 24 2014 Kevin Fenzi <kevin@scrye.com> 1.6.9-1
a3e8f6
- Update to 1.6.9 with more shell quoting fixes.
a3e8f6
a3e8f6
* Tue Jul 22 2014 Kevin Fenzi <kevin@scrye.com> 1.6.8-1
a3e8f6
- Update to 1.6.8 with fixes for shell quoting from previous release.
a3e8f6
- Fixes bugs #1122060 #1122061 #1122062
a3e8f6
a3e8f6
* Mon Jul 21 2014 Kevin Fenzi <kevin@scrye.com> 1.6.7-1
a3e8f6
- Update to 1.6.7
a3e8f6
- Fixes CVE-2014-4966 and CVE-2014-4967
a3e8f6
a3e8f6
* Tue Jul 01 2014 Kevin Fenzi <kevin@scrye.com> 1.6.6-1
a3e8f6
- Update to 1.6.6
a3e8f6
a3e8f6
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.5-1
a3e8f6
- Update to 1.6.5
a3e8f6
a3e8f6
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.6.4-1
a3e8f6
- Update to 1.6.4
a3e8f6
a3e8f6
* Mon Jun 09 2014 Kevin Fenzi <kevin@scrye.com> 1.6.3-1
a3e8f6
- Update to 1.6.3
a3e8f6
a3e8f6
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.2-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a3e8f6
a3e8f6
* Fri May 23 2014 Kevin Fenzi <kevin@scrye.com> 1.6.2-1
a3e8f6
- Update to 1.6.2 release
a3e8f6
a3e8f6
* Wed May  7 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6.1-1
a3e8f6
- Bugfix 1.6.1 release
a3e8f6
a3e8f6
* Mon May  5 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.6-1
a3e8f6
- Update to 1.6
a3e8f6
- Drop accelerate fix, merged upstream
a3e8f6
- Refresh RHEL6 pycrypto patch.  It was half-merged upstream.
a3e8f6
a3e8f6
* Fri Apr 18 2014 Kevin Fenzi <kevin@scrye.com> 1.5.5-1
a3e8f6
- Update to 1.5.5
a3e8f6
a3e8f6
* Mon Apr  7 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5.4-2
a3e8f6
- Fix setuptools requirement to apply to rhel=6, not rhel<6
a3e8f6
a3e8f6
* Wed Apr  2 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.5.4-1
a3e8f6
- Update to 1.5.4
a3e8f6
- Add upstream patch to fix accelerator mode
a3e8f6
- Merge fedora and el6 spec files
a3e8f6
a3e8f6
* Fri Mar 14 2014 Kevin Fenzi <kevin@scrye.com> 1.5.3-2
a3e8f6
- Update to NEW 1.5.3 upstream release.
a3e8f6
- Add missing dependency on python-setuptools (el6 build)
a3e8f6
a3e8f6
* Thu Mar 13 2014 Kevin Fenzi <kevin@scrye.com> 1.5.3-1
a3e8f6
- Update to 1.5.3
a3e8f6
- Fix ansible-vault for newer python-crypto dependency (el6 build)
a3e8f6
a3e8f6
* Tue Mar 11 2014 Kevin Fenzi <kevin@scrye.com> 1.5.2-2
a3e8f6
- Update to redone 1.5.2 release
a3e8f6
a3e8f6
* Tue Mar 11 2014 Kevin Fenzi <kevin@scrye.com> 1.5.2-1
a3e8f6
- Update to 1.5.2
a3e8f6
a3e8f6
* Mon Mar 10 2014 Kevin Fenzi <kevin@scrye.com> 1.5.1-1
a3e8f6
- Update to 1.5.1
a3e8f6
a3e8f6
* Fri Feb 28 2014 Kevin Fenzi <kevin@scrye.com> 1.5-1
a3e8f6
- Update to 1.5
a3e8f6
a3e8f6
* Wed Feb 12 2014 Kevin Fenzi <kevin@scrye.com> 1.4.5-1
a3e8f6
- Update to 1.4.5
a3e8f6
a3e8f6
* Sat Dec 28 2013 Kevin Fenzi <kevin@scrye.com> 1.4.3-1
a3e8f6
- Update to 1.4.3 with ansible galaxy commands.
a3e8f6
- Adds python-httplib2 to requires
a3e8f6
a3e8f6
* Wed Nov 27 2013 Kevin Fenzi <kevin@scrye.com> 1.4.1-1
a3e8f6
- Update to upstream 1.4.1 bugfix release
a3e8f6
a3e8f6
* Thu Nov 21 2013 Kevin Fenzi <kevin@scrye.com> 1.4-1
a3e8f6
- Update to 1.4
a3e8f6
a3e8f6
* Tue Oct 29 2013 Kevin Fenzi <kevin@scrye.com> 1.3.4-1
a3e8f6
- Update to 1.3.4
a3e8f6
a3e8f6
* Tue Oct 08 2013 Kevin Fenzi <kevin@scrye.com> 1.3.3-1
a3e8f6
- Update to 1.3.3
a3e8f6
a3e8f6
* Thu Sep 19 2013 Kevin Fenzi <kevin@scrye.com> 1.3.2-1
a3e8f6
- Update to 1.3.2 with minor upstream fixes
a3e8f6
a3e8f6
* Mon Sep 16 2013 Kevin Fenzi <kevin@scrye.com> 1.3.1-1
a3e8f6
- Update to 1.3.1
a3e8f6
a3e8f6
* Sat Sep 14 2013 Kevin Fenzi <kevin@scrye.com> 1.3.0-2
a3e8f6
- Merge upstream spec changes to support EPEL5
a3e8f6
- (Still needs python26-keyczar and deps added to EPEL)
a3e8f6
a3e8f6
* Thu Sep 12 2013 Kevin Fenzi <kevin@scrye.com> 1.3.0-1
a3e8f6
- Update to 1.3.0
a3e8f6
- Drop node-fireball subpackage entirely.
a3e8f6
- Obsolete/provide fireball subpackage.
a3e8f6
- Add Requires python-keyczar on main package for accelerated mode.
a3e8f6
a3e8f6
* Wed Aug 21 2013 Kevin Fenzi <kevin@scrye.com> 1.2.3-2
a3e8f6
- Update to 1.2.3
a3e8f6
- Fixes CVE-2013-4260 and CVE-2013-4259
a3e8f6
a3e8f6
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.2-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a3e8f6
a3e8f6
* Sat Jul 06 2013 Kevin Fenzi <kevin@scrye.com> 1.2.2-1
a3e8f6
- Update to 1.2.2 with minor fixes
a3e8f6
a3e8f6
* Fri Jul 05 2013 Kevin Fenzi <kevin@scrye.com> 1.2.1-2
a3e8f6
- Update to newer upstream re-release to fix a syntax error
a3e8f6
a3e8f6
* Thu Jul 04 2013 Kevin Fenzi <kevin@scrye.com> 1.2.1-1
a3e8f6
- Update to 1.2.1
a3e8f6
- Fixes CVE-2013-2233
a3e8f6
a3e8f6
* Mon Jun 10 2013 Kevin Fenzi <kevin@scrye.com> 1.2-1
a3e8f6
- Update to 1.2
a3e8f6
a3e8f6
* Tue Apr 02 2013 Kevin Fenzi <kevin@scrye.com> 1.1-1
a3e8f6
- Update to 1.1
a3e8f6
a3e8f6
* Mon Mar 18 2013 Kevin Fenzi <kevin@scrye.com> 1.0-1
a3e8f6
- Update to 1.0
a3e8f6
a3e8f6
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-2
a3e8f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a3e8f6
a3e8f6
* Fri Nov 30 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
a3e8f6
- Release 0.9
a3e8f6
a3e8f6
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
a3e8f6
- Release of 0.8
a3e8f6
a3e8f6
* Thu Aug 9 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
a3e8f6
- Release of 0.7
a3e8f6
a3e8f6
* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
a3e8f6
- Release of 0.6
a3e8f6
a3e8f6
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
a3e8f6
- Release of 0.5
a3e8f6
a3e8f6
* Wed May 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.4-0
a3e8f6
- Release of 0.4
a3e8f6
a3e8f6
* Mon Apr 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.3-1
a3e8f6
- Release of 0.3
a3e8f6
a3e8f6
* Tue Apr  3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
a3e8f6
- Release of 0.0.2
a3e8f6
a3e8f6
* Sat Mar 10 2012  <tbielawa@redhat.com> - 0.0.1-1
a3e8f6
- Release of 0.0.1