2012-04-13 16:27:56 -04:00
|
|
|
%if 0%{?rhel} <= 5
|
2012-03-05 12:15:24 -05:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
2012-04-13 16:27:56 -04:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
|
|
%endif
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
Name: ansible
|
2012-04-05 13:28:56 -04:00
|
|
|
Release: 1%{?dist}
|
2012-03-10 14:02:25 -05:00
|
|
|
Summary: Minimal SSH command and control
|
2012-04-03 09:51:05 -04:00
|
|
|
Version: 0.0.2
|
2012-03-10 14:02:25 -05:00
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: GPLv3
|
2012-03-10 16:25:46 -05:00
|
|
|
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
|
2012-03-10 14:02:25 -05:00
|
|
|
Url: http://ansible.github.com
|
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
BuildArch: noarch
|
2012-04-13 16:27:56 -04:00
|
|
|
BuildRequires: python2-devel
|
2012-03-10 14:02:25 -05:00
|
|
|
|
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
|
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,
|
|
|
|
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-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
|
2012-04-21 11:56:06 -04:00
|
|
|
%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
|
2012-03-05 12:15:24 -05:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
|
2012-03-10 16:19:33 -05:00
|
|
|
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
|
2012-04-13 16:27:56 -04:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/
|
2012-03-13 11:08:10 -04:00
|
|
|
cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
|
|
|
|
cp -v library/* $RPM_BUILD_ROOT/%{_datadir}/ansible/
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%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-04-13 16:27:56 -04:00
|
|
|
%{_datadir}/ansible
|
2012-04-16 14:11:57 -04:00
|
|
|
%config(noreplace) %{_sysconfdir}/ansible
|
2012-04-13 16:27:56 -04:00
|
|
|
%doc README.md PKG-INFO
|
|
|
|
%doc %{_mandir}/man1/ansible*
|
2012-03-10 16:19:33 -05:00
|
|
|
|
2012-03-05 12:15:24 -05:00
|
|
|
|
|
|
|
%changelog
|
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
|