From unknown Mon Aug 18 14:16:39 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#28041 <28041@debbugs.gnu.org> To: bug#28041 <28041@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add dssi. Reply-To: bug#28041 <28041@debbugs.gnu.org> Date: Mon, 18 Aug 2025 21:16:39 +0000 retitle 28041 [PATCH] gnu: Add dssi. reassign 28041 guix-patches submitter 28041 Danny Milosavljevic severity 28041 normal tag 28041 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 10 20:05:15 2017 Received: (at submit) by debbugs.gnu.org; 11 Aug 2017 00:05:15 +0000 Received: from localhost ([127.0.0.1]:54859 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dfxRx-00084K-L1 for submit@debbugs.gnu.org; Thu, 10 Aug 2017 20:05:14 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34957) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dfxRs-000842-IG for submit@debbugs.gnu.org; Thu, 10 Aug 2017 20:05:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dfxRm-0005Q0-1Q for submit@debbugs.gnu.org; Thu, 10 Aug 2017 20:05:03 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50242) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dfxRl-0005Pk-V0 for submit@debbugs.gnu.org; Thu, 10 Aug 2017 20:05:01 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54095) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dfxRk-0001tW-Hf for guix-patches@gnu.org; Thu, 10 Aug 2017 20:05:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dfxRh-0005FM-93 for guix-patches@gnu.org; Thu, 10 Aug 2017 20:05:00 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:56502) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dfxRh-0004yy-2M for guix-patches@gnu.org; Thu, 10 Aug 2017 20:04:57 -0400 Received: from dayas.3.home (178.113.149.133.wireless.dyn.drei.com [178.113.149.133]) by dd1012.kasserver.com (Postfix) with ESMTPSA id E512A1CA0794; Fri, 11 Aug 2017 02:04:47 +0200 (CEST) From: Danny Milosavljevic To: guix-patches@gnu.org Subject: [PATCH] gnu: Add dssi. Date: Fri, 11 Aug 2017 02:04:42 +0200 Message-Id: <20170811000442.21345-1-dannym@scratchpost.org> X-Mailer: git-send-email 2.14.0 Tags: patch X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit Cc: Danny Milosavljevic 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: -5.0 (-----) * gnu/packages/music.scm (dssi): New variable. --- gnu/packages/music.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 40996b11b..10a93a940 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -3170,3 +3170,35 @@ MuseScore can also play back scores through the built-in sequencer and SoundFont sample library.") (home-page "https://musescore.org") (license license:gpl2))) + +(define-public dssi + (package + (name "dssi") + (version "1.1.1") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/dssi/dssi/" version + "/dssi-" version ".tar.gz")) + (sha256 + (base32 + "0kl1hzhb7cykzkrqcqgq1dk4xcgrcxv0jja251aq4z4l783jpj7j")))) + (build-system gnu-build-system) + (inputs + `(("alsa-lib" ,alsa-lib) + ("jack-2" ,jack-2) + ("ladspa" ,ladspa) + ("libsamplerate" ,libsamplerate) + ("libsndfile" ,libsndfile) + ("liblo" ,liblo))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (synopsis "Audio plugin API for soft synths and effects") + (description "DSSI is a plugin API for software instruments with user +interfaces, permitting them to be hosted in-process by audio applications. +It is intended to be simple, GUI-toolkit-agnostic, and slightly biased +towards familiarity with MIDI. The DSSI distribution package contains +a JACK/ALSA-sequencer reference host and some plugins as well as the +specification and header.") + (home-page "http://dssi.sourceforge.net/") + (license license:gpl2+))) ; and lgpl-2.1+ From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 15 14:30:03 2017 Received: (at 28041) by debbugs.gnu.org; 15 Aug 2017 18:30:03 +0000 Received: from localhost ([127.0.0.1]:38980 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dhgbL-0000I2-3V for submit@debbugs.gnu.org; Tue, 15 Aug 2017 14:30:03 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:49819) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dhgbI-0000HL-LG for 28041@debbugs.gnu.org; Tue, 15 Aug 2017 14:30:01 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 2CA1A227F6; Tue, 15 Aug 2017 14:30:00 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute5.internal (MEProxy); Tue, 15 Aug 2017 14:30:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=FpsJid1hDZmx3Grjzr3VkzCrY3kvRYieDsUrbiDGV qQ=; b=FEPdYgZbj6VZ7v8tz+cc3qfJGsNhCcosOoKidRTKkFBWLRAoJ+f1BUps4 2FI2KVV/MykDPhlmnkuWtbsxXKM2RZUVEyLuDv3YpYH62/yIbYZSJ+8FDwuyL4m1 Shs2PpV/kCw/ALymSoKneteDReAnb0ZUvt9gLCZxjNI+AEK8N6L1D8tY7HatqYWc XjFFx6dTqw/aAFFaf51IZmanaUa6sp5QjhqIBl9Yl1upPTABBD3hXowGNDSFlEuT mRSKTMrty1vbXjM/msmZfLzO4xpBaltSGnDErP3XJ3Jj2hb1v45wohQhQ8+LMhEB 2IjvLcuQdlGDfzOyE0suYxg0KO+Xg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=FpsJid1hDZmx3Grjzr 3VkzCrY3kvRYieDsUrbiDGVqQ=; b=kCGNLco+bq40EH5kMaCTGAj4ZOj3Ux8/vy mUggSvBtuBaJaUbzZGmc/XURkKhlRzFZf2Ll1eA6b84+fNksrJSQwLvG99vS7kR7 cexcRzK4dWwGOCbJH+o19VuqNTYpHEnXfNFyk6m3jrPemn9g93k9CCmYgygxq0sL iim68M9DEoz8gDDCKjumgTaJWDB80zY3LNePNARSrsh6X2Q6cok+dframnmiHkQr 47gOG81latynEypoUMw7OjgphD6hAz2AR7WalnZFFQ4u9mjIvUM2+XVALBtdTbTm tUgcpDzO6yrZjRPcNpclhkvwsOJkAoeH+aa5sxYQ3tIeEZL1hmxg== X-ME-Sender: X-Sasl-enc: c5zw2zIxvkZy8VdsYT2/Nkqws7Au9VPfhQZ3Y3L1MjZK 1502821799 Received: from localhost (unknown [188.113.81.93]) by mail.messagingengine.com (Postfix) with ESMTPA id B34CE24697; Tue, 15 Aug 2017 14:29:59 -0400 (EDT) From: Marius Bakke To: Danny Milosavljevic , 28041@debbugs.gnu.org Subject: Re: [bug#28041] [PATCH] gnu: Add dssi. In-Reply-To: <20170811000442.21345-1-dannym@scratchpost.org> References: <20170811000442.21345-1-dannym@scratchpost.org> User-Agent: Notmuch/0.25 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu) Date: Tue, 15 Aug 2017 20:29:40 +0200 Message-ID: <87a8301y7f.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 28041 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: -0.7 (/) --=-=-= Content-Type: text/plain Danny Milosavljevic writes: > * gnu/packages/music.scm (dssi): New variable. [...] > + (description "DSSI is a plugin API for software instruments with user > +interfaces, permitting them to be hosted in-process by audio applications. > +It is intended to be simple, GUI-toolkit-agnostic, and slightly biased > +towards familiarity with MIDI. The DSSI distribution package contains ^^^ missing space > +a JACK/ALSA-sequencer reference host and some plugins as well as the > +specification and header.") > + (home-page "http://dssi.sourceforge.net/") > + (license license:gpl2+))) ; and lgpl-2.1+ Can you be a little more verbose? I'm guessing some parts are LGPL2.1+, but interface with the stricter GPL2+, so the result is effectively the latter? The rest LGTM! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlmTPZQACgkQoqBt8qM6 VPruPQgA0UeksptZxWaZcBEb68J/BPskWCk/P8f/zKKpOhmGJSOkvNW/nlKzI+uk afnNIZ+WKaJnGtyPvT/1eumfSANqo7a085ofcikDM+0DQzighqLRSUxwh7GV6BtI Bv+9Nx4yJteGPDTtPyr7rQSDaxv6oTDCEx3Q+kE3j5N4mLFyuRYVhef0PzdARvIQ AM3WVcFSRiIqxF7BVMD9SLDTrmFRjaILTh92zg7DuGuUBytRBs+WGrcb5HDnn1ER ZbGiWD8564lYzJfSHWR9B+ro3QO64GBx4wsSdp1tKep98qn1cH3rb7DKjQVcD9v+ X2dUnl1jautsVkkso95n6FKoN8WMjA== =c6qJ -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 15 14:58:36 2017 Received: (at control) by debbugs.gnu.org; 15 Aug 2017 18:58:36 +0000 Received: from localhost ([127.0.0.1]:39137 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dhh2y-0000YX-J0 for submit@debbugs.gnu.org; Tue, 15 Aug 2017 14:58:36 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:43128) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dhh2x-0000YR-2B for control@debbugs.gnu.org; Tue, 15 Aug 2017 14:58:35 -0400 Received: from localhost (178.113.138.12.wireless.dyn.drei.com [178.113.138.12]) by dd1012.kasserver.com (Postfix) with ESMTPSA id 59FDB1CA02C1 for ; Tue, 15 Aug 2017 20:58:33 +0200 (CEST) Date: Tue, 15 Aug 2017 20:58:30 +0200 From: Danny Milosavljevic To: Message-ID: <20170815205830.595cbbd8@scratchpost.org> X-Mailer: Claws Mail 3.15.0-dirty (GTK+ 2.24.31; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 28041 [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [85.13.128.8 listed in list.dnswl.org] 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: control 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.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: close 28041 [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [85.13.128.8 listed in list.dnswl.org] 0.0 TVD_SPACE_RATIO No description available. 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject close 28041 From unknown Mon Aug 18 14:16:39 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 13 Sep 2017 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator