mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
* gnu/packages/gnome.scm (showtime): New variable. * gnu/packages/patches/showtime-python-3.11-compat.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. Change-Id: I49d7e852df8cff649b8b9fd23b89422161c99c68
19 lines
951 B
Diff
19 lines
951 B
Diff
Temporary patch to undo some Python 3.12 specific syntax until we have 3.12+ in Guix.
|
|
|
|
diff -u /tmp/guix-build-showtime-50.0.drv-0/source/showtime/widgets/window.py.old /tmp/guix-build-showtime-50.0.drv-0/source/showtime/widgets/window.py
|
|
--- a/showtime/widgets/window.py.old 2026-03-15 22:57:05.619357847 +0900
|
|
+++ b/showtime/widgets/window.py 2026-03-15 22:56:47.823332531 +0900
|
|
@@ -1057,7 +1057,5 @@
|
|
return
|
|
|
|
Gtk.FileDialog(
|
|
- initial_name=f"{
|
|
- get_title(self.play.get_media_info()) or _('Unknown Title')
|
|
- } {nanoseconds_to_timestamp(self.play.get_position(), hours=True)}.png"
|
|
+ initial_name=f"{get_title(self.play.get_media_info()) or _('Unknown Title')} {nanoseconds_to_timestamp(self.play.get_position(), hours=True)}.png"
|
|
).save(self, None, self._save_screenshot, texture.save_to_png_bytes())
|
|
|
|
def _save_screenshot(
|
|
|
|
Diff finished. Sun Mar 15 22:57:13 2026
|