pyproject-rpm-macros/macros.pyproject

34 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-07-02 10:41:04 +00:00
%pyproject_wheel() %{expand:\\\
2019-07-02 14:53:05 +00:00
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS}}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}" \\\
%{__python3} -m pip wheel --no-deps --use-pep517 --no-build-isolation --disable-pip-version-check --progress-bar off --verbose .
2019-07-02 10:41:04 +00:00
}
%pyproject_install() %{expand:\\\
%{__python3} -m pip install --root %{buildroot} --strip-file-prefix %{buildroot} --no-deps --disable-pip-version-check --progress-bar off --verbose --ignore-installed --no-warn-script-location ./*.whl
2019-07-02 14:53:05 +00:00
if [ -d %{buildroot}%{_bindir} ]; then
pathfix.py -pni "%{__python3} %{py3_shbang_opts}" %{buildroot}%{_bindir}/*
2019-07-02 10:41:04 +00:00
fi
2019-07-02 14:53:05 +00:00
if [ -d %{buildroot}%{python3_sitelib} ]; then
sed -i 's/pip/rpm/' %{buildroot}%{python3_sitelib}/*.dist-info/INSTALLER
fi
2019-07-02 14:53:05 +00:00
if [ -d %{buildroot}%{python3_sitearch} ]; then
sed -i 's/pip/rpm/' %{buildroot}%{python3_sitearch}/*.dist-info/INSTALLER
fi
}
%toxenv py%{python3_version_nodots}
%pyproject_buildrequires(rx:t:) %{expand:\\\
%{-t:%{expand:%global toxenv %{-t*}}}
2019-07-02 14:53:05 +00:00
echo 'python3-devel'
echo 'python3dist(packaging)'
echo 'python3dist(pip) >= 19'
echo 'python3dist(pytoml)'
# setuptools assumes no pre-existing dist-info
rm -rfv *.dist-info/
2019-07-02 14:53:05 +00:00
if [ -f %{__python3} ]; then
%{__python3} -I %{_rpmconfigdir}/redhat/pyproject_buildrequires.py %{?**}
2019-07-02 10:41:04 +00:00
fi
}