From unknown Sat Sep 13 13:42:33 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#46679] [PATCH] gnu: Add fluida-lv2. Resent-From: Alexandros Theodotou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 21 Feb 2021 10:16:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 46679 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 46679@debbugs.gnu.org Cc: Alexandros Theodotou X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.16139025038805 (code B ref -1); Sun, 21 Feb 2021 10:16:01 +0000 Received: (at submit) by debbugs.gnu.org; 21 Feb 2021 10:15:03 +0000 Received: from localhost ([127.0.0.1]:53535 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDllW-0002Hx-Im for submit@debbugs.gnu.org; Sun, 21 Feb 2021 05:15:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:44050) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDllU-0002HG-EL for submit@debbugs.gnu.org; Sun, 21 Feb 2021 05:15:01 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47570) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDllU-0003Hh-8T for guix-patches@gnu.org; Sun, 21 Feb 2021 05:15:00 -0500 Received: from mout01.posteo.de ([185.67.36.141]:54403) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDllR-0000rP-Rd for guix-patches@gnu.org; Sun, 21 Feb 2021 05:15:00 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 7B2FB160062 for ; Sun, 21 Feb 2021 11:14:54 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Dk1QP5n4zz6tm6; Sun, 21 Feb 2021 11:14:53 +0100 (CET) From: Alexandros Theodotou Date: Sun, 21 Feb 2021 10:14:45 +0000 Message-Id: <20210221101445.21823-1-alex@zrythm.org> X-Mailer: git-send-email 2.30.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.141; envelope-from=alex@zrythm.org; helo=mout01.posteo.de X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/music.scm (fluida-lv2): New variable. --- gnu/packages/music.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 6e638f3a60..628bf45e68 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1036,6 +1036,45 @@ are helpful when working in problem spaces where timing is important (such as audio and video).") (license license:bsd-2))) +(define-public fluida-lv2 + (package + (name "fluida-lv2") + (version "0.6") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/brummer10/Fluida.lv2") + (commit (string-append "v" version)) + (recursive? #t))) ; references specific commit of libxputty + (file-name (git-file-name name version)) + (sha256 + (base32 + "1v0bh4wcx79y832qigc3my8ixq0r4ica6z5fg2rg946pkh20x1a2")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "INSTALL_DIR=" + (assoc-ref %outputs "out") "/lib/lv2") + "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("cairo" ,cairo) + ("libx11" ,libx11) + ("lv2" ,lv2) + ("fluidsynth" ,fluidsynth))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://github.com/brummer10/Fluida.lv2") + (synopsis "Fluidsynth as an LV2 audio plugin") + (description "Fluida is an audio plugin in the LV2 format that acts as +a frontend for fluidsynth.") + (license license:gpl2+))) + (define-public surge-synth (package (name "surge-synth") -- 2.30.0 From unknown Sat Sep 13 13:42:33 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Alexandros Theodotou Subject: bug#46679: closed (Re: bug#46679: [PATCH] gnu: Add fluida-lv2.) Message-ID: References: <875z24k2dr.fsf@gnu.org> <20210221101445.21823-1-alex@zrythm.org> X-Gnu-PR-Message: they-closed 46679 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 46679@debbugs.gnu.org Date: Sat, 06 Mar 2021 10:23:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1615026181-740-1" This is a multi-part message in MIME format... ------------=_1615026181-740-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #46679: [PATCH] gnu: Add fluida-lv2. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 46679@debbugs.gnu.org. --=20 46679: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D46679 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1615026181-740-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 46679-done) by debbugs.gnu.org; 6 Mar 2021 10:22:53 +0000 Received: from localhost ([127.0.0.1]:36076 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIU5E-0000BW-V0 for submit@debbugs.gnu.org; Sat, 06 Mar 2021 05:22:53 -0500 Received: from eggs.gnu.org ([209.51.188.92]:48928) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lIU5D-0000BK-HX for 46679-done@debbugs.gnu.org; Sat, 06 Mar 2021 05:22:51 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:36790) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lIU57-00052j-Gq; Sat, 06 Mar 2021 05:22:45 -0500 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=37724 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lIU54-0005F8-Tp; Sat, 06 Mar 2021 05:22:43 -0500 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Alexandros Theodotou Subject: Re: bug#46679: [PATCH] gnu: Add fluida-lv2. References: <20210221101445.21823-1-alex@zrythm.org> Date: Sat, 06 Mar 2021 11:22:40 +0100 In-Reply-To: <20210221101445.21823-1-alex@zrythm.org> (Alexandros Theodotou's message of "Sun, 21 Feb 2021 10:14:45 +0000") Message-ID: <875z24k2dr.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 46679-done Cc: 46679-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello! Alexandros Theodotou skribis: > * gnu/packages/music.scm (fluida-lv2): New variable. Applied, thanks! Ludo=E2=80=99. ------------=_1615026181-740-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 21 Feb 2021 10:15:03 +0000 Received: from localhost ([127.0.0.1]:53535 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDllW-0002Hx-Im for submit@debbugs.gnu.org; Sun, 21 Feb 2021 05:15:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:44050) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lDllU-0002HG-EL for submit@debbugs.gnu.org; Sun, 21 Feb 2021 05:15:01 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47570) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDllU-0003Hh-8T for guix-patches@gnu.org; Sun, 21 Feb 2021 05:15:00 -0500 Received: from mout01.posteo.de ([185.67.36.141]:54403) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lDllR-0000rP-Rd for guix-patches@gnu.org; Sun, 21 Feb 2021 05:15:00 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 7B2FB160062 for ; Sun, 21 Feb 2021 11:14:54 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Dk1QP5n4zz6tm6; Sun, 21 Feb 2021 11:14:53 +0100 (CET) From: Alexandros Theodotou To: guix-patches@gnu.org Subject: [PATCH] gnu: Add fluida-lv2. Date: Sun, 21 Feb 2021 10:14:45 +0000 Message-Id: <20210221101445.21823-1-alex@zrythm.org> X-Mailer: git-send-email 2.30.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.141; envelope-from=alex@zrythm.org; helo=mout01.posteo.de X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Alexandros Theodotou X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/music.scm (fluida-lv2): New variable. --- gnu/packages/music.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 6e638f3a60..628bf45e68 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1036,6 +1036,45 @@ are helpful when working in problem spaces where timing is important (such as audio and video).") (license license:bsd-2))) +(define-public fluida-lv2 + (package + (name "fluida-lv2") + (version "0.6") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/brummer10/Fluida.lv2") + (commit (string-append "v" version)) + (recursive? #t))) ; references specific commit of libxputty + (file-name (git-file-name name version)) + (sha256 + (base32 + "1v0bh4wcx79y832qigc3my8ixq0r4ica6z5fg2rg946pkh20x1a2")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "INSTALL_DIR=" + (assoc-ref %outputs "out") "/lib/lv2") + "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (inputs + `(("cairo" ,cairo) + ("libx11" ,libx11) + ("lv2" ,lv2) + ("fluidsynth" ,fluidsynth))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://github.com/brummer10/Fluida.lv2") + (synopsis "Fluidsynth as an LV2 audio plugin") + (description "Fluida is an audio plugin in the LV2 format that acts as +a frontend for fluidsynth.") + (license license:gpl2+))) + (define-public surge-synth (package (name "surge-synth") -- 2.30.0 ------------=_1615026181-740-1--