unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40510] [PATCH] gnu: Add wolf-shaper.
@ 2020-04-08 16:31 Alexandros Theodotou
  2020-04-08 16:37 ` Alexandros Theodotou
  2020-04-23 21:59 ` bug#40510: " Ludovic Courtès
  0 siblings, 2 replies; 3+ messages in thread
From: Alexandros Theodotou @ 2020-04-08 16:31 UTC (permalink / raw)
  To: 40510


[-- Attachment #1.1: Type: text/plain, Size: 89 bytes --]

Hi,

These patches add wolf-spectrum and wolf-shaper, 2 LV2 plugins.

Thanks,
Alex

[-- Attachment #1.2: 0002-gnu-Add-wolf-spectrum.patch --]
[-- Type: text/x-patch, Size: 1624 bytes --]

From ff5050712a95e5dc84325ecceac50f84cd71ee14 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Wed, 8 Apr 2020 17:30:45 +0100
Subject: [PATCH 2/2] gnu: Add wolf-spectrum.

* gnu/packages/music.scm (wolf-spectrum): New variable.
---
 gnu/packages/music.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1f9b1e543b..f16593ea6c 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5479,3 +5479,26 @@ plugin and a standalone JACK application.")
 It is provided as an LV2 plugin and as a standalone Jack application.")
     (home-page "https://pdesaulniers.github.io/wolf-shaper/")
     (license license:gpl3)))
+
+(define-public wolf-spectrum
+  (package
+    (inherit wolf-shaper)
+    (name "wolf-spectrum")
+    (version "1.0.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/pdesaulniers/wolf-spectrum")
+               (commit (string-append "v" version))
+               ;; Bundles a specific commit of the DISTRHO plugin framework.
+               (recursive? #t)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "17db1jlj7vb1xyvkdhhrsvdbwb7jqw6i4168cdvlj3yvn2ra8gpm"))))
+    (synopsis "2D spectrogram plugin")
+    (description "Wolf Spectrum is a real-time 2D spectrogram plugin.
+It is provided as an LV2 plugin and as a standalone Jack application.")
+    (home-page "https://pdesaulniers.github.io/wolf-shaper/")
+    (license license:gpl3)))
-- 
2.26.0


[-- Attachment #1.3: 0001-gnu-Add-wolf-shaper.patch --]
[-- Type: text/x-patch, Size: 3050 bytes --]

From 80dbd4b8eea3beea8eb312acdb56374f486bb9b7 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Wed, 8 Apr 2020 17:21:19 +0100
Subject: [PATCH 1/2] gnu: Add wolf-shaper.

* gnu/packages/music.scm (wolf-shaper): New variable.
---
 gnu/packages/music.scm | 57 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 5257d9463a..1f9b1e543b 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5422,3 +5422,60 @@ plugin and a standalone JACK application.")
   offers an LV2 version ported by moddevices.")
       (home-page "http://tap-plugins.sourceforge.net/")
       (license license:gpl2))))
