unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH]: Add LV2 mda Piano/EPiano plugins.
@ 2015-02-13 22:25 Ricardo Wurmus
  2015-02-18 21:52 ` Mark H Weaver
  0 siblings, 1 reply; 7+ messages in thread
From: Ricardo Wurmus @ 2015-02-13 22:25 UTC (permalink / raw)
  To: Guix-devel

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

Here are two packages for my own software: the LV2 ports of the mda
Piano and mda EPiano audio plugins.

Downloads from gitorious do not appear to work (see bug #19840), so I
offer the tarball (one for both plugins) on my own server until this is
fixed.

~~ Ricardo


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-LV2-mda-Piano-plugin.patch --]
[-- Type: text/x-patch, Size: 1926 bytes --]

From 9bc97be6d04e02c1474e3a257de2062055260401 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Wed, 11 Feb 2015 23:30:50 +0100
Subject: [PATCH 1/2] gnu: Add LV2 mda Piano plugin.

* gnu/packages/audio.scm (lv2-mdapiano): New variable.
---
 gnu/packages/audio.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 92ed2ac..9a79c53 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -336,6 +336,41 @@ add functionality to support the needs of increasingly powerful audio
 software.")
     (license license:isc)))
 
+(define-public lv2-mdapiano
+  (package
+    (name "lv2-mdapiano")
+    (version "0.0.2")
+    (source (origin
+              (method url-fetch)
+              (uri
+               ;; Archive downloads from gitorious.org are currently broken,
+               ;; see bug #19840.
+               (list
+                (string-append
+                 "http://elephly.net/downies/lv2-mdametapiano-"
+                 version ".tar.gz")
+                (string-append
+                 "https://gitorious.org/lv2-synths/lv2-mdametapiano/archive/"
+                 version ".tar.gz")))
+             (sha256
+              (base32
+               "03ydnqw82wxqdbd7xqdx0vsd9ajk269cclvjvn2s3iq5797j2pfb"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags '("TYPE=mdaPiano")
+       #:tests? #f ; no check target
+       #:phases (alist-delete 'configure %standard-phases)))
+    (inputs
+     `(("lv2" ,lv2)
+       ("lvtk" ,lvtk)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://elephly.net/lv2/mdapiano.html")
+    (synopsis "LV2 port of the mda Piano plugin")
+    (description
+     "An LV2 port of the mda Piano VSTi.")
+    (license license:gpl3+)))
+
 (define-public lvtk
   (package
     (name "lvtk")
-- 
2.1.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-Add-LV2-mda-EPiano-plugin.patch --]
[-- Type: text/x-patch, Size: 1089 bytes --]

From c71b66b20d04e57228685f709ccb7e4195de4ae8 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Wed, 11 Feb 2015 23:31:37 +0100
Subject: [PATCH 2/2] gnu: Add LV2 mda EPiano plugin.

* gnu/packages/audio.scm (lv2-mdaepiano): New variable.
---
 gnu/packages/audio.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 9a79c53..e9ab5a5 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -371,6 +371,18 @@ software.")
      "An LV2 port of the mda Piano VSTi.")
     (license license:gpl3+)))
 
