unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33337] [PATCH] gnu: Add autotalent.
@ 2018-11-10 20:22 Thorsten Wilms
  2018-11-19 21:32 ` bug#33337: " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Thorsten Wilms @ 2018-11-10 20:22 UTC (permalink / raw)
  To: 33337

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

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index ee18b0022..2a1785f54 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -427,6 +427,47 @@ and editing digital audio.  It features digital effects and spectrum analysis
 tools.")
     (license license:gpl2+)))
 
+(define-public autotalent
+  (package
+    (name "autotalent")
+    (version "0.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://tombaran.info/autotalent-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1n04qm66f14195ly6gsy3ra7v2j7zad5n19d8dwfmh0qs6h9hphh"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; no check target
+       #:phases
+       (modify-phases %standard-phases
+         ;; no configure script
+         (delete 'configure)
+         (add-before 'install 'prepare-target-directory
+           (lambda* (#:key outputs #:allow-other-keys)
+             (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
+             #t))
+         (add-after 'unpack 'override-target-directory
+           (lambda* (#:key outputs #:allow-other-keys)
+             (substitute* "Makefile"
+               (("/usr/lib64/ladspa")
+                (string-append (assoc-ref outputs "out") "/lib/ladspa")))
+             #t)))))
+    (inputs
+     `(("ladspa" ,ladspa)))
+    (home-page "http://tombaran.info/autotalent.html")
+    (synopsis "Pitch-correction LADSPA audio plugin")
+    (description
+     "Autotalent is a LADSPA plugin for real-time pitch-correction.  Among its
+controls are allowable notes, strength of correction, LFO for vibrato and
+formant warp.")
+    ;; All code except the FFT routine is licensed under GPL2.
+    ;; The FFT routine is licensed under a Pure Data license.
+    (license (list license:gpl2
+                   (license:non-copyleft "file://COPYING-mayer_fft")))))
+
 (define-public azr3
   (package
     (name "azr3")
-- 
2.19.1

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

* bug#33337: [PATCH] gnu: Add autotalent.
  2018-11-10 20:22 [bug#33337] [PATCH] gnu: Add autotalent Thorsten Wilms
@ 2018-11-19 21:32 ` Ludovic Courtès
       [not found]   ` <62f76551-d28d-daa8-8944-3b889878625c@freenet.de>
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2018-11-19 21:32 UTC (permalink / raw)
  To: Thorsten Wilms; +Cc: 33337-done

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

Hello,

Thorsten Wilms <t_w_@freenet.de> skribis:

> * gnu/packages/audio.scm (autotalent): New variable.

I changed the license as shown below and applied.

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 770 bytes --]

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 64dcf29560..1f83c49f4d 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -464,10 +464,9 @@ tools.")
      "Autotalent is a LADSPA plugin for real-time pitch-correction.  Among its
 controls are allowable notes, strength of correction, LFO for vibrato and
 formant warp.")
-    ;; All code except the FFT routine is licensed under GPL2.
-    ;; The FFT routine is licensed under a Pure Data license.
-    (license (list license:gpl2
-                   (license:non-copyleft "file://COPYING-mayer_fft")))))
+    ;; All code except the FFT routine is licensed under GPLv2+.
+    ;; The FFT routine is under BSD-3.
+    (license (list license:gpl2+))))
 
 (define-public azr3
   (package

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

* [bug#33337] [PATCH] gnu: Add autotalent.
       [not found]   ` <62f76551-d28d-daa8-8944-3b889878625c@freenet.de>
@ 2018-11-20 12:45     ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2018-11-20 12:45 UTC (permalink / raw)
  To: Thorsten Wilms; +Cc: 33337

Hi!

(+Cc.)

Thorsten Wilms <t_w_@freenet.de> skribis:

> On 19/11/2018 22.32, Ludovic Courtès wrote:
>
>>> * gnu/packages/audio.scm (autotalent): New variable.
>>
>> I changed the license as shown below and applied.
>
> Thanks for checking and applying, but this surely shouldn't end with
> (license (list license:gpl2+))?

Oh right, I’ll remove ‘list’, though both forms are equivalent.

Thanks,
Ludo’.

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

end of thread, other threads:[~2018-11-20 12:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-10 20:22 [bug#33337] [PATCH] gnu: Add autotalent Thorsten Wilms
2018-11-19 21:32 ` bug#33337: " Ludovic Courtès
     [not found]   ` <62f76551-d28d-daa8-8944-3b889878625c@freenet.de>
2018-11-20 12:45     ` [bug#33337] " 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).