ansible/packaging/rpm/ansible.spec

75 lines
1.9 KiB
RPMSpec
Raw Normal View History

2012-04-13 22:27:56 +02:00
%if 0%{?rhel} <= 5
%{!?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
Name: ansible
Release: 1%{?dist}
Summary: Minimal SSH command and control
2012-07-05 08:18:43 +02:00
Version: 0.6
Group: Development/Libraries
License: GPLv3
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
Url: http://ansible.github.com
BuildArch: noarch
2012-04-13 22:27:56 +02:00
BuildRequires: python2-devel
2012-04-19 06:14:37 +02:00
Requires: PyYAML
2012-03-05 18:16:08 +01:00
Requires: python-paramiko
Requires: python-jinja2
%description
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.
%prep
2012-04-13 22:27:56 +02:00
%setup -q
%build
%{__python} setup.py build
%install
%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
2012-04-13 22:27:56 +02:00
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/
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/
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
2012-04-13 22:27:56 +02:00
%{python_sitelib}/ansible*
%{_bindir}/ansible*
2012-04-13 22:27:56 +02:00
%{_datadir}/ansible
%config(noreplace) %{_sysconfdir}/ansible
2012-04-13 22:27:56 +02:00
%doc README.md PKG-INFO
%doc %{_mandir}/man1/ansible*
%changelog
* Wed Jul 4 2012 Michael DeHaan <michael.dehaan@gmail.com> - 0.5-0
- Not released yet
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
* Sat Mar 10 2012 <tbielawa@redhat.com> - 0.0.1-1
- Release of 0.0.1