Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package solfege for openSUSE:Factory checked in at 2024-01-12 23:47:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/solfege (Old) and /work/SRC/openSUSE:Factory/.solfege.new.21961 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "solfege" Fri Jan 12 23:47:04 2024 rev:47 rq:1138356 version:3.23.4 Changes: -------- --- /work/SRC/openSUSE:Factory/solfege/solfege.changes 2022-03-30 20:36:43.405355654 +0200 +++ /work/SRC/openSUSE:Factory/.solfege.new.21961/solfege.changes 2024-01-12 23:47:17.158680767 +0100 @@ -1,0 +2,6 @@ +Mon Jan 8 07:59:12 UTC 2024 - Fabio Pesari <fpes...@tuxfamily.org> + +- Added solfege-python-fixtryorder.patch to fix startup error when + _tryorder is None + +------------------------------------------------------------------- New: ---- solfege-python-fixtryorder.patch BETA DEBUG BEGIN: New: - Added solfege-python-fixtryorder.patch to fix startup error when _tryorder is None BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ solfege.spec ++++++ --- /var/tmp/diff_new_pack.MCBo0s/_old 2024-01-12 23:47:17.766703021 +0100 +++ /var/tmp/diff_new_pack.MCBo0s/_new 2024-01-12 23:47:17.770703167 +0100 @@ -46,6 +46,7 @@ Patch2: solfege-nogenreadmeetc.patch # PATCH-FIX-UPSTREAM - sent by mail to tca@gnu - is upstream orphaned? Patch3: reproducible.patch +Patch4: solfege-python-fixtryorder.patch Requires: lilypond-fonts-common >= 2.20 Requires: python3-gobject-Gdk Requires: timidity @@ -66,6 +67,7 @@ %patch1 %patch2 %patch3 -p1 +%patch4 -p1 for i in `grep -rl "/usr/bin/env python "`;do $(chmod 0755 ${i} ; sed -i '1s/^#!.*/#!\/usr\/bin\/python3 /' ${i}) ;done for i in `grep -rl "!/usr/bin/python"`;do $(chmod 0755 ${i} ; sed -i '1s/^#!.*/#!\/usr\/bin\/python3/' ${i}) ;done ++++++ solfege-python-fixtryorder.patch ++++++ diff -wru solfege-3.23.4/solfege/mainwin.py solfege-3.23.4.fix/solfege/mainwin.py --- solfege-3.23.4/solfege/mainwin.py 2016-06-24 22:18:29.000000000 +0200 +++ solfege-3.23.4.fix/solfege/mainwin.py 2024-01-08 08:57:21.338221981 +0100 @@ -28,7 +28,7 @@ i = webbrowser._tryorder.index("x-www-browser") webbrowser._tryorder.append(webbrowser._tryorder[i]) del webbrowser._tryorder[i] -except ValueError: +except (AttributeError, ValueError): pass import sys