GNU bug report logs -
#74724
[PATCH 0/2] gnu: stargate: Fix inputs and paths.
Previous Next
To reply to this bug, email your comments to 74724 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#74724
; Package
guix-patches
.
(Sat, 07 Dec 2024 12:14:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sughosha <sughosha <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 07 Dec 2024 12:14:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Sughosha (2):
gnu: stargate: Fix finding portmidi.
gnu: stargate: Add python-distro to inputs.
gnu/packages/music.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
base-commit: 369d2698b0bfc3726f8e6d232d43d0dda832225f
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74724
; Package
guix-patches
.
(Sat, 07 Dec 2024 12:25:10 GMT)
Full text and
rfc822 format available.
Message #8 received at 74724 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/music.scm (stargate)[inputs]: Replace portmidi with
portmidi-2.
[arguments]<#:phases>: Replace patch-portaudio-path with
patch-portaudio-and-portmidi-paths.
Change-Id: Icd5dbe154d2f8cdb9a18006b03ce74ea73d328d4
---
gnu/packages/music.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index cd9cdbdacd..c7f5063107 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5282,13 +5282,16 @@ (define-public stargate
(string-append "CXX=" #$(cxx-for-target)))
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'patch-portaudio-path
+ (add-after 'unpack 'patch-portaudio-and-portmidi-paths
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "src/sgui/widgets/hardware_dialog.py"
(("\\\"libportaudio")
(string-append "\"" (assoc-ref inputs "portaudio")
- "/lib/libportaudio")))))
- (add-after 'patch-portaudio-path 'change-directory
+ "/lib/libportaudio"))
+ (("'libportmidi")
+ (string-append "'" (assoc-ref inputs "portmidi")
+ "/lib/libportmidi")))))
+ (add-after 'patch-portaudio-and-portmidi-paths 'change-directory
(lambda _
(chdir "src")))
(delete 'configure) ;no configure script
@@ -5335,7 +5338,7 @@ (define-public stargate
jq
libsndfile
portaudio
- portmidi
+ portmidi-2
python
python-jinja2
python-mido
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74724
; Package
guix-patches
.
(Sat, 07 Dec 2024 12:25:11 GMT)
Full text and
rfc822 format available.
Message #11 received at 74724 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/music.scm (stargate)[inputs]: Add python-distro.
Change-Id: I5558767835fd9a5d9fbe0742f9c6c22b033941f0
---
gnu/packages/music.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index c7f5063107..47e057a6d3 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5340,6 +5340,7 @@ (define-public stargate
portaudio
portmidi-2
python
+ python-distro
python-jinja2
python-mido
python-mutagen
--
2.46.0
This bug report was last modified 251 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.