2012-04-13 22:27:56 +02:00
|
|
|
%if 0%{?rhel} <= 5
|
2012-03-05 18:15:24 +01:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
2012-04-13 22:27:56 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
%endif
|
2012-03-05 18:15:24 +01:00
|
|
|
|
|
|
|
Name: ansible
|
2012-04-05 19:28:56 +02:00
|
|
|
Release: 1%{?dist}
|
2012-08-07 01:55:27 +02:00
|
|
|
Summary: SSH-based configuration management, deployment, and task execution system
|
2012-10-20 03:01:57 +02:00
|
|
|
Version: 0.9
|
2012-03-10 20:02:25 +01:00
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: GPLv3
|
2012-03-10 22:25:46 +01:00
|
|
|
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
|
2012-03-10 20:02:25 +01:00
|
|
|
Url: http://ansible.github.com
|
|
|
|
|
2012-03-05 18:15:24 +01:00
|
|
|
BuildArch: noarch
|
2012-04-13 22:27:56 +02:00
|
|
|
BuildRequires: python2-devel
|
2012-03-10 20:02:25 +01:00
|
|
|
|
2012-04-19 06:14:37 +02:00
|
|
|
Requires: PyYAML
|
2012-03-05 18:16:08 +01:00
|
|
|
Requires: python-paramiko
|
2012-03-06 02:09:03 +01:00
|
|
|
Requires: python-jinja2
|
2012-03-05 18:15:24 +01:00
|
|
|
|
|
|
|
%description
|
2012-04-17 16:31:29 +02:00
|
|
|
|
|
|
|
Ansible is a radically simple model-driven configuration management,
|
|
|
|
multi-node deployment, and remote task execution system. Ansible works
|
|
|
|
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-11-04 14:37:38 +01:00
|
|
|
%package fireball
|
|
|
|
Summary: Ansible fireball transport support
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: python-keyczar
|
|
|
|
Requires: python-zmq
|
|
|
|
|
|
|
|
%description fireball
|
|
|
|
|
|
|
|
Ansible can optionally use a 0MQ based transport mechanism, which is
|
|
|
|
considerably faster than the standard ssh mechanism when there are
|
|
|
|
multiple actions, but requires additional supporting packages.
|
|
|
|
|
|
|
|
%package node-fireball
|
|
|
|
Summary: Ansible fireball transport - node end support
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: python-keyczar
|
|
|
|
Requires: python-zmq
|
|
|
|
|
|
|
|
%description node-fireball
|
|
|
|
|
|
|
|
Ansible can optionally use a 0MQ based transport mechanism, which has
|
|
|
|
additional requirements for nodes to use. This package includes those
|
|
|
|
requirements.
|
2012-03-05 18:15:24 +01:00
|
|
|
|
|
|
|
%prep
|
2012-04-13 22:27:56 +02:00
|
|
|
%setup -q
|
2012-03-05 18:15:24 +01:00
|
|
|
|
|
|
|
%build
|
2012-04-21 17:56:06 +02:00
|
|
|
%{__python} setup.py build
|
2012-03-05 18:15:24 +01:00
|
|
|
|
|
|
|
%install
|
2012-04-21 17:56:06 +02:00
|
|
|
%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
|
2012-03-05 18:15:24 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
|
2012-03-10 22:19:33 +01:00
|
|
|
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
|
2012-08-14 01:17:14 +02:00
|
|
|
cp examples/ansible.cfg $RPM_BUILD_ROOT/etc/ansible/
|
2012-10-03 15:43:38 +02:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/{man1,man3}/
|
2012-03-13 16:08:10 +01:00
|
|
|
cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
|
2012-10-03 15:43:38 +02:00
|
|
|
cp -v docs/man/man3/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3/
|
2012-03-13 16:08:10 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
|
|
|
|
cp -v library/* $RPM_BUILD_ROOT/%{_datadir}/ansible/
|
2012-03-05 18:15:24 +01:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2012-04-13 22:27:56 +02:00
|
|
|
%{python_sitelib}/ansible*
|
2012-03-05 18:15:24 +01:00
|
|
|
%{_bindir}/ansible*
|
2012-11-04 14:37:38 +01:00
|
|
|
%dir %{_datadir}/ansible
|
|
|
|
%{_datadir}/ansible/[a-eg-z]*
|
|
|
|
%{_datadir}/ansible/f[a-hj-z]*
|
|
|
|
%{_datadir}/ansible/file
|
2012-04-16 20:11:57 +02:00
|
|
|
%config(noreplace) %{_sysconfdir}/ansible
|
2012-08-09 17:14:34 +02:00
|
|
|
%doc README.md PKG-INFO COPYING
|
2012-04-13 22:27:56 +02:00
|
|
|
%doc %{_mandir}/man1/ansible*
|
2012-11-04 14:37:38 +01:00
|
|
|
%doc %{_mandir}/man3/ansible.[a-eg-z]*
|
|
|
|
%doc %{_mandir}/man3/ansible.f[a-hj-z]*
|
|
|
|
%doc %{_mandir}/man3/ansible.file*
|
2012-08-14 16:46:16 +02:00
|
|
|
%doc examples/playbooks
|
2012-03-05 18:15:24 +01:00
|
|
|
|
2012-11-04 14:37:38 +01:00
|
|
|
%files fireball
|
|
|
|
%{_datadir}/ansible/fireball
|
|
|
|
%doc %{_mandir}/man3/ansible.fireball.*
|
|
|
|
|
|
|
|
%files node-fireball
|
|
|
|
%doc README.md PKG-INFO COPYING
|
|
|
|
|
2012-03-05 18:15:24 +01:00
|
|
|
%changelog
|
2012-10-20 03:01:57 +02:00
|
|
|
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
|
|
|
|
- Release pending
|
|
|
|
|
2012-10-20 02:46:59 +02:00
|
|
|
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
|
|
|
|
- Release of 0.8
|
2012-09-07 00:56:38 +02:00
|
|
|
|
2012-09-07 00:51:22 +02:00
|
|
|
* Thu Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
|
|
|
|
- Release of 0.7
|
2012-08-07 03:19:04 +02:00
|
|
|
|
|
|
|
* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
|
|
|
|
- Release of 0.6
|
|
|
|
|
2012-07-04 19:37:46 +02:00
|
|
|
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
|
2012-08-07 03:19:04 +02:00
|
|
|
- Release of 0.5
|
2012-05-25 22:43:16 +02:00
|
|
|
|
2012-05-24 02:23:46 +02: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-24 03:11:43 +02:00
|
|
|
- Release of 0.3
|
|
|
|
|
2012-04-03 15:51:05 +02:00
|
|
|
* Tue Apr 3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
|
|
|
|
- Release of 0.0.2
|
|
|
|
|
2012-03-10 20:02:25 +01:00
|
|
|
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
|
|
|
|
- Release of 0.0.1
|