unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/3] gnu: Add mod-host.
@ 2016-10-14 21:52 Ricardo Wurmus
  2016-10-14 21:52 ` [PATCH 2/3] gnu: Add jalv-select Ricardo Wurmus
  2016-10-14 21:52 ` [PATCH 3/3] gnu: Add mod-utilities Ricardo Wurmus
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-10-14 21:52 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/music.scm (mod-host): New variable.
---
 gnu/packages/music.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index d5805b0..ff2ee64 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1646,6 +1646,55 @@ follows a traditional multi-track tape recorder control paradigm.")
 analogue-like user interface.")
     (license license:gpl2+)))
 
+(define-public mod-host
+  ;; The last release was in 2014 but since then more than 140 commits have
+  ;; been made.
+  (let ((commit "72aca771e3a4e3889641b9bab84985586c9bb926")
+        (revision "1"))
+    (package
+      (name "mod-host")
+      (version (string-append "0.10.6-" revision "." (string-take commit 9)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/moddevices/mod-host")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "19szi8cy65jlchbrmbjbma03g6gxj9zyyp4dgw1k06r0cxbx82gq"))
+                (file-name (string-append name "-" version "-checkout"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f ; no tests included
+         #:make-flags
+         (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+               "CC=gcc")
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure)
+           (add-after 'unpack 'fix-jack-installation-directory
+             (lambda _
+               ;; Do not attempt to install files to output of "jack" package.
+               (substitute* "Makefile"
+                 (("\\$\\(shell pkg-config --variable=libdir jack\\)")
+                  "lib"))
+               #t)))))
+      (inputs
+       `(("lilv" ,lilv)
+         ("fftw" ,fftw)
+         ("fftwf" ,fftwf)
+         ("lv2" ,lv2)
+         ("jack" ,jack-1)
+         ("readline" ,readline)))
+      (native-inputs
+       `(("pkg-config" ,pkg-config)
+         ("python" ,python-2)))
+      (home-page "https://github.com/moddevices/mod-host")
+      (synopsis "LV2 host for Jack controllable via socket or command line")
+      (description "mod-host is an LV2 plugin host for JACK, controllable via
+socket or command line.")
+      (license license:gpl3+))))
+
 (define-public pianobar
   (package
     (name "pianobar")
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] gnu: Add jalv-select.
  2016-10-14 21:52 [PATCH 1/3] gnu: Add mod-host Ricardo Wurmus
@ 2016-10-14 21:52 ` Ricardo Wurmus
  2016-10-14 21:52 ` [PATCH 3/3] gnu: Add mod-utilities Ricardo Wurmus
  1 sibling, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-10-14 21:52 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/music.scm (jalv-select): New variable.
---
 gnu/packages/music.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index ff2ee64..d2e252e 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -838,6 +838,46 @@ your own lessons.")
 Editor.  It is compatible with Power Tab Editor 1.7 and Guitar Pro.")
     (license license:gpl3+)))
 
+(define-public jalv-select
+  (package
+    (name "jalv-select")
+    (version "0.7")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/brummer10/jalv_select/"
+                                  "archive/V" version ".tar.gz"))
+              (sha256
+               (base32
+                "01y93l5c1f8za04a0y4b3v0nhsm1lhj6rny9xpdgd7jz6sl6w581"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags
+       (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (add-after 'unpack 'ignore-PATH
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "jalv.select.cpp"
+               (("echo \\$PATH | tr ':' '\\\n' | xargs ls")
+                (string-append "ls -1 " (assoc-ref inputs "jalv") "/bin")))
+             (substitute* "jalv.select.h"
+               (("gtkmm.h") "gtkmm-2.4/gtkmm.h"))
+             #t)))))
+    (inputs
+     `(("lilv" ,lilv)
+       ("lv2" ,lv2)
+       ("jalv" ,jalv)
+       ("gtkmm" ,gtkmm-2)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/brummer10/jalv_select")
+    (synopsis "GUI to select LV2 plugins and run them with jalv")
+    (description
+     "jalv.select provides a graphical user interface allowing users to select
+LV2 plugins and run them with jalv.")
+    (license license:public-domain)))
+
 (define-public synthv1
   (package
     (name "synthv1")
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/3] gnu: Add mod-utilities.
  2016-10-14 21:52 [PATCH 1/3] gnu: Add mod-host Ricardo Wurmus
  2016-10-14 21:52 ` [PATCH 2/3] gnu: Add jalv-select Ricardo Wurmus
@ 2016-10-14 21:52 ` Ricardo Wurmus
  2016-10-16 18:57   ` Kei Kebreau
  1 sibling, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2016-10-14 21:52 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/music.scm (mod-utilities): New variable.
---
 gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index d2e252e..e5715de 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2442,3 +2442,37 @@ slow gear audio effect to produce volume swells."))))
       (synopsis "Wah emulation with switchless activation")
       (description "This package provides the LV2 plugin \"GxSwitchlessWah\",
 a simulation of an analog Wah pedal with switchless activation."))))
+
+(define-public mod-utilities
+  (let ((commit "7cdeeac26ae682730740105ece121d4dddb8ba3f")
+        (revision "1"))
+    (package
+      (name "mod-utilities")
+      (version (string-append "0-" revision "." (string-take commit 9)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/moddevices/mod-utilities.git")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "1ilnkbrmwrszxvc21qlb86h29yz7cnc6rcp0jmna1y693ny2qhf4"))
+                (file-name (string-append name "-" version "-checkout"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f ; there are no tests
+         #:make-flags
+         (list (string-append "INSTALL_PATH="
+                              (assoc-ref %outputs "out")
+                              "/lib/lv2"))
+         #:phases
+         (modify-phases %standard-phases
+           (delete 'configure))))
+      (inputs
+       `(("lv2" ,lv2)))
+      (home-page "https://github.com/moddevices/mod-utilities")
+      (synopsis "LV2 utility plugins")
+      (description "This package provides LV2 audio utility plugins, such as
+filters, crossovers, simple gain plugins without zipper noise, switch box
+plugins, a switch trigger, a toggle switch, and a peakmeter.")
+      (license license:gpl2+))))
-- 
2.10.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 3/3] gnu: Add mod-utilities.
  2016-10-14 21:52 ` [PATCH 3/3] gnu: Add mod-utilities Ricardo Wurmus
@ 2016-10-16 18:57   ` Kei Kebreau
  2016-10-23 15:08     ` Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: Kei Kebreau @ 2016-10-16 18:57 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2294 bytes --]

Ricardo Wurmus <rekado@elephly.net> writes:

> * gnu/packages/music.scm (mod-utilities): New variable.
> ---
>  gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index d2e252e..e5715de 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -2442,3 +2442,37 @@ slow gear audio effect to produce volume swells."))))
>        (synopsis "Wah emulation with switchless activation")
>        (description "This package provides the LV2 plugin \"GxSwitchlessWah\",
>  a simulation of an analog Wah pedal with switchless activation."))))
> +
> +(define-public mod-utilities
> +  (let ((commit "7cdeeac26ae682730740105ece121d4dddb8ba3f")
> +        (revision "1"))
> +    (package
> +      (name "mod-utilities")
> +      (version (string-append "0-" revision "." (string-take commit 9)))
> +      (source (origin
> +                (method git-fetch)
> +                (uri (git-reference
> +                      (url "https://github.com/moddevices/mod-utilities.git")
> +                      (commit commit)))
> +                (sha256
> +                 (base32
> +                  "1ilnkbrmwrszxvc21qlb86h29yz7cnc6rcp0jmna1y693ny2qhf4"))
> +                (file-name (string-append name "-" version "-checkout"))))
> +      (build-system gnu-build-system)
> +      (arguments
> +       `(#:tests? #f ; there are no tests
> +         #:make-flags
> +         (list (string-append "INSTALL_PATH="
> +                              (assoc-ref %outputs "out")
> +                              "/lib/lv2"))
> +         #:phases
> +         (modify-phases %standard-phases
> +           (delete 'configure))))
> +      (inputs
> +       `(("lv2" ,lv2)))
> +      (home-page "https://github.com/moddevices/mod-utilities")
> +      (synopsis "LV2 utility plugins")
> +      (description "This package provides LV2 audio utility plugins, such as
> +filters, crossovers, simple gain plugins without zipper noise, switch box
> +plugins, a switch trigger, a toggle switch, and a peakmeter.")
> +      (license license:gpl2+))))

All three patches are reproducible and linting is fine, except for
jalv-select's description; must start with an upper-case letter or digit!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 3/3] gnu: Add mod-utilities.
  2016-10-16 18:57   ` Kei Kebreau
@ 2016-10-23 15:08     ` Ricardo Wurmus
  0 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-10-23 15:08 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel


Kei Kebreau <kei@openmailbox.org> writes:

> All three patches are reproducible and linting is fine, except for
> jalv-select's description; must start with an upper-case letter or digit!

Thanks for checking.  I reworded the description for jalv-select.

~~ Ricardo

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-10-23 15:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-14 21:52 [PATCH 1/3] gnu: Add mod-host Ricardo Wurmus
2016-10-14 21:52 ` [PATCH 2/3] gnu: Add jalv-select Ricardo Wurmus
2016-10-14 21:52 ` [PATCH 3/3] gnu: Add mod-utilities Ricardo Wurmus
2016-10-16 18:57   ` Kei Kebreau
2016-10-23 15:08     ` Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).