GNU bug report logs - #33337
[PATCH] gnu: Add autotalent.

Previous Next

Package: guix-patches;

Reported by: Thorsten Wilms <t_w_ <at> freenet.de>

Date: Sat, 10 Nov 2018 20:33:01 UTC

Severity: normal

Tags: patch

Done: ludo <at> gnu.org (Ludovic Courtès)

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 33337 in the body.
You can then email your comments to 33337 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#33337; Package guix-patches. (Sat, 10 Nov 2018 20:33:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Thorsten Wilms <t_w_ <at> freenet.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 10 Nov 2018 20:33:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Thorsten Wilms <t_w_ <at> freenet.de>
To: guix-patches <at> gnu.org
Cc: Thorsten Wilms <t_w_ <at> freenet.de>
Subject: [PATCH] gnu: Add autotalent.
Date: Sat, 10 Nov 2018 21:22:28 +0100
* 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





Reply sent to ludo <at> gnu.org (Ludovic Courtès):
You have taken responsibility. (Mon, 19 Nov 2018 21:33:02 GMT) Full text and rfc822 format available.

Notification sent to Thorsten Wilms <t_w_ <at> freenet.de>:
bug acknowledged by developer. (Mon, 19 Nov 2018 21:33:02 GMT) Full text and rfc822 format available.

Message #10 received at 33337-done <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Thorsten Wilms <t_w_ <at> freenet.de>
Cc: 33337-done <at> debbugs.gnu.org
Subject: Re: [bug#33337] [PATCH] gnu: Add autotalent.
Date: Mon, 19 Nov 2018 22:32:37 +0100
[Message part 1 (text/plain, inline)]
Hello,

Thorsten Wilms <t_w_ <at> freenet.de> skribis:

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

I changed the license as shown below and applied.

Thanks!

Ludo’.

[Message part 2 (text/x-patch, inline)]
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

Information forwarded to guix-patches <at> gnu.org:
bug#33337; Package guix-patches. (Tue, 20 Nov 2018 12:46:01 GMT) Full text and rfc822 format available.

Message #13 received at 33337 <at> debbugs.gnu.org (full text, mbox):

From: ludo <at> gnu.org (Ludovic Courtès)
To: Thorsten Wilms <t_w_ <at> freenet.de>
Cc: 33337 <at> debbugs.gnu.org
Subject: Re: [bug#33337] [PATCH] gnu: Add autotalent.
Date: Tue, 20 Nov 2018 13:45:48 +0100
Hi!

(+Cc.)

Thorsten Wilms <t_w_ <at> 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’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 19 Dec 2018 12:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 120 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.