Add %python3_other_* counterparts for %python3_* macros in EPEL 7
This commit is contained in:
parent
06d80134eb
commit
8ef228123a
3 changed files with 45 additions and 3 deletions
38
macros.python3_other
Normal file
38
macros.python3_other
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
%__python3_other /usr/bin/python3.6
|
||||
|
||||
%python3_other_sitelib %(%{__python3_other} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")
|
||||
%python3_other_sitearch %(%{__python3_other} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")
|
||||
%python3_other_version %(%{__python3_other} -c "import sys; sys.stdout.write(sys.version[:3])")
|
||||
%python3_other_version_nodots %(%{__python3_other} -c "import sys; sys.stdout.write(sys.version[:3].replace('.',''))")
|
||||
|
||||
%py3_other_shbang_opts -s
|
||||
|
||||
# Use the slashes after expand so that the command starts on the same line as
|
||||
# the macro
|
||||
%py3_other_build() %{expand:\\\
|
||||
CFLAGS="%{optflags}" %{__python3_other} %{py_setup} %{?py_setup_args} build --executable="%{__python3_other} %{py3_other_shbang_opts}" %{?*}
|
||||
sleep 1
|
||||
}
|
||||
|
||||
%py3_other_build_egg() %{expand:\\\
|
||||
CFLAGS="%{optflags}" %{__python3_other} %{py_setup} %{?py_setup_args} bdist_egg %{?*}
|
||||
sleep 1
|
||||
}
|
||||
|
||||
%py3_other_build_wheel() %{expand:\\\
|
||||
CFLAGS="%{optflags}" %{__python3_other} %{py_setup} %{?py_setup_args} bdist_wheel %{?*}
|
||||
sleep 1
|
||||
}
|
||||
|
||||
%py3_other_install() %{expand:\\\
|
||||
CFLAGS="%{optflags}" %{__python3_other} %{py_setup} %{?py_setup_args} install -O1 --skip-build --root %{buildroot} %{?*}
|
||||
}
|
||||
|
||||
%py3_other_install_egg() %{expand:\\\
|
||||
mkdir -p %{buildroot}%{python3_other_sitelib}
|
||||
easy_install-%{python3_other_version} -m --prefix %{buildroot}%{_prefix} -Z dist/*-py%{python3_other_version}.egg %{?*}
|
||||
}
|
||||
|
||||
%py3_other_install_wheel() %{expand:\\\
|
||||
pip%{python3_other_version} install -I dist/%{1} --root %{buildroot} --strip-file-prefix %{buildroot} --no-deps
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue