2024-01-05 16:58:29 +01:00
|
|
|
%__python3 /usr/bin/python3
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# python(...) configuration.
|
|
|
|
#
|
|
|
|
# Path to scripts to autogenerate python package dependencies,
|
|
|
|
#
|
|
|
|
# Note: Used iff _use_internal_dependency_generator is non-zero. The
|
|
|
|
# helpers are also used by %{_usrlibrpm}/rpmdeps {--provides|--requires}.
|
|
|
|
%__python3_provides %{_usrlibrpm}/pythondeps3.sh --provides
|
|
|
|
%__python3_requires %{_usrlibrpm}/pythondeps3.sh --requires
|
|
|
|
|
|
|
|
# Useful macros for building *.rpm python packages (for python > 1.6).
|
2024-01-05 16:58:30 +01:00
|
|
|
|
|
|
|
%python3_sitearch %(%{__python3} -c "from sysconfig import get_paths; print(get_paths()['platlib'])")
|
|
|
|
%python3_sitelib %(%{__python3} -c "from sysconfig import get_paths; print(get_paths()['purelib'])")
|
|
|
|
%python3_inc %(%{__python3} -c "from sysconfig import get_paths; print(get_paths()['include'])")
|
2024-01-05 16:58:32 +01:00
|
|
|
%python3_version %(%{__python3} -c "import sys; print(sys.version[0:4])")
|
2024-01-05 16:58:29 +01:00
|
|
|
|
|
|
|
%py3_compile(O) \
|
|
|
|
find %1 -name '*.pyc' -name '*.pyo' -exec rm -f {} \\; \
|
|
|
|
%{__python3} %{?O:-O} -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 \
|
|
|
|
|
|
|
|
%py3_requires(d) \
|
|
|
|
%define maxver %(%{__python3} -c "import sys; a,b=sys.version_info[:2]; print('%%d.%%d'%%(a,b+1))" 2>/dev/null || echo PYTHON-NOT-FOUND) \
|
|
|
|
BuildRequires: python3, libpython3-devel \
|
2024-01-05 16:58:29 +01:00
|
|
|
Requires(pre): python3 >= %{python3_version}, python3 < %{maxver}
|