* [bug#39213] [PATCH] gnu: Add regrader.
@ 2020-01-21 5:21 Alexandros Theodotou
2020-01-21 5:36 ` Alexandros Theodotou
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Alexandros Theodotou @ 2020-01-21 5:21 UTC (permalink / raw)
To: 39213
[-- Attachment #1.1: Type: text/plain, Size: 105 bytes --]
First release of a newly ported delay plugin!
This depends on #38689 getting merged
Thanks,
Alex
[-- Attachment #1.2: 0001-gnu-Add-regrader.patch --]
[-- Type: text/x-patch, Size: 2184 bytes --]
From eaa7ddb16555f488484842bd55ce6406e0f374ab Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Tue, 21 Jan 2020 05:19:03 +0000
Subject: [PATCH] gnu: Add regrader.
* gnu/packages/music.scm (regrader): New variable.
---
gnu/packages/music.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 5e6509e6ca..30dd7e616b 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5163,3 +5163,46 @@ code by PolyValens, offered as a VST plugin, an LV2 plugin and a standalone
JACK application.")
;; Expat or CC0
(license (list license:expat license:cc0))))
+
+(define-public regrader
+ (package
+ (name "regrader")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/linuxmao-org/regrader.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
+ "0gl4d5lf2afqknz22jz7hh7029sc9v1xrz6nbz9dlv42bwc0cvl0"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no check target
+ #:make-flags
+ (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+ (string-append "CC=gcc"))
+ #:phases
+ (modify-phases %standard-phases
+ ;; no configure script
+ (delete 'configure))))
+ (inputs
+ `(("cairo" ,cairo)
+ ("jack" ,jack-1)
+ ("libx11" ,libx11)
+ ("mesa" ,mesa)))
+ (native-inputs
+ `(("lv2" ,lv2)
+ ("pkg-config" ,pkg-config)))
+ (home-page "https://github.com/linuxmao-org/regrader")
+ (synopsis "Delay effect plugin")
+ (description
+ "Regrader is a delay effect where the repeats degrade in resolution.
+This is an unofficial port of the Regrader plugin created by Igorski. It
+is available as an LV2 plugin, a VST plugin and a standalone JACK
+application.")
+ (license license:expat)))
--
2.24.1
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#39213] [PATCH] gnu: Add regrader.
2020-01-21 5:21 [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
@ 2020-01-21 5:36 ` Alexandros Theodotou
2020-01-21 5:41 ` [bug#39213] fogpad: reverb plugin Alexandros Theodotou
2020-02-25 15:43 ` [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
2 siblings, 0 replies; 5+ messages in thread
From: Alexandros Theodotou @ 2020-01-21 5:36 UTC (permalink / raw)
To: 39213
[-- Attachment #1.1: Type: text/plain, Size: 144 bytes --]
Simplified by inheriting since it uses the exact same build procedure
and dependencies as vl1-emulator by the same upstream.
Thanks,
Alex
[-- Attachment #1.2: 0001-gnu-Add-regrader.patch --]
[-- Type: text/x-patch, Size: 1661 bytes --]
From 345b974a8dc783aa03c2bfd77c1e8dffba284639 Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Tue, 21 Jan 2020 05:19:03 +0000
Subject: [PATCH] gnu: Add regrader.
* gnu/packages/music.scm (regrader): New variable.
---
gnu/packages/music.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 5e6509e6ca..90774eafe7 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5163,3 +5163,29 @@ code by PolyValens, offered as a VST plugin, an LV2 plugin and a standalone
JACK application.")
;; Expat or CC0
(license (list license:expat license:cc0))))
+
+(define-public regrader
+ (package
+ (inherit vl1-emulator)
+ (name "regrader")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/linuxmao-org/regrader.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
+ "0gl4d5lf2afqknz22jz7hh7029sc9v1xrz6nbz9dlv42bwc0cvl0"))))
+ (home-page "https://github.com/linuxmao-org/regrader")
+ (synopsis "Delay effect plugin")
+ (description
+ "Regrader is a delay effect where the repeats degrade in resolution.
+This is an unofficial port of the Regrader plugin created by Igorski. It
+is available as an LV2 plugin, a VST plugin and a standalone JACK
+application.")
+ (license license:expat)))
--
2.24.1
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#39213] fogpad: reverb plugin
2020-01-21 5:21 [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
2020-01-21 5:36 ` Alexandros Theodotou
@ 2020-01-21 5:41 ` Alexandros Theodotou
2020-02-25 15:43 ` [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
2 siblings, 0 replies; 5+ messages in thread
From: Alexandros Theodotou @ 2020-01-21 5:41 UTC (permalink / raw)
To: 39213
[-- Attachment #1.1: Type: text/plain, Size: 97 bytes --]
This is another plugin by the same upstream. Should be merged after
regrader.
Thanks,
Alex
[-- Attachment #1.2: 0002-gnu-Add-fogpad.patch --]
[-- Type: text/x-patch, Size: 1723 bytes --]
From 423212a59053de99e87eb9e4a90e971f60c3230d Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Tue, 21 Jan 2020 05:37:39 +0000
Subject: [PATCH 2/2] gnu: Add fogpad.
* gnu/packages/music.scm (fogpad): New variable.
---
gnu/packages/music.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 90774eafe7..f5dbbd65b2 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5189,3 +5189,29 @@ This is an unofficial port of the Regrader plugin created by Igorski. It
is available as an LV2 plugin, a VST plugin and a standalone JACK
application.")
(license license:expat)))
+
+(define-public fogpad
+ (package
+ (inherit vl1-emulator)
+ (name "fogpad")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/linuxmao-org/fogpad")
+ (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
+ "1j1hbya2dsqpf22zkpi4kwz3dram9g1ndxzmgfwpmf3i4jd3csgb"))))
+ (home-page "https://github.com/linuxmao-org/fogpad")
+ (synopsis "Reverb effect plugin")
+ (description
+ "Fogpad is a reverb effect in which the reflections can be frozen,
+filtered, pitch shifted and ultimately disintegrated. This is an unofficial
+port of the Regrader plugin created by Igorski. It is available as an LV2
+plugin, a VST plugin and a standalone JACK application.")
+ (license license:expat)))
--
2.24.1
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#39213] [PATCH] gnu: Add regrader.
2020-01-21 5:21 [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
2020-01-21 5:36 ` Alexandros Theodotou
2020-01-21 5:41 ` [bug#39213] fogpad: reverb plugin Alexandros Theodotou
@ 2020-02-25 15:43 ` Alexandros Theodotou
2020-02-26 6:56 ` bug#39213: " Efraim Flashner
2 siblings, 1 reply; 5+ messages in thread
From: Alexandros Theodotou @ 2020-02-25 15:43 UTC (permalink / raw)
To: 39213
[-- Attachment #1: Type: text/plain, Size: 124 bytes --]
Hi,
Please close this. I added a patch series to
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=38689
Thanks,
Alex
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-02-26 6:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-21 5:21 [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
2020-01-21 5:36 ` Alexandros Theodotou
2020-01-21 5:41 ` [bug#39213] fogpad: reverb plugin Alexandros Theodotou
2020-02-25 15:43 ` [bug#39213] [PATCH] gnu: Add regrader Alexandros Theodotou
2020-02-26 6:56 ` bug#39213: " Efraim Flashner
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).