Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-yarl for openSUSE:Factory checked in at 2023-12-13 18:34:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-yarl (Old) and /work/SRC/openSUSE:Factory/.python-yarl.new.25432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-yarl" Wed Dec 13 18:34:10 2023 rev:27 rq:1132690 version:1.9.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-yarl/python-yarl.changes 2023-11-28 22:17:32.077658357 +0100 +++ /work/SRC/openSUSE:Factory/.python-yarl.new.25432/python-yarl.changes 2023-12-13 18:34:11.884709617 +0100 @@ -1,0 +2,6 @@ +Tue Dec 12 03:44:58 UTC 2023 - Bernhard Wiedemann <[email protected]> + +- Add reproducible.patch to not add a random tmp path + into the package (boo#1062303) + +------------------------------------------------------------------- New: ---- reproducible.patch BETA DEBUG BEGIN: New: - Add reproducible.patch to not add a random tmp path into the package (boo#1062303) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-yarl.spec ++++++ --- /var/tmp/diff_new_pack.H1uIaY/_old 2023-12-13 18:34:13.924784995 +0100 +++ /var/tmp/diff_new_pack.H1uIaY/_new 2023-12-13 18:34:13.940785586 +0100 @@ -24,6 +24,7 @@ License: Apache-2.0 URL: https://github.com/aio-libs/yarl/ Source: https://files.pythonhosted.org/packages/source/y/yarl/yarl-%{version}.tar.gz +Patch0: reproducible.patch BuildRequires: %{python_module Cython} BuildRequires: %{python_module devel >= 3.7} BuildRequires: %{python_module expandvars} ++++++ reproducible.patch ++++++ Date: 2023-12-12 Author: Bernhard M. Wiedemann <bwiedemann suse de> Make package build reproducible For this we avoid the use of a random tmp path that gets embedded into /usr/lib64/python3.10/site-packages/yarl/_quoting_c.cpython-310-x86_64-linux-gnu.so diff --git a/packaging/pep517_backend/_backend.py b/packaging/pep517_backend/_backend.py index 9360598..8731ed1 100644 --- a/packaging/pep517_backend/_backend.py +++ b/packaging/pep517_backend/_backend.py @@ -323,7 +323,7 @@ def build_wheel( """ with maybe_prebuild_c_extensions( - build_inplace=False, + build_inplace=True, config_settings=config_settings, ): return _setuptools_build_wheel(
