summaryrefslogtreecommitdiffstats
path: root/ansible.spec
diff options
context:
space:
mode:
authorTim Bielawa <tbielawa@redhat.com>2012-04-13 22:27:56 +0200
committerTim Bielawa <tbielawa@redhat.com>2012-04-17 16:30:44 +0200
commit9316a504c5d09519508ef7296c7c521534b00f87 (patch)
tree19ec6b053108789bb021d9419efd0071684647d3 /ansible.spec
parentFix FSF address in virt header. (diff)
downloadansible-9316a504c5d09519508ef7296c7c521534b00f87.tar.xz
ansible-9316a504c5d09519508ef7296c7c521534b00f87.zip
Fixup specfile
Diffstat (limited to 'ansible.spec')
-rw-r--r--ansible.spec26
1 files changed, 13 insertions, 13 deletions
diff --git a/ansible.spec b/ansible.spec
index 3ad6138a9f..d2a85a0c77 100644
--- a/ansible.spec
+++ b/ansible.spec
@@ -1,19 +1,20 @@
+%if 0%{?rhel} <= 5
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
+%endif
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: python-devel
+BuildRequires: python2-devel
Requires: python-paramiko
Requires: python-jinja2
@@ -24,16 +25,16 @@ executing commands, running "modules", or executing larger 'playbooks' that
can serve as a configuration management or deployment system.
%prep
-%setup -q -n %{name}-%{version}
+%setup -q
%build
-python setup.py build
+%{__python} setup.py build
%install
-python setup.py install -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
+%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
cp examples/hosts $RPM_BUILD_ROOT/etc/ansible/
-mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/
+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/
@@ -42,14 +43,13 @@ cp -v library/* $RPM_BUILD_ROOT/%{_datadir}/ansible/
rm -rf $RPM_BUILD_ROOT
%files
-%doc README.md PKG-INFO
%defattr(-,root,root)
-%{_mandir}/man1/*.gz
-%{python_sitelib}/*
+%{python_sitelib}/ansible*
%{_bindir}/ansible*
-%{_datadir}/ansible/*
-%config(noreplace) /etc/ansible/hosts
-%config(noreplace) %{_sysconfdir}/ansible/
+%{_datadir}/ansible
+%config(noreplace) %{_sysconfdir}/ansible/*
+%doc README.md PKG-INFO
+%doc %{_mandir}/man1/ansible*
%changelog