+
+(define-public wolf-shaper
+  (package
+    (name "wolf-shaper")
+    (version "0.1.7")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/pdesaulniers/wolf-shaper.git")
+               (commit (string-append "v" version))
+               ;; Bundles a specific commit of the DISTRHO plugin framework.
+               (recursive? #t)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "0lllgcbnnh1m95bp29hh17x170hl7170zizjrvy892qfkn36830d"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f                      ; no check target
+       #:make-flags (list "CC=gcc")
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)            ;no configure target
+         (replace 'install              ;no install target
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (lv2 (string-append out "/lib/lv2")))
+               ;; Install LV2.
+               (for-each
+                (lambda (file)
+                  (copy-recursively file
+                                    (string-append lv2 "/" (basename file))))
+                (find-files "bin" "\\.lv2$" #:directories? #t))
+               ;; Install executables.
+               (for-each
+                 (lambda (file)
+                   (install-file file bin))
+                 (find-files "bin"
+                             (lambda (name stat)
+                               (and
+                                 (equal? (dirname name) "bin")
+                                 (not (string-suffix? ".so" name))
+                                 (not (string-suffix? ".lv2" name))))))
+               #t))))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+      `(("jack", jack-1)
+        ("lv2", lv2)
+        ("mesa", mesa)))
+    (synopsis "Waveshaper plugin")
+    (description "Wolf Shaper is a waveshaper plugin with a graph editor.
+It is provided as an LV2 plugin and as a standalone Jack application.")
+    (home-page "https://pdesaulniers.github.io/wolf-shaper/")
+    (license license:gpl3)))
-- 
2.26.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [bug#40510] [PATCH] gnu: Add wolf-shaper.
  2020-04-08 16:31 [bug#40510] [PATCH] gnu: Add wolf-shaper Alexandros Theodotou
@ 2020-04-08 16:37 ` Alexandros Theodotou
  2020-04-23 21:59 ` bug#40510: " Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Alexandros Theodotou @ 2020-04-08 16:37 UTC (permalink / raw)
  To: 40510


[-- Attachment #1.1: Type: text/plain, Size: 60 bytes --]

Reattaching wolf-spectrum (forgot to change the homepage).

[-- Attachment #1.2: 0002-gnu-Add-wolf-spectrum.patch --]
[-- Type: text/x-patch, Size: 1626 bytes --]

From 0b0f8211055488a3f22fdc1114d6b43cfa983d33 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Wed, 8 Apr 2020 17:30:45 +0100
Subject: [PATCH 2/2] gnu: Add wolf-spectrum.

* gnu/packages/music.scm (wolf-spectrum): New variable.
---
 gnu/packages/music.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 1f9b1e543b..c0f4e277cb 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5479,3 +5479,26 @@ plugin and a standalone JACK application.")
 It is provided as an LV2 plugin and as a standalone Jack application.")
     (home-page "https://pdesaulniers.github.io/wolf-shaper/")
     (license license:gpl3)))
+
+(define-public wolf-spectrum
+  (package
+    (inherit wolf-shaper)
+    (name "wolf-spectrum")
+    (version "1.0.0")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/pdesaulniers/wolf-spectrum")
+               (commit (string-append "v" version))
+               ;; Bundles a specific commit of the DISTRHO plugin framework.
+               (recursive? #t)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "17db1jlj7vb1xyvkdhhrsvdbwb7jqw6i4168cdvlj3yvn2ra8gpm"))))
+    (synopsis "2D spectrogram plugin")
+    (description "Wolf Spectrum is a real-time 2D spectrogram plugin.
+It is provided as an LV2 plugin and as a standalone Jack application.")
+    (home-page "https://github.com/pdesaulniers/wolf-spectrum")
+    (license license:gpl3)))
-- 
2.26.0


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* bug#40510: [PATCH] gnu: Add wolf-shaper.
  2020-04-08 16:31 [bug#40510] [PATCH] gnu: Add wolf-shaper Alexandros Theodotou
  2020-04-08 16:37 ` Alexandros Theodotou
@ 2020-04-23 21:59 ` Ludovic Courtès
  1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2020-04-23 21:59 UTC (permalink / raw)
  To: Alexandros Theodotou; +Cc: 40510-done

Hi Alexandros,

Alexandros Theodotou <alex@zrythm.org> skribis:

> From ff5050712a95e5dc84325ecceac50f84cd71ee14 Mon Sep 17 00:00:00 2001
> From: Alexandros Theodotou <alex@zrythm.org>
> Date: Wed, 8 Apr 2020 17:30:45 +0100
> Subject: [PATCH 2/2] gnu: Add wolf-spectrum.
>
> * gnu/packages/music.scm (wolf-spectrum): New variable.

[...]

> +    (synopsis "2D spectrogram plugin")
> +    (description "Wolf Spectrum is a real-time 2D spectrogram plugin.
> +It is provided as an LV2 plugin and as a standalone Jack application.")
> +    (home-page "https://pdesaulniers.github.io/wolf-shaper/")
> +    (license license:gpl3)))

[...]

> From 80dbd4b8eea3beea8eb312acdb56374f486bb9b7 Mon Sep 17 00:00:00 2001
> From: Alexandros Theodotou <alex@zrythm.org>
> Date: Wed, 8 Apr 2020 17:21:19 +0100
> Subject: [PATCH 1/2] gnu: Add wolf-shaper.
>
> * gnu/packages/music.scm (wolf-shaper): New variable.

[...]

> +    (synopsis "Waveshaper plugin")
> +    (description "Wolf Shaper is a waveshaper plugin with a graph editor.
> +It is provided as an LV2 plugin and as a standalone Jack application.")
> +    (home-page "https://pdesaulniers.github.io/wolf-shaper/")
> +    (license license:gpl3)))

Applied!

Two comments though:

  1. I believe the license is really ‘gpl3+’ because I don’t see
     anything saying “version 3 only”.  However, the situation is a bit
     confused because source files apparently still contain the ISC
     license header, perhaps an omission since the projects were
     apparently recently relicensed.

  2. The synopses could be improved: plugin for what? What application
     domain?  The descriptions could also be expounded a bit, and this
     would make ‘guix search’ happier.  :-)

Could you follow up on these two things?

Thanks,
Ludo’.

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

end of thread, other threads:[~2020-04-23 22:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-08 16:31 [bug#40510] [PATCH] gnu: Add wolf-shaper Alexandros Theodotou
2020-04-08 16:37 ` Alexandros Theodotou
2020-04-23 21:59 ` bug#40510: " 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).