From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39200) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gMG5F-0001oa-PN for guix-patches@gnu.org; Mon, 12 Nov 2018 12:33:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gMG5A-0006F7-Ai for guix-patches@gnu.org; Mon, 12 Nov 2018 12:33:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:44045) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gMG58-0006Cp-9k for guix-patches@gnu.org; Mon, 12 Nov 2018 12:33:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gMG58-0003FM-3R for guix-patches@gnu.org; Mon, 12 Nov 2018 12:33:02 -0500 Subject: [bug#33356] [PATCH] gnu: Add caps-plugins-lv2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39022) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gMG4K-0007iC-GS for guix-patches@gnu.org; Mon, 12 Nov 2018 12:32:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gMG4H-0005yJ-A2 for guix-patches@gnu.org; Mon, 12 Nov 2018 12:32:12 -0500 Received: from mout2.freenet.de ([195.4.92.92]:42158) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gMG4H-0005xf-2F for guix-patches@gnu.org; Mon, 12 Nov 2018 12:32:09 -0500 Received: from [195.4.92.165] (helo=mjail2.freenet.de) by mout2.freenet.de with esmtpa (ID t_w_@freenet.de) (port 25) (Exim 4.90_1 #2) id 1gMG4D-0004cx-J4 for guix-patches@gnu.org; Mon, 12 Nov 2018 18:32:05 +0100 Received: from [::1] (port=57400 helo=mjail2.freenet.de) by mjail2.freenet.de with esmtpa (ID t_w_@freenet.de) (Exim 4.90_1 #2) id 1gMG4D-0002xK-Hz for guix-patches@gnu.org; Mon, 12 Nov 2018 18:32:05 +0100 Received: from sub0.freenet.de ([195.4.92.119]:36010) by mjail2.freenet.de with esmtpa (ID t_w_@freenet.de) (Exim 4.90_1 #2) id 1gMG22-0006ru-0s for guix-patches@gnu.org; Mon, 12 Nov 2018 18:29:50 +0100 From: Thorsten Wilms Date: Mon, 12 Nov 2018 18:27:29 +0100 Message-Id: <20181112172728.14054-1-t_w_@freenet.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 33356@debbugs.gnu.org * gnu/packages/audio.scm (caps-plugins-lv2): 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 91f55a354..80da64e9a 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -514,6 +514,47 @@ tools (analyzer, mono/stereo tools, crossovers).") ;; The plugins are released under LGPLv2.1+ (license (list license:lgpl2.1+ license:gpl2+)))) +(define-public caps-plugins-lv2 + (package + (name "caps-plugins-lv2") + (version "0.9.24") ; version that has been ported. + (source + (origin + ;; The Github project hasn't tagged a release. + (method git-fetch) + (uri (git-reference + ;; Actually https://github.com/moddevices/caps-lv2.git, but it's + ;; missing fixes for newer glibc, so using the origin of a pull + ;; request regarding this issue: + (url "https://github.com/jujudusud/caps-lv2.git") + (commit "9c9478b7fbd8f9714f552ebe2a6866398b0babfb"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1idfnazin3cca41zw1a8vwgnxjnkrap7bxxjamjqvgpmvydgcam1")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no check target + #:phases + (modify-phases %standard-phases + ;; no configure script + (delete 'configure) + (add-after 'unpack 'override-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (substitute* (find-files "plugins" "Makefile") + (("/usr/local")(assoc-ref outputs "out"))) + #t))))) + (inputs + `(("lv2" ,lv2))) + ;; home-page of the original LADSPA version: http://quitte.de/dsp/caps.html + (home-page "https://github.com/moddevices/caps-lv2") + (synopsis "LV2 port of the CAPS audio plugin colection") + (description + "LV2 port of CAPS, a collection of audio plugins comprising basic virtual +guitar amplification and a small range of classic effects, signal processors and +generators of mostly elementary and occasionally exotic nature.") + (license license:gpl3+))) + (define-public espeak (package (name "espeak") -- 2.19.1