Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-python-multipart for openSUSE:Factory checked in at 2023-01-05 15:01:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-python-multipart (Old) and /work/SRC/openSUSE:Factory/.python-python-multipart.new.1563 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-python-multipart" Thu Jan 5 15:01:02 2023 rev:5 rq:1056062 version:0.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-python-multipart/python-python-multipart.changes 2022-12-13 18:55:35.151241223 +0100 +++ /work/SRC/openSUSE:Factory/.python-python-multipart.new.1563/python-python-multipart.changes 2023-01-05 15:01:24.185194296 +0100 @@ -1,0 +2,6 @@ +Wed Jan 4 21:17:38 UTC 2023 - Ben Greiner <c...@bnavigator.de> + +- Really don't require six +- Move to PEP517 build + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-python-multipart.spec ++++++ --- /var/tmp/diff_new_pack.YqzMIT/_old 2023-01-05 15:01:24.737197205 +0100 +++ /var/tmp/diff_new_pack.YqzMIT/_new 2023-01-05 15:01:24.745197247 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-python-multipart # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,15 +29,15 @@ Patch1: python-python-multipart-no-mock.patch # https://github.com/andrew-d/python-multipart/commit/c54ad6006bacc77623864ec8e5c96bfd32230e01 Patch2: python-python-multipart-no-six.patch +BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} BuildRequires: python-rpm-macros # SECTION test requirements -BuildRequires: %{python_module six >= 1.4.0} BuildRequires: %{python_module PyYAML} BuildRequires: %{python_module pytest} # /SECTION BuildRequires: fdupes -Requires: python-six >= 1.4.0 BuildArch: noarch %python_subpackages @@ -49,10 +49,10 @@ %autosetup -p1 -n python-multipart-%{version} %build -%python_build +%pyproject_wheel %install -%python_install +%pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %check @@ -62,6 +62,6 @@ %doc README.rst %license LICENSE.txt %{python_sitelib}/multipart -%{python_sitelib}/python_multipart-*.egg-info +%{python_sitelib}/python_multipart-%{version}.dist-info %changelog ++++++ python-python-multipart-no-six.patch ++++++ --- /var/tmp/diff_new_pack.YqzMIT/_old 2023-01-05 15:01:24.777197416 +0100 +++ /var/tmp/diff_new_pack.YqzMIT/_new 2023-01-05 15:01:24.781197437 +0100 @@ -125,4 +125,16 @@ Base64Error = binascii.Error -else: # pragma: no cover - Base64Error = TypeError +Index: python-multipart-0.0.5/setup.py +=================================================================== +--- python-multipart-0.0.5.orig/setup.py ++++ python-multipart-0.0.5/setup.py +@@ -25,7 +25,6 @@ setup(name='python-multipart', + platforms='any', + zip_safe=False, + install_requires=[ +- 'six>=1.4.0', + ], + tests_require=[ + 'pytest',