guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: powertabeditor: Update to 2.0.0-alpha19.


From: guix-commits
Subject: branch master updated: gnu: powertabeditor: Update to 2.0.0-alpha19.
Date: Sun, 07 Apr 2024 16:01:51 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 95d5795a99 gnu: powertabeditor: Update to 2.0.0-alpha19.
95d5795a99 is described below

commit 95d5795a99c585c6ff169df7fec87c0dfcb7f865
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Apr 7 21:57:47 2024 +0200

    gnu: powertabeditor: Update to 2.0.0-alpha19.
    
    * gnu/packages/music.scm (powertabeditor): Update to 2.0.0-alpha19.
    [arguments]: Remove 'fix-pugixml-detection phase; respect #:tests? setting 
in
    custom 'check phase.
    [inputs]: Drop labels; add nlohmann-json and qttools-5; remove rapidjson.
    [home-page]: Add missing letter.
    
    Change-Id: Idf8617f3d39dd97ba59753fc7294515032f1656d
---
 gnu/packages/music.scm | 39 +++++++++++++++++++--------------------
 1 file changed, 19 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 0a14a11b50..a4feada47d 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2187,7 +2187,7 @@ your own lessons.")
 (define-public powertabeditor
   (package
     (name "powertabeditor")
-    (version "2.0.0-alpha14")
+    (version "2.0.0-alpha19")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2196,30 +2196,29 @@ your own lessons.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1wsvni2aa9h2bpndlic7ckch4n600ahwm56n521y5vxivwjx3jmj"))))
+                "1fbrfw1ky57nms47pcfdrrwpa2jmgc8vgc68sz96wkvs49zzm5d1"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'check (lambda _ (invoke "bin/pte_tests")))
-         (add-after 'unpack 'fix-pugixml-detection
-           (lambda _
-             (substitute* "cmake/third_party/pugixml.cmake"
-               (("add_library") "#add_library"))
-             #t)))))
+     (list
+      #:phases
+      '(modify-phases %standard-phases
+         (replace 'check
+           (lambda* (#:key tests? #:allow-other-keys)
+             (when tests? (invoke "bin/pte_tests")))))))
     (inputs
-     `(("alsa-lib" ,alsa-lib)
-       ("boost" ,boost)
-       ("minizip" ,minizip)
-       ("pugixml" ,pugixml)
-       ("qtbase" ,qtbase-5)
-       ("rapidjson" ,rapidjson)
-       ("rtmidi" ,rtmidi)
-       ("timidity" ,timidity++)
-       ("zlib" ,zlib)))
+     (list alsa-lib
+           boost
+           minizip
+           nlohmann-json
+           pugixml
+           qtbase-5
+           qttools-5 ;for Qt5LinguistTools
+           rtmidi
+           timidity++
+           zlib))
     (native-inputs
      (list doctest pkg-config))
-    (home-page "https://github.com/powertab/powertabedito";)
+    (home-page "https://github.com/powertab/powertabeditor";)
     (synopsis "Guitar tablature editor")
     (description
      "Power Tab Editor 2.0 is the successor to the famous original Power Tab



reply via email to

[Prev in Thread] Current Thread [Next in Thread]