Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pyparsing for
openSUSE:Factory checked in at 2022-09-17 20:08:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyparsing (Old)
and /work/SRC/openSUSE:Factory/.python-pyparsing.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pyparsing"
Sat Sep 17 20:08:25 2022 rev:43 rq:1003985 version:3.0.9
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyparsing/python-pyparsing.changes
2022-08-08 08:45:13.738458789 +0200
+++
/work/SRC/openSUSE:Factory/.python-pyparsing.new.2083/python-pyparsing.changes
2022-09-17 20:08:32.524845681 +0200
@@ -1,0 +2,6 @@
+Thu Sep 15 22:00:29 UTC 2022 - Ben Greiner <[email protected]>
+
+- Fix incorrect usage of non-bundled pip revealed by
+ python-rpm-macros update.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pyparsing.spec ++++++
--- /var/tmp/diff_new_pack.k7sukA/_old 2022-09-17 20:08:32.996847043 +0200
+++ /var/tmp/diff_new_pack.k7sukA/_new 2022-09-17 20:08:33.004847066 +0200
@@ -84,16 +84,25 @@
%if !%{with test}
%build
-%{python_expand # use pythonXX-base bundled pip as PEP517 frontend for
flit-core
+%{python_expand # use pythonXX-base bundled pip as PEP517 frontend for
flit-core for every flavor to install
mkdir -p build
$python -m venv build/buildenv --system-site-packages
}
+# building pure wheel once is enough
export PATH=$PWD/build/buildenv/bin:$PATH
-%pyproject_wheel
+python -mpip wheel --verbose --progress-bar off \
+ --disable-pip-version-check --use-pep517 --no-build-isolation \
+ --no-deps --wheel-dir ./dist .
%install
export PATH=$PWD/build/buildenv/bin:$PATH
-%pyproject_install
+%{python_expand # install into every active flavored sitelib
+python -mpip install \
+ --verbose --progress-bar off --disable-pip-version-check \
+ --root %{buildroot} \
+ --ignore-installed --no-deps \
+ --no-index --find-links ./dist pyparsing==%{version}
+}
# fix venv install path
mv %{buildroot}/$PWD/build/buildenv %{buildroot}%{_prefix}
rm -r %{buildroot}/home