+(define-public lv2-mdaepiano
+  (package (inherit lv2-mdapiano)
+    (name "lv2-mdaepiano")
+    (arguments
+     `(#:make-flags '("TYPE=mdaPiano")
+       #:tests? #f ; no check target
+       #:phases (alist-delete 'configure %standard-phases)))
+    (home-page "http://elephly.net/lv2/mdaepiano.html")
+    (synopsis "LV2 port of the mda EPiano plugin")
+    (description
+     "An LV2 port of the mda EPiano VSTi.")))
+
 (define-public lvtk
   (package
     (name "lvtk")
-- 
2.1.0


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

* Re: [PATCH]: Add LV2 mda Piano/EPiano plugins.
  2015-02-13 22:25 [PATCH]: Add LV2 mda Piano/EPiano plugins Ricardo Wurmus
@ 2015-02-18 21:52 ` Mark H Weaver
  2015-02-18 21:55   ` Ricardo Wurmus
  0 siblings, 1 reply; 7+ messages in thread
From: Mark H Weaver @ 2015-02-18 21:52 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> Here are two packages for my own software: the LV2 ports of the mda
> Piano and mda EPiano audio plugins.
>
> Downloads from gitorious do not appear to work (see bug #19840), so I
> offer the tarball (one for both plugins) on my own server until this is
> fixed.

I will fix bug #19840 soon, and would prefer that we wait for that.

    Thanks,
      Mark

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

* Re: [PATCH]: Add LV2 mda Piano/EPiano plugins.
  2015-02-18 21:52 ` Mark H Weaver
@ 2015-02-18 21:55   ` Ricardo Wurmus
  2015-02-19  8:44     ` Mark H Weaver
  0 siblings, 1 reply; 7+ messages in thread
From: Ricardo Wurmus @ 2015-02-18 21:55 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: Guix-devel


Mark H Weaver writes:

>> Downloads from gitorious do not appear to work (see bug #19840), so I
>> offer the tarball (one for both plugins) on my own server until this is
>> fixed.
>
> I will fix bug #19840 soon, and would prefer that we wait for that.

Okay.  This will also give me time to make a new release and update the
patches accordingly.

~~ Ricardo

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

* Re: [PATCH]: Add LV2 mda Piano/EPiano plugins.
  2015-02-18 21:55   ` Ricardo Wurmus
@ 2015-02-19  8:44     ` Mark H Weaver
  2015-02-22 16:41       ` Ricardo Wurmus
  0 siblings, 1 reply; 7+ messages in thread
From: Mark H Weaver @ 2015-02-19  8:44 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> Mark H Weaver writes:
>
>>> Downloads from gitorious do not appear to work (see bug #19840), so I
>>> offer the tarball (one for both plugins) on my own server until this is
>>> fixed.
>>
>> I will fix bug #19840 soon, and would prefer that we wait for that.
>
> Okay.  This will also give me time to make a new release and update the
> patches accordingly.

I just pushed commit 04dec194d8 to master which fixes #19840, so we can
download tarballs from gitorious now.

      Mark

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

* Re: [PATCH]: Add LV2 mda Piano/EPiano plugins.
  2015-02-19  8:44     ` Mark H Weaver
@ 2015-02-22 16:41       ` Ricardo Wurmus
  2015-02-23 20:57         ` Andreas Enge
  2015-02-24 22:55         ` Ludovic Courtès
  0 siblings, 2 replies; 7+ messages in thread
From: Ricardo Wurmus @ 2015-02-22 16:41 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: Guix-devel

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


Attached are new versions of these patches that download from
gitorious.

The plugins work fine for me (e.g. in jalv), but they need the LV2_PATH
to be set in order to be found by the LV2 host.

~~ Ricardo


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-LV2-mda-Piano-plugin.patch --]
[-- Type: text/x-patch, Size: 1755 bytes --]

From dcd8d4febec8b86dbb6fe15d8a5f338c4feb7605 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Wed, 11 Feb 2015 23:30:50 +0100
Subject: [PATCH 1/2] gnu: Add LV2 mda Piano plugin.

* gnu/packages/audio.scm (lv2-mdapiano): New variable.
---
 gnu/packages/audio.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index e1ad44a..d17cf13 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -450,6 +450,37 @@ add functionality to support the needs of increasingly powerful audio
 software.")
     (license license:isc)))
 
+(define-public lv2-mda-piano
+  (package
+    (name "lv2-mda-piano")
+    (version "0.0.2")
+    (source (origin
+              (method url-fetch)
+              (uri
+               (string-append
+                "https://gitorious.org/lv2-synths/lv2-mdametapiano/archive/"
+                version ".tar.gz"))
+              (sha256
+               (base32
+                "0v37l7ysm2fri6mmpz9s7mrwryk1rgad5s4ps053569xw4w7nxjl"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:make-flags (list
+                     "TYPE=mdaPiano"
+                     (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:tests? #f ; no check target
+       #:phases (alist-delete 'configure %standard-phases)))
+    (inputs
+     `(("lv2" ,lv2)
+       ("lvtk" ,lvtk)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://elephly.net/lv2/mdapiano.html")
+    (synopsis "LV2 port of the mda Piano plugin")
+    (description
+     "An LV2 port of the mda Piano VSTi.")
+    (license license:gpl3+)))
+
 (define-public lvtk
   (package
     (name "lvtk")
-- 
2.1.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-Add-LV2-mda-EPiano-plugin.patch --]
[-- Type: text/x-patch, Size: 1196 bytes --]

From b2c3e2a156b1b78e0dfbe79444f14abee324c92c Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Wed, 11 Feb 2015 23:31:37 +0100
Subject: [PATCH 2/2] gnu: Add LV2 mda EPiano plugin.

* gnu/packages/audio.scm (lv2-mdaepiano): New variable.
---
 gnu/packages/audio.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index d17cf13..c15b096 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -481,6 +481,20 @@ software.")
      "An LV2 port of the mda Piano VSTi.")
     (license license:gpl3+)))
 
+(define-public lv2-mda-epiano
+  (package (inherit lv2-mda-piano)
+    (name "lv2-mda-epiano")
+    (arguments
+     `(#:make-flags (list
+                     "TYPE=mdaEPiano"
+                     (string-append "PREFIX=" (assoc-ref %outputs "out")))
+       #:tests? #f ; no check target
+       #:phases (alist-delete 'configure %standard-phases)))
+    (home-page "http://elephly.net/lv2/mdaepiano.html")
+    (synopsis "LV2 port of the mda EPiano plugin")
+    (description
+     "An LV2 port of the mda EPiano VSTi.")))
+
 (define-public lvtk
   (package
     (name "lvtk")
-- 
2.1.0


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

* Re: [PATCH]: Add LV2 mda Piano/EPiano plugins.
  2015-02-22 16:41       ` Ricardo Wurmus
@ 2015-02-23 20:57         ` Andreas Enge
  2015-02-24 22:55         ` Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Andreas Enge @ 2015-02-23 20:57 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

On Sun, Feb 22, 2015 at 05:41:32PM +0100, Ricardo Wurmus wrote:
> The plugins work fine for me (e.g. in jalv), but they need the LV2_PATH
> to be set in order to be found by the LV2 host.

Might this be a case for search paths?

Andreas

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

* Re: [PATCH]: Add LV2 mda Piano/EPiano plugins.
  2015-02-22 16:41       ` Ricardo Wurmus
  2015-02-23 20:57         ` Andreas Enge
@ 2015-02-24 22:55         ` Ludovic Courtès
  1 sibling, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2015-02-24 22:55 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> skribis:

> From dcd8d4febec8b86dbb6fe15d8a5f338c4feb7605 Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Wed, 11 Feb 2015 23:30:50 +0100
> Subject: [PATCH 1/2] gnu: Add LV2 mda Piano plugin.
>
> * gnu/packages/audio.scm (lv2-mdapiano): New variable.

[...]

> From b2c3e2a156b1b78e0dfbe79444f14abee324c92c Mon Sep 17 00:00:00 2001
> From: Ricardo Wurmus <rekado@elephly.net>
> Date: Wed, 11 Feb 2015 23:31:37 +0100
> Subject: [PATCH 2/2] gnu: Add LV2 mda EPiano plugin.
>
> * gnu/packages/audio.scm (lv2-mdaepiano): New variable.

LGTM, thanks!

Ludo'.

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

end of thread, other threads:[~2015-02-24 22:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-13 22:25 [PATCH]: Add LV2 mda Piano/EPiano plugins Ricardo Wurmus
2015-02-18 21:52 ` Mark H Weaver
2015-02-18 21:55   ` Ricardo Wurmus
2015-02-19  8:44     ` Mark H Weaver
2015-02-22 16:41       ` Ricardo Wurmus
2015-02-23 20:57         ` Andreas Enge
2015-02-24 22:55         ` Ludovic Courtès

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).