mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
Fixup specfile
This commit is contained in:
parent
c9ab5ebc6b
commit
9316a504c5
1 changed files with 13 additions and 13 deletions
26
ansible.spec
26
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())")}
|
%{!?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
|
Name: ansible
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Minimal SSH command and control
|
Summary: Minimal SSH command and control
|
||||||
Version: 0.0.2
|
Version: 0.0.2
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
Prefix: %{_prefix}
|
|
||||||
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
|
Source0: https://github.com/downloads/ansible/ansible/%{name}-%{version}.tar.gz
|
||||||
Url: http://ansible.github.com
|
Url: http://ansible.github.com
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: python-devel
|
BuildRequires: python2-devel
|
||||||
|
|
||||||
Requires: python-paramiko
|
Requires: python-paramiko
|
||||||
Requires: python-jinja2
|
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.
|
can serve as a configuration management or deployment system.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
python setup.py build
|
%{__python} setup.py build
|
||||||
|
|
||||||
%install
|
%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/
|
mkdir -p $RPM_BUILD_ROOT/etc/ansible/
|
||||||
cp examples/hosts $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/
|
cp -v docs/man/man1/*.1 $RPM_BUILD_ROOT/%{_mandir}/man1/
|
||||||
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
|
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/ansible
|
||||||
cp -v library/* $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
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.md PKG-INFO
|
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_mandir}/man1/*.gz
|
%{python_sitelib}/ansible*
|
||||||
%{python_sitelib}/*
|
|
||||||
%{_bindir}/ansible*
|
%{_bindir}/ansible*
|
||||||
%{_datadir}/ansible/*
|
%{_datadir}/ansible
|
||||||
%config(noreplace) /etc/ansible/hosts
|
%config(noreplace) %{_sysconfdir}/ansible/*
|
||||||
%config(noreplace) %{_sysconfdir}/ansible/
|
%doc README.md PKG-INFO
|
||||||
|
%doc %{_mandir}/man1/ansible*
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue