2df6399176
as per fedora usage guidelines https://fedoraproject.org/wiki/Packaging:DistTag
61 lines
1.6 KiB
RPMSpec
61 lines
1.6 KiB
RPMSpec
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
|
|
|
Name: ansible
|
|
Release: 1%{?dist}
|
|
Summary: Minimal SSH command and control
|
|
Version: 0.0.2
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
Group: Development/Libraries
|
|
License: GPLv3
|
|
Prefix: %{_prefix}
|
|
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
|
|
Url: http://ansible.github.com
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: asciidoc
|
|
BuildRequires: python-devel
|
|
|
|
Requires: python-paramiko
|
|
Requires: python-jinja2
|
|
|
|
%description
|
|
Ansible is a extra-simple tool/API for doing 'parallel remote things' over SSH
|
|
executing commands, running "modules", or executing larger 'playbooks' that
|
|
can serve as a configuration management or deployment system.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
|
|
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
|
|
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
|
|
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
|
|
%doc README.md PKG-INFO
|
|
%defattr(-,root,root)
|
|
%{_mandir}/man1/*.gz
|
|
%{python_sitelib}/*
|
|
%{_bindir}/ansible*
|
|
%{_datadir}/ansible/*
|
|
%config(noreplace) /etc/ansible/hosts
|
|
%config(noreplace) %{_sysconfdir}/ansible/
|
|
|
|
|
|
%changelog
|
|
* 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
|