mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 20:13:59 -07:00
Move packaging related things out of the root directory:
Distutils MANIFEST.in, setup.py -> packaging/distutils/ directory.
This commit is contained in:
parent
4578b17213
commit
516df5f64f
4 changed files with 13 additions and 5 deletions
|
@ -2,6 +2,8 @@
|
|||
%{!?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
|
||||
%define _dusetup packaging/distutils/setup.py
|
||||
|
||||
|
||||
Name: ansible
|
||||
Release: 1%{?dist}
|
||||
|
@ -33,10 +35,10 @@ are transferred to managed machines automatically.
|
|||
%setup -q
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
%{__python} %{_dusetup} build
|
||||
|
||||
%install
|
||||
%{__python} setup.py install -O1 --root=$RPM_BUILD_ROOT
|
||||
%{__python} %{_dusetup} 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/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue