Thank you Oleg! help-debbugs@gnu.org (GNU bug Tracking System) writes: > Your bug report > > #77953: [PATCH] gnu: kitty: Fix build for Python update. > > which was filed against the guix-patches package, has been closed. > > The explanation is attached below, along with your original report. > If you require more details, please reply to 77953@debbugs.gnu.org. > > -- > 77953: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=77953 > GNU Bug Tracking System > Contact help-debbugs@gnu.org with problems > > From: Sharlatan Hellseher > Subject: [PATCH] gnu: kitty: Fix build for Python update. > To: 77953-done@debbugs.gnu.org > Date: Mon, 21 Apr 2025 15:28:53 +0100 (3 hours, 36 minutes, 45 seconds ago) > > > I've adjusted commit message and pushed to master as > bca0016e9b785bba3947a9e9ec5aa88c289ec521. > > -- > Oleg > > ---------- > > From: Roman Scherer > Subject: [PATCH] gnu: kitty: Fix build for Python update. > To: guix-patches@gnu.org > Cc: Roman Scherer , sharlatanus@gmail.com > Date: Mon, 21 Apr 2025 12:37:34 +0200 > Date: Mon, 21 Apr 2025 12:37:34 +0200 (7 hours, 28 minutes, 4 seconds ago) > > * gnu/packages/terminals.scm (kitty): Fix build for Python update. > > Change-Id: I4324526936c2a104b3c2f85f75344f54813c089a > --- > gnu/packages/terminals.scm | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > > diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm > index 3931811024..2ca6c791e3 100644 > --- a/gnu/packages/terminals.scm > +++ b/gnu/packages/terminals.scm > @@ -1338,6 +1338,8 @@ (define-public kitty > (delete 'configure) ;no configure script > (replace 'build > (lambda* (#:key inputs #:allow-other-keys) > + ;; Don't fail on deprecation warnings from GCC > + (setenv "CFLAGS" "-Wno-error=deprecated-declarations") > ;; The "kitty" sub-directory must be writable prior to > ;; configuration (e.g., un-setting updates). > (for-each make-file-writable (find-files "kitty")) > @@ -1355,6 +1357,31 @@ (define-public kitty > ;; tests. > (setenv "PATH" (string-append "linux-package/bin:" > (getenv "PATH"))) > + ;; Don't fail on deprecation warnings from Python > + (substitute* "test.py" > + (("'error'") "'ignore'")) > + ;; Fails: No writable cache directories > + (substitute* "kitty_tests/fonts.py" > + ((" def test_box_drawing") > + (string-append > + " @unittest.skip('No writable cache directories')\n" > + " def test_box_drawing"))) > + ;; Fails: Permission denied > + (substitute* "kitty_tests/parser.py" > + (("import time") > + "import time\nimport unittest\n") > + ((" def test_graphics_command") > + (string-append > + " @unittest.skip('Permission denied')\n" > + " def test_graphics_command"))) > + ;; TypeError: expected bytes, str found > + (substitute* "kitty_tests/tui.py" > + (("from . import BaseTest") > + "from . import BaseTest\nimport unittest\n") > + ((" def test_multiprocessing_spawn") > + (string-append > + " @unittest.skip('TypeError: expected bytes, str found')\n" > + " def test_multiprocessing_spawn"))) > (invoke "python3" "test.py")))) > (add-before 'install 'rm-pycache > ;; created python cache __pycache__ are non deterministic > > base-commit: f9a7f2c8afdf33a36bd36177c0aa98d35331bf26