guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 3d29ee3ae8782f932fa0422cebe1d5f232a88531
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Nov 1 09:13:25 2025 +0000

    gnu: evtest-qt: Update to 0.2.0-0.6fb1b84.
    
    * gnu/packages/games.scm (evtest-qt): Update to
    6fb1b845ea3b9963bced1847f76c45d85a47beec commit.
    [inputs]: Remove qtbase-5 and qtwayland-5; add qtbase and qtwayland.
    
    Change-Id: If29b2824c86b4a166356ac212c210909e01a70ad
---
 gnu/packages/games.scm | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index a6cfb7c9be..7a46a04336 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -10866,20 +10866,25 @@ simulator.")
 (define-public evtest-qt
   (package
     (name "evtest-qt")
-    (version "0.2.0")
+    ;; 0.2.0 was release in 2018, use the latest commit compatible with Qt6.
+    (properties '((commit . "6fb1b845ea3b9963bced1847f76c45d85a47beec")
+                  (revision . "0")))
+    (version (git-version "0.2.0"
+                          (assoc-ref properties 'revision)
+                          (assoc-ref properties 'commit)))
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/Grumbel/evtest-qt";)
-                    (commit (string-append "v" version))))
+                     (url "https://github.com/Grumbel/evtest-qt";)
+                     (commit (assoc-ref properties 'commit))))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1wfzkgq81764qzxgk0y5vvpxcrb3icvrr4dd4mj8njrqgbwmn0mw"))))
+                "0crpcf4rdghjza9k0q8v75kk8w732qi19hy3s32hpb6shdhqanka"))))
     (build-system qt-build-system)
     (arguments (list #:tests? #f))      ;no test suite
     (native-inputs (list tinycmmc))
-    (inputs (list qtbase-5 qtwayland-5))
+    (inputs (list qtbase qtwayland))
     (home-page "https://github.com/Grumbel/evtest-qt";)
     (synopsis "Evdev Joystick Tester")
     (description "@command{evtest-qt} is a simple joystick tester for devices

Reply via email to