2013-10-27 17:07:18 +00:00
|
|
|
%define name ansible
|
|
|
|
|
2013-07-23 10:45:08 -07:00
|
|
|
%if 0%{?rhel} == 5
|
|
|
|
%define __python /usr/bin/python26
|
|
|
|
%endif
|
|
|
|
|
2013-10-27 17:07:18 +00:00
|
|
|
Name: %{name}
|
2013-12-04 15:59:01 -05:00
|
|
|
Version: 1.5
|
2013-10-27 17:07:18 +00:00
|
|
|
Release: 1%{?dist}
|
2014-01-28 11:38:52 -05:00
|
|
|
Url: http://www.ansible.com
|
|
|
|
Summary: SSH-based application deployment, configuration management, and IT orchestration platform
|
2013-10-27 17:07:18 +00:00
|
|
|
License: GPLv3
|
|
|
|
Group: Development/Libraries
|
2014-01-28 11:38:52 -05:00
|
|
|
Source: http://releases.ansible.com/ansible/%{name}-%{version}.tar.gz
|
2012-04-13 16:27:56 -04:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
2013-10-27 17:07:18 +00:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
2012-03-10 14:02:25 -05:00
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
BuildArch: noarch
|
2013-10-27 17:07:18 +00:00
|
|
|
|
|
|
|
# RHEL <=5
|
2013-04-27 21:33:17 +03:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 5
|
2013-03-11 15:22:37 +00:00
|
|
|
BuildRequires: python26-devel
|
|
|
|
Requires: python26-PyYAML
|
|
|
|
Requires: python26-paramiko
|
|
|
|
Requires: python26-jinja2
|
2013-09-13 17:31:34 -04:00
|
|
|
Requires: python26-keyczar
|
2013-12-18 20:15:37 -05:00
|
|
|
Requires: python26-httplib2
|
2013-10-27 17:07:18 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
# RHEL > 5
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} > 5
|
2012-04-13 16:27:56 -04:00
|
|
|
BuildRequires: python2-devel
|
2013-12-04 15:59:01 -05:00
|
|
|
Requires: PyYAML
|
|
|
|
Requires: python-paramiko
|
|
|
|
Requires: python-jinja2
|
|
|
|
Requires: python-keyczar
|
2013-12-18 20:15:37 -05:00
|
|
|
Requires: python-httplib2
|
2013-11-21 00:02:48 +00:00
|
|
|
%endif
|
2012-03-10 14:02:25 -05:00
|
|
|
|
2013-12-04 15:59:01 -05:00
|
|
|
# FEDORA > 17
|
|
|
|
%if 0%{?fedora} >= 18
|
|
|
|
BuildRequires: python-devel
|
2012-04-19 00:14:37 -04:00
|
|
|
Requires: PyYAML
|
2012-03-05 12:16:08 -05:00
|
|
|
Requires: python-paramiko
|
2012-03-05 20:09:03 -05:00
|
|
|
Requires: python-jinja2
|
2013-09-13 17:31:34 -04:00
|
|
|
Requires: python-keyczar
|
2013-12-18 20:15:37 -05:00
|
|
|
Requires: python-httplib2
|
2013-03-11 15:22:37 +00:00
|
|
|
%endif
|
2013-10-27 17:07:18 +00:00
|
|
|
|
|
|
|
# SuSE/openSuSE
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
BuildRequires: python-devel
|
|
|
|
BuildRequires: python-setuptools
|
|
|
|
Requires: python-paramiko
|
|
|
|
Requires: python-jinja2
|
|
|
|
Requires: python-keyczar
|
|
|
|
Requires: python-yaml
|
2013-12-18 20:15:37 -05:00
|
|
|
Requires: python-httplib2
|
2013-10-27 17:07:18 +00:00
|
|
|
%endif
|
|
|
|
|
2013-09-13 17:39:14 -05:00
|
|
|
Requires: sshpass
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%description
|
2012-04-17 10:31:29 -04:00
|
|
|
|
|
|
|
Ansible is a radically simple model-driven configuration management,
|
2013-06-10 15:23:51 -04:00
|
|
|
multi-node deployment, and orchestration engine. Ansible works
|
2012-04-17 10:31:29 -04:00
|
|
|
over SSH and does not require any software or daemons to be installed
|
|
|
|
on remote nodes. Extension modules can be written in any language and
|
|
|
|
are transferred to managed machines automatically.
|
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
%prep
|
2012-04-13 16:27:56 -04:00
|
|
|
%setup -q
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%build
|
2012-04-21 11:56:06 -04:00
|
|
|
%{__python} setup.py build
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%install
|
2013-10-27 17:07:18 +00:00
|
|
|
%{__python} setup.py install -O1 --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
mkdir -p %{buildroot}/etc/ansible/
|
|
|
|
cp examples/hosts %{buildroot}/etc/ansible/
|
|
|
|
cp examples/ansible.cfg %{buildroot}/etc/ansible/
|
2014-01-03 11:00:11 -05:00
|
|
|
mkdir -p %{buildroot}/%{_mandir}/man1/
|
2013-10-27 17:07:18 +00:00
|
|
|
cp -v docs/man/man1/*.1 %{buildroot}/%{_mandir}/man1/
|
|
|
|
mkdir -p %{buildroot}/%{_datadir}/ansible
|
|
|
|
cp -rv library/* %{buildroot}/%{_datadir}/ansible/
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%clean
|
2013-10-27 17:07:18 +00:00
|
|
|
rm -rf %{buildroot}
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2012-04-13 16:27:56 -04:00
|
|
|
%{python_sitelib}/ansible*
|
2012-03-05 12:15:24 -05:00
|
|
|
%{_bindir}/ansible*
|
2012-11-04 13:37:38 +00:00
|
|
|
%dir %{_datadir}/ansible
|
2013-12-04 11:06:33 -05:00
|
|
|
%dir %{_datadir}/ansible/*
|
2013-05-29 14:21:25 -04:00
|
|
|
%{_datadir}/ansible/*/*
|
2012-04-16 14:11:57 -04:00
|
|
|
%config(noreplace) %{_sysconfdir}/ansible
|
2013-04-27 21:33:17 +03:00
|
|
|
%doc README.md PKG-INFO COPYING
|
2012-04-13 16:27:56 -04:00
|
|
|
%doc %{_mandir}/man1/ansible*
|
2012-08-14 10:46:16 -04:00
|
|
|
%doc examples/playbooks
|
2012-03-05 12:15:24 -05:00
|
|
|
|
2012-11-04 13:37:38 +00:00
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
%changelog
|
2013-02-01 21:38:21 -05:00
|
|
|
|
2013-11-27 18:41:07 -05:00
|
|
|
* Wed Nov 27 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.5-0
|
2013-11-21 16:33:23 -05:00
|
|
|
* (PENDING)
|
|
|
|
|
2013-11-27 18:41:07 -05:00
|
|
|
* Wed Nov 27 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.4-1
|
|
|
|
* Release 1.4.1
|
|
|
|
|
2013-11-21 15:05:46 -05:00
|
|
|
* Thu Nov 21 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.4-0
|
|
|
|
* Release 1.4.0
|
2013-09-13 17:31:34 -04:00
|
|
|
|
|
|
|
* Fri Sep 13 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.3-0
|
|
|
|
* Release 1.3.0
|
2013-06-10 15:34:52 -04:00
|
|
|
|
2013-07-05 21:45:41 -04:00
|
|
|
* Thu Jul 05 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.2-2
|
|
|
|
* Release 1.2.2
|
|
|
|
|
2013-07-04 21:58:05 -04:00
|
|
|
* Thu Jul 04 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.2-1
|
|
|
|
* Release 1.2.1
|
|
|
|
|
2013-06-10 15:23:51 -04:00
|
|
|
* Mon Jun 10 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.2-0
|
|
|
|
* Release 1.2
|
2013-02-01 21:38:21 -05:00
|
|
|
|
2013-04-02 20:47:57 -04:00
|
|
|
* Tue Apr 2 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.1-0
|
|
|
|
* Release 1.1
|
|
|
|
|
2013-02-01 21:34:34 -05:00
|
|
|
* Fri Feb 1 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.0-0
|
2013-02-01 21:38:21 -05:00
|
|
|
- Release 1.0
|
2012-11-30 22:06:25 -05:00
|
|
|
|
2012-11-30 22:03:31 -05:00
|
|
|
* Fri Nov 30 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
|
|
|
|
- Release 0.9
|
2012-10-19 21:01:57 -04:00
|
|
|
|
2012-10-19 20:46:59 -04:00
|
|
|
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
|
|
|
|
- Release of 0.8
|
2012-09-06 18:56:38 -04:00
|
|
|
|
2012-09-06 18:51:22 -04:00
|
|
|
* Thu Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
|
|
|
|
- Release of 0.7
|
2012-08-06 21:19:04 -04:00
|
|
|
|
|
|
|
* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
|
|
|
|
- Release of 0.6
|
|
|
|
|
2012-07-04 13:37:46 -04:00
|
|
|
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
|
2012-08-06 21:19:04 -04:00
|
|
|
- Release of 0.5
|
2012-05-25 16:43:16 -04:00
|
|
|
|
2012-05-23 20:23:46 -04:00
|
|
|
* Wed May 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.4-0
|
|
|
|
- Release of 0.4
|
|
|
|
|
|
|
|
* Mon Apr 23 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.3-1
|
2012-04-23 21:11:43 -04:00
|
|
|
- Release of 0.3
|
|
|
|
|
2012-04-03 09:51:05 -04:00
|
|
|
* Tue Apr 3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
|
|
|
|
- Release of 0.0.2
|
|
|
|
|
2012-03-10 14:02:25 -05:00
|
|
|
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
|
|
|
|
- Release of 0.0.1
|