ansible.spec 4.03 KB
Newer Older
1
%if 0%{?rhel} && 0%{?rhel} <= 5
2
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Tim Bielawa committed
3 4
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
%endif
5 6

Name: ansible
7
Release: 1%{?dist}
Michael DeHaan committed
8
Summary: SSH-based configuration management, deployment, and task execution system
9
Version: 1.1
10 11 12

Group: Development/Libraries
License: GPLv3
13
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
14 15
Url: http://ansible.github.com

16
BuildArch: noarch
17
%if 0%{?rhel} && 0%{?rhel} <= 5
18 19 20 21 22 23
BuildRequires: python26-devel

Requires: python26-PyYAML
Requires: python26-paramiko
Requires: python26-jinja2
%else
Tim Bielawa committed
24
BuildRequires: python2-devel
25

Michael DeHaan committed
26
Requires: PyYAML
27
Requires: python-paramiko
28
Requires: python-jinja2
29
%endif
30 31

%description
32 33 34 35 36 37 38

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.

39 40 41 42
%package fireball
Summary: Ansible fireball transport support
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
43
%if 0%{?rhel} && 0%{?rhel} <= 5
44 45 46
Requires: python26-keyczar
Requires: python26-zmq
%else
47 48
Requires: python-keyczar
Requires: python-zmq
49
%endif
50 51 52 53 54 55 56 57 58 59

%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
60
%if 0%{?rhel} && 0%{?rhel} <= 5
61 62 63
Requires: python26-keyczar
Requires: python26-zmq
%else
64 65
Requires: python-keyczar
Requires: python-zmq
66
%endif
67 68 69 70 71 72

%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.
73 74

%prep
Tim Bielawa committed
75
%setup -q
76 77

%build
78
%{__python} setup.py build
79 80

%install
81
%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
82
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
83
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
Michael DeHaan committed
84
cp examples/ansible.cfg $RPM_BUILD_ROOT/etc/ansible/
85
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/{man1,man3}/
86
cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
87
cp -v docs/man/man3/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3/
88 89
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
cp -v library/* $RPM_BUILD_ROOT/%{_datadir}/ansible/
90 91 92 93 94 95

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root)
Tim Bielawa committed
96
%{python_sitelib}/ansible*
97
%{_bindir}/ansible*
98 99 100 101
%dir %{_datadir}/ansible
%{_datadir}/ansible/[a-eg-z]*
%{_datadir}/ansible/f[a-hj-z]*
%{_datadir}/ansible/file
102
%config(noreplace) %{_sysconfdir}/ansible
103
%doc README.md PKG-INFO COPYING
Tim Bielawa committed
104
%doc %{_mandir}/man1/ansible*
105 106 107
%doc %{_mandir}/man3/ansible.[a-eg-z]*
%doc %{_mandir}/man3/ansible.f[a-hj-z]*
%doc %{_mandir}/man3/ansible.file*
Tim Bielawa committed
108
%doc examples/playbooks
109

110 111 112 113 114 115 116
%files fireball
%{_datadir}/ansible/fireball
%doc %{_mandir}/man3/ansible.fireball.*

%files node-fireball
%doc README.md PKG-INFO COPYING

117
%changelog
118 119 120 121

* Fri Feb 1 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.1-0
* release pending

Michael DeHaan committed
122
* Fri Feb 1 2013 Michael DeHaan <michael.dehaan@gmail.com> - 1.0-0
123
- Release 1.0
Michael DeHaan committed
124

125 126
* Fri Nov 30 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.9-0
- Release 0.9
127

128 129
* Fri Oct 19 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.8-0
- Release of 0.8
Michael DeHaan committed
130

Michael DeHaan committed
131 132
* Thu Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.7-0
- Release of 0.7
Michael DeHaan committed
133 134 135 136

* Mon Aug 6 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.6-0
- Release of 0.6

137
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
Michael DeHaan committed
138
- Release of 0.5
139

Michael DeHaan committed
140 141 142 143
* 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
144 145
- Release of 0.3

John Eckersberg committed
146 147 148
* Tue Apr  3 2012 John Eckersberg <jeckersb@redhat.com> - 0.0.2-1
- Release of 0.0.2

149 150
* Sat Mar 10 2012  <tbielawa@redhat.com> - 0.0.1-1
- Release of 0.0.1