From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOrAF-0006y2-DQ for guix-patches@gnu.org; Mon, 19 Nov 2018 16:33:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOrAE-00016N-Kn for guix-patches@gnu.org; Mon, 19 Nov 2018 16:33:03 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57075) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gOrAE-00016A-GM for guix-patches@gnu.org; Mon, 19 Nov 2018 16:33:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gOrAE-0006xX-D8 for guix-patches@gnu.org; Mon, 19 Nov 2018 16:33:02 -0500 Subject: bug#33337: [PATCH] gnu: Add autotalent. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20181110202227.21286-1-t_w_@freenet.de> Date: Mon, 19 Nov 2018 22:32:37 +0100 In-Reply-To: <20181110202227.21286-1-t_w_@freenet.de> (Thorsten Wilms's message of "Sat, 10 Nov 2018 21:22:28 +0100") Message-ID: <87a7m4vjm2.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Thorsten Wilms Cc: 33337-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Thorsten Wilms skribis: > * gnu/packages/audio.scm (autotalent): New variable. I changed the license as shown below and applied. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: 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 --=-=-=--