Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package presage for openSUSE:Factory checked in at 2024-12-08 11:36:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/presage (Old) and /work/SRC/openSUSE:Factory/.presage.new.21547 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "presage" Sun Dec 8 11:36:54 2024 rev:27 rq:1228789 version:0.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/presage/presage.changes 2024-03-15 20:27:37.796012538 +0100 +++ /work/SRC/openSUSE:Factory/.presage.new.21547/presage.changes 2024-12-08 11:38:02.663899745 +0100 @@ -1,0 +2,6 @@ +Fri Dec 6 07:54:09 UTC 2024 - Dominique Leuenberger <[email protected]> + +- Add presage-setuptools.patch: Fix installation of python bindings + with setuptools 76. + +------------------------------------------------------------------- New: ---- presage-setuptools.patch BETA DEBUG BEGIN: New: - Add presage-setuptools.patch: Fix installation of python bindings with setuptools 76. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ presage.spec ++++++ --- /var/tmp/diff_new_pack.97MtYm/_old 2024-12-08 11:38:03.251924174 +0100 +++ /var/tmp/diff_new_pack.97MtYm/_new 2024-12-08 11:38:03.251924174 +0100 @@ -50,6 +50,8 @@ Patch8: presage-0.9.1-python3.patch # PATCH-FIX-UPSTREAM fix ISO C++17 does not allow dynamic exception specifications Patch9: presage-0.9.1-gcc11.patch +# PATCH-FIX-UPSTREAM Fix installation of python bindings with recent setuptools +Patch10: presage-setuptools.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: fdupes ++++++ presage-setuptools.patch ++++++ Index: presage-0.9.1/apps/python/Makefile.am =================================================================== --- presage-0.9.1.orig/apps/python/Makefile.am +++ presage-0.9.1/apps/python/Makefile.am @@ -70,7 +70,7 @@ install-exec-local: $(PYTHON) setup.py install --prefix="$$NATIVE_WINDOWS_PREFIX" \ ;; \ *) \ - $(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix) \ + $(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(prefix) \ ;; \ esac; Index: presage-0.9.1/bindings/python/Makefile.am =================================================================== --- presage-0.9.1.orig/bindings/python/Makefile.am +++ presage-0.9.1/bindings/python/Makefile.am @@ -60,7 +60,7 @@ install-exec-local: $(PYTHON) setup.py install --prefix="$$NATIVE_WINDOWS_PREFIX" \ ;; \ *) \ - $(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix) \ + $(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(prefix) \ ;; \ esac;
