2022-04-29 09:40:15 +00:00
# This is a directory where wheels are stored and installed from, absolute
2021-05-27 19:28:01 +00:00
%_pyproject_wheeldir %{_builddir}%{?buildsubdir:/%{buildsubdir}}/pyproject-wheeldir
2020-10-14 23:43:13 +00:00
# This is a directory used as TMPDIR, where pip copies sources to and builds from, relative to PWD
# For proper debugsource packages, we create TMPDIR within PWD
# See https://github.com/pypa/pip/issues/7555#issuecomment-595180864
#
# This will be used in debugsource package paths (applies to extension modules only)
# NB: pytest collects tests from here if not hidden
# https://docs.pytest.org/en/latest/reference.html#confval-norecursedirs
2021-05-27 19:28:01 +00:00
%_pyproject_builddir %{_builddir}%{?buildsubdir:/%{buildsubdir}}/.pyproject-builddir
2020-10-14 23:43:13 +00:00
2022-03-22 17:22:11 +00:00
# We prefix all created files with this value to make them unique
# Ideally, we would put them into %%{buildsubdir}, but that value changes during the spec
# The used value is similar to the one used to define the default %%buildroot
%_pyproject_files_prefix %{name}-%{version}-%{release}.%{_arch}
%pyproject_files %{_builddir}/%{_pyproject_files_prefix}-pyproject-files
%_pyproject_modules %{_builddir}/%{_pyproject_files_prefix}-pyproject-modules
%_pyproject_ghost_distinfo %{_builddir}/%{_pyproject_files_prefix}-pyproject-ghost-distinfo
%_pyproject_record %{_builddir}/%{_pyproject_files_prefix}-pyproject-record
2020-10-14 23:43:13 +00:00
2021-06-28 12:07:29 +00:00
# Avoid leaking %%{_pyproject_builddir} to pytest collection
# https://bugzilla.redhat.com/show_bug.cgi?id=1935212
# The value is read and used by the %%pytest and %%tox macros:
%_set_pytest_addopts %global __pytest_addopts --ignore=%{_pyproject_builddir}
2020-10-14 23:43:13 +00:00
%pyproject_wheel() %{expand:\\\
2021-06-28 12:07:29 +00:00
%_set_pytest_addopts
2021-05-27 19:28:01 +00:00
mkdir -p "%{_pyproject_builddir}"
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}" TMPDIR="%{_pyproject_builddir}" \\\
2022-04-29 10:42:37 +00:00
%{__python3} -Bs %{_rpmconfigdir}/redhat/pyproject_wheel.py %{_pyproject_wheeldir}
2020-10-14 23:43:13 +00:00
}
2021-12-08 10:07:48 +00:00
%pyproject_build_lib %{expand:\\\
$(
pyproject_build_lib=()
2022-06-16 12:00:09 +00:00
if [ -d build/lib.%{python3_platform}-cpython-%{python3_version_nodots} ]; then
pyproject_build_lib+=( "${PWD}/build/lib.%{python3_platform}-cpython-%{python3_version_nodots}" )
fi
2021-12-08 10:07:48 +00:00
if [ -d build/lib.%{python3_platform}-%{python3_version} ]; then
pyproject_build_lib+=( "${PWD}/build/lib.%{python3_platform}-%{python3_version}" )
fi
if [ -d build/lib ]; then
pyproject_build_lib+=( "${PWD}/build/lib" )
fi
for directory in $(find "%{_pyproject_builddir}" -type d -wholename "%{_pyproject_builddir}/pip-req-build-*/build/lib.%{python3_platform}-%{python3_version}" 2>/dev/null); do
pyproject_build_lib+=( "${directory}" )
done
for directory in $(find "%{_pyproject_builddir}" -type d -wholename "%{_pyproject_builddir}/pip-req-build-*/build/lib" 2>/dev/null); do
pyproject_build_lib+=( "${directory}" )
done
echo $(IFS=:; echo "${pyproject_build_lib[*]}")
)}
2020-10-14 23:43:13 +00:00
%pyproject_install() %{expand:\\\
specifier=$(ls %{_pyproject_wheeldir}/*.whl | xargs basename --multiple | sed -E 's/([^-]+)-([^-]+)-.+\\\.whl/\\\1==\\\2/')
2022-06-08 12:11:27 +00:00
TMPDIR="%{_pyproject_builddir}" %{__python3} -m pip install --root %{buildroot} --prefix %{_prefix} --no-deps --disable-pip-version-check --progress-bar off --verbose --ignore-installed --no-warn-script-location --no-index --no-cache-dir --find-links %{_pyproject_wheeldir} $specifier
2020-10-14 23:43:13 +00:00
if [ -d %{buildroot}%{_bindir} ]; then
2021-02-04 13:32:12 +00:00
%py3_shebang_fix %{buildroot}%{_bindir}/*
2020-10-14 23:43:13 +00:00
rm -rfv %{buildroot}%{_bindir}/__pycache__
fi
2021-07-23 08:01:13 +00:00
rm -f %{_pyproject_ghost_distinfo}
2021-02-04 13:32:12 +00:00
site_dirs=()
# Process %%{python3_sitelib} if exists
2020-10-14 23:43:13 +00:00
if [ -d %{buildroot}%{python3_sitelib} ]; then
2021-02-04 13:32:12 +00:00
site_dirs+=( "%{python3_sitelib}" )
2020-10-14 23:43:13 +00:00
fi
2021-02-04 13:32:12 +00:00
# Process %%{python3_sitearch} if exists and does not equal to %%{python3_sitelib}
2020-10-14 23:43:13 +00:00
if [ %{buildroot}%{python3_sitearch} != %{buildroot}%{python3_sitelib} ] && [ -d %{buildroot}%{python3_sitearch} ]; then
2021-02-04 13:32:12 +00:00
site_dirs+=( "%{python3_sitearch}" )
fi
# Process all *.dist-info dirs in sitelib/sitearch
for site_dir in ${site_dirs[@]}; do
for distinfo in %{buildroot}$site_dir/*.dist-info; do
2021-07-23 08:01:13 +00:00
echo "%ghost ${distinfo#%{buildroot}}" >> %{_pyproject_ghost_distinfo}
2020-10-14 23:43:13 +00:00
sed -i 's/pip/rpm/' ${distinfo}/INSTALLER
2021-02-04 13:32:12 +00:00
PYTHONPATH=%{_rpmconfigdir}/redhat \\
%{__python3} -B %{_rpmconfigdir}/redhat/pyproject_preprocess_record.py \\
2021-07-23 08:01:13 +00:00
--buildroot %{buildroot} --record ${distinfo}/RECORD --output %{_pyproject_record}
2021-02-04 13:32:12 +00:00
rm -fv ${distinfo}/RECORD
rm -fv ${distinfo}/REQUESTED
2020-10-14 23:43:13 +00:00
done
2021-02-04 13:32:12 +00:00
done
2021-07-23 08:01:13 +00:00
lines=$(wc -l %{_pyproject_ghost_distinfo} | cut -f1 -d" ")
2020-10-14 23:43:13 +00:00
if [ $lines -ne 1 ]; then
2021-05-27 18:42:37 +00:00
echo -e "\\n\\nWARNING: %%%%pyproject_extras_subpkg won't work without explicit -i or -F, found $lines dist-info directories.\\n\\n" >&2
2021-07-23 08:01:13 +00:00
rm %{_pyproject_ghost_distinfo} # any attempt to use this will fail
2020-10-14 23:43:13 +00:00
fi
}
# Note: the three times nested questionmarked -i -f -F pattern means: If none of those options was used -- in that case, we inject our own -f
2021-07-23 08:01:13 +00:00
%pyproject_extras_subpkg(n:i:f:F) %{expand:%{?python_extras_subpkg:%{python_extras_subpkg%{?!-i:%{?!-f:%{?!-F: -f %{_pyproject_ghost_distinfo}}}} %**}}}
2020-10-14 23:43:13 +00:00
%pyproject_save_files() %{expand:\\\
%{__python3} %{_rpmconfigdir}/redhat/pyproject_save_files.py \\
2021-10-27 09:28:45 +00:00
--output-files "%{pyproject_files}" \\
--output-modules "%{_pyproject_modules}" \\
2020-10-14 23:43:13 +00:00
--buildroot "%{buildroot}" \\
--sitelib "%{python3_sitelib}" \\
--sitearch "%{python3_sitearch}" \\
--python-version "%{python3_version}" \\
2021-07-23 08:01:13 +00:00
--pyproject-record "%{_pyproject_record}" \\
2022-01-17 16:20:54 +00:00
--prefix "%{_prefix}" \\
2020-10-14 23:43:13 +00:00
%{*}
}
2021-10-27 09:28:45 +00:00
# -t - Process only top-level modules
# -e - Exclude the module names matching given glob, may be used repeatedly
%pyproject_check_import(e:t) %{expand:\\\
if [ ! -f "%{_pyproject_modules}" ]; then
echo 'ERROR: %%%%pyproject_check_import only works when %%%%pyproject_save_files is used' >&2
exit 1
fi
%py3_check_import -f "%{_pyproject_modules}" %{?**}
}
2020-10-14 23:43:13 +00:00
%default_toxenv py%{python3_version_nodots}
%toxenv %{default_toxenv}
2023-01-06 12:41:07 +00:00
# Note: Keep the options in sync with this macro from macros.aaa-pyproject-srpm
2022-04-29 10:42:37 +00:00
%pyproject_buildrequires(rRxtNwe:) %{expand:\\\
%_set_pytest_addopts
# The _auto_set_build_flags feature does not do this in %%generate_buildrequires section,
# but we want to get an environment consistent with %%build:
%{?_auto_set_build_flags:%set_build_flags}
2022-06-17 09:03:18 +00:00
# The default flags expect the package note file to exist
# see https://bugzilla.redhat.com/show_bug.cgi?id=2097535
%{?_package_note_flags:%_generate_package_note_file}
2022-04-29 10:42:37 +00:00
%{-R:
%{-r:%{error:The -R and -r options are mutually exclusive}}
%{-w:%{error:The -R and -w options are mutually exclusive}}
}
2021-07-08 11:08:04 +00:00
%{-N:
%{-r:%{error:The -N and -r options are mutually exclusive}}
%{-x:%{error:The -N and -x options are mutually exclusive}}
%{-e:%{error:The -N and -e options are mutually exclusive}}
%{-t:%{error:The -N and -t options are mutually exclusive}}
2022-04-29 10:42:37 +00:00
%{-w:%{error:The -N and -w options are mutually exclusive}}
2021-07-08 11:08:04 +00:00
}
2021-02-04 13:32:12 +00:00
%{-e:%{expand:%global toxenv %(%{__python3} -s %{_rpmconfigdir}/redhat/pyproject_construct_toxenv.py %{?**})}}
2023-01-06 12:41:07 +00:00
echo 'pyproject-rpm-macros' # first stdout line matches the implementation in macros.aaa-pyproject-srpm
2020-10-14 23:43:13 +00:00
echo 'python%{python3_pkgversion}-devel'
echo 'python%{python3_pkgversion}dist(pip) >= 19'
echo 'python%{python3_pkgversion}dist(packaging)'
2021-07-08 11:08:04 +00:00
%{!-N:if [ -f pyproject.toml ]; then
2022-06-02 09:34:14 +00:00
%["%{python3_pkgversion}" == "3"
? "echo '(python%{python3_pkgversion}dist(toml) if python%{python3_pkgversion}-devel < 3.11)'"
: "%[v"%{python3_pkgversion}" < v"3.11"
? "echo 'python%{python3_pkgversion}dist(toml)'"
: "true # will use tomllib, echo nothing"
]"
]
2021-07-16 22:36:57 +00:00
elif [ -f setup.py ]; then
2021-02-04 13:32:12 +00:00
# Note: If the default requirements change, also change them in the script!
echo 'python%{python3_pkgversion}dist(setuptools) >= 40.8'
echo 'python%{python3_pkgversion}dist(wheel)'
2021-07-16 22:36:57 +00:00
else
echo 'ERROR: Neither pyproject.toml nor setup.py found, consider using %%%%pyproject_buildrequires -N <requirements-file> if this is not a Python package.' >&2
exit 1
2021-07-08 11:08:04 +00:00
fi}
2020-10-14 23:43:13 +00:00
# setuptools assumes no pre-existing dist-info
rm -rfv *.dist-info/ >&2
if [ -f %{__python3} ]; then
2022-04-29 10:42:37 +00:00
mkdir -p "%{_pyproject_builddir}"
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}" TMPDIR="%{_pyproject_builddir}" \\\
RPM_TOXENV="%{toxenv}" HOSTNAME="rpmbuild" %{__python3} -Bs %{_rpmconfigdir}/redhat/pyproject_buildrequires.py %{?!_python_no_extras_requires:--generate-extras} --python3_pkgversion %{python3_pkgversion} --wheeldir %{_pyproject_wheeldir} %{?**}
2020-10-14 23:43:13 +00:00
fi
2023-02-13 15:16:58 +00:00
# Incomplete .dist-info dir might confuse importlib.metadata
rm -rfv *.dist-info/ >&2
2020-10-14 23:43:13 +00:00
}
%tox(e:) %{expand:\\\
TOX_TESTENV_PASSENV="${TOX_TESTENV_PASSENV:-*}" \\
2022-11-28 15:29:34 +00:00
%{?py3_test_envvars}%{?!py3_test_envvars:PYTHONDONTWRITEBYTECODE=1 \\
2020-10-14 23:43:13 +00:00
PATH="%{buildroot}%{_bindir}:$PATH" \\
PYTHONPATH="${PYTHONPATH:-%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}}" \\
2022-11-28 15:29:34 +00:00
%{?__pytest_addopts:PYTEST_ADDOPTS="${PYTEST_ADDOPTS:-} %{__pytest_addopts}"}} \\
2020-10-14 23:43:13 +00:00
HOSTNAME="rpmbuild" \\
%{__python3} -m tox --current-env -q --recreate -e "%{-e:%{-e*}}%{!-e:%{toxenv}}" %{?*}
}