all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: 61336@debbugs.gnu.org
Cc: rekado@elephly.net, Maxim Cournoyer <maxim.cournoyer@gmail.com>
Subject: [bug#61336] [PATCH 04/10] gnu: jack-keyboard: Update to 2.7.2.
Date: Mon,  6 Feb 2023 23:19:19 -0500	[thread overview]
Message-ID: <20230207041925.6292-5-maxim.cournoyer@gmail.com> (raw)
In-Reply-To: <20230207041925.6292-2-maxim.cournoyer@gmail.com>

* gnu/packages/music.scm (jack-keyboard): Update to 2.7.2.
[build-system]: Use cmake-build-system.
[arguments]: Set #:tests? to #f.  Adjust configure-flags for CMake.
[native-inputs]: Delete field.
[home-page]: Update URL.
---

 gnu/packages/music.scm | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 9c7bef516f..8c2f74613c 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -46,7 +46,7 @@
 ;;; Copyright © 2021 Thomas Albers Raviola <thomas@thomaslabs.org>
 ;;; Copyright © 2022, 2023 Sughosha <sughosha@disroot.org>
 ;;; Copyright © 2022 Remco van 't Veer <remco@remworks.net>
-;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Wamm K. D. <jaft.r@outlook.com>
 ;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
 ;;; Copyright © 2022 jgart <jgart@dismail.de>
@@ -3207,7 +3207,7 @@ (define-public libgig
 (define-public jack-keyboard
   (package
     (name "jack-keyboard")
-    (version "2.5")
+    (version "2.7.2")
     (source
      (origin
        (method url-fetch)
@@ -3215,13 +3215,21 @@ (define-public jack-keyboard
                            version "/jack-keyboard-" version ".tar.gz"))
        (sha256
         (base32
-         "0mzmg8aavybcfdlq2yd9d0vscqd6is5p6jzrgfpfm5j3xdcvh2s3"))))
-    (build-system gnu-build-system)
-    (inputs
-     (list jack-1 gtk+-2))
-    (native-inputs
-     (list pkg-config))
-    (home-page "http://jack-keyboard.sourceforge.net/")
+         "1z34ga1z6ivgxbp0afsfghz7rn6s8vc9fxnb9ini8mx0dackr5ar"))))
+    (build-system cmake-build-system)
+    ;; Disable Lash support, as it is unmaintained and depends on Python 2.
+    (arguments
+     (list #:tests? #f                  ;no test suite
+           #:configure-flags
+           #~(list "-DLashEnable=OFF"
+                   ;; XXX: FindGTK2.cmake from CMake expects the
+                   ;; headers to be in FHS locations; give it some
+                   ;; clues.
+                   (string-append "-DGTK2_ADDITIONAL_SUFFIXES="
+                                  "lib/glib-2.0;" ;for glibconfig.h
+                                  "lib/gtk-2.0")))) ;for gdkconfig.h
+    (inputs (list jack-1 gtk+-2))
+    (home-page "https://jack-keyboard.sourceforge.net/")
     (synopsis "Virtual MIDI keyboard")
     (description "Jack-keyboard is a virtual MIDI keyboard, a program that
 allows you to send JACK MIDI events (i.e. play) using your PC keyboard.")
-- 
2.39.1





  parent reply	other threads:[~2023-02-07  4:20 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-07  4:15 [bug#61336] [PATCH 00/10] Remove lash, which causes gtk@4 to depend on python2 Maxim Cournoyer
2023-02-07  4:19 ` [bug#61336] [PATCH 01/10] gnu: seq24: Remove lash input Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 02/10] gnu: muse-sequencer: " Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 03/10] gnu: jack-keyboard: " Maxim Cournoyer
2023-02-07  4:19   ` Maxim Cournoyer [this message]
2023-02-07  4:19   ` [bug#61336] [PATCH 05/10] gnu: hydrogen: " Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 06/10] gnu: fluidsynth: " Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 07/10] gnu: fluidsynth: Update to 2.3.1 Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 08/10] gnu: calf: Remove lash input Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 09/10] gnu: Remove azr3 Maxim Cournoyer
2023-02-07  9:33     ` Ricardo Wurmus
2023-02-07 10:15       ` Ricardo Wurmus
2023-02-07 13:48         ` bug#61336: " Maxim Cournoyer
2023-02-07  4:19   ` [bug#61336] [PATCH 10/10] gnu: Remove lash Maxim Cournoyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230207041925.6292-5-maxim.cournoyer@gmail.com \
    --to=maxim.cournoyer@gmail.com \
    --cc=61336@debbugs.gnu.org \
    --cc=rekado@elephly.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.