From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 10:32:46 2019 Received: (at submit) by debbugs.gnu.org; 1 Nov 2019 14:32:46 +0000 Received: from localhost ([127.0.0.1]:56764 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQXyn-0004ca-TF for submit@debbugs.gnu.org; Fri, 01 Nov 2019 10:32:46 -0400 Received: from lists.gnu.org ([209.51.188.17]:41936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQXEA-0000ru-N6 for submit@debbugs.gnu.org; Fri, 01 Nov 2019 09:44:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57142) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iQXE9-0001eC-An for guix-patches@gnu.org; Fri, 01 Nov 2019 09:44:34 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, RECEIVED_FROM_WINDOWS_HOST,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iQXE7-0003H2-De for guix-patches@gnu.org; Fri, 01 Nov 2019 09:44:33 -0400 Received: from uhrz-exch-pmb07.ad.uni-bielefeld.de ([129.70.208.133]:26768 helo=smtp.uni-bielefeld.de) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iQXE5-000306-Cc for guix-patches@gnu.org; Fri, 01 Nov 2019 09:44:31 -0400 Received: from localhost (212.100.50.105) by uhrz-exch-pmb07.ad.uni-bielefeld.de (129.70.208.133) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1847.3; Fri, 1 Nov 2019 14:44:22 +0100 Date: Fri, 1 Nov 2019 14:44:18 +0100 From: Florian Paul Schmidt To: Subject: v2 - [Patch] gnu: lilv: Enable python bindings. Message-ID: <20191101144418.5c05b942@uni-bielefeld.de> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; x86_64-unknown-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/GQH1TiH6g..i1Y1BD7TiEuI" X-Originating-IP: [212.100.50.105] X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 [fuzzy] X-Received-From: 129.70.208.133 X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 01 Nov 2019 10:32:43 -0400 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.6 (--) --MP_/GQH1TiH6g..i1Y1BD7TiEuI Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, do please include me in replies since I'm not subscribed to guix-patches.. Kind regards, FPS --MP_/GQH1TiH6g..i1Y1BD7TiEuI Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-lilv-Enable-python-bindings.patch" >From 096a799b91fa6db12caaf7ad433852daf3ca6529 Mon Sep 17 00:00:00 2001 From: FPS Date: Fri, 1 Nov 2019 14:35:49 +0100 Subject: [PATCH] gnu: lilv: Enable python bindings. --- gnu/packages/audio.scm | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 88b5696a9b..c7b88d9ecf 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1825,6 +1825,7 @@ included are the command line utilities @code{send_osc} and @code{dump_osc}.") (build-system waf-build-system) (arguments `(#:tests? #f ; no check target + #:configure-flags (list "--bindings") #:phases (modify-phases %standard-phases (add-before @@ -1833,7 +1834,16 @@ included are the command line utilities @code{send_osc} and @code{dump_osc}.") (setenv "LDFLAGS" (string-append "-Wl,-rpath=" (assoc-ref outputs "out") "/lib")) - #t))))) + #t)) + (add-after + 'unpack 'full-store-path-to-shared-library + (lambda* (#:key outputs #:allow-other-keys) + (with-directory-excursion "bindings/python" + (substitute* + "lilv.py" + (("liblilv-0.so") (string-append (assoc-ref outputs "out") + "/lib/liblilv-0.so")))) + #t))))) ;; Required by lilv-0.pc. (propagated-inputs `(("lv2" ,lv2) @@ -1841,8 +1851,9 @@ included are the command line utilities @code{send_osc} and @code{dump_osc}.") ("sord" ,sord) ("sratom" ,sratom))) (native-inputs - `(("pkg-config" ,pkg-config))) - (home-page "https://drobilla.net/software/lilv/") + `(("python" ,python) + ("pkg-config" ,pkg-config))) + (home-page "https://drobilla.net/software/lilv") (synopsis "Library to simplify use of LV2 plugins in applications") (description "Lilv is a C library to make the use of LV2 plugins as simple as possible -- 2.22.0 --MP_/GQH1TiH6g..i1Y1BD7TiEuI-- From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 03 11:59:03 2019 Received: (at 38022-done) by debbugs.gnu.org; 3 Nov 2019 16:59:03 +0000 Received: from localhost ([127.0.0.1]:35012 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRJDT-0002GE-19 for submit@debbugs.gnu.org; Sun, 03 Nov 2019 11:59:03 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:32801) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iRJDP-0002Fd-Kk for 38022-done@debbugs.gnu.org; Sun, 03 Nov 2019 11:59:00 -0500 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 1EF1B21368; Sun, 3 Nov 2019 11:58:54 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Sun, 03 Nov 2019 11:58:54 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= from:to:subject:in-reply-to:references:date:message-id :mime-version:content-type; s=fm1; bh=0565iPdrTo8Nu2LeKmtATYkz3V g0q+yAbI0UhwkdWU8=; b=nlqWdQb8eZcAKeC+DYrxeIsS6e692/y6wDEjnyFMT0 iFhwJlKl/WP0eZAjBt2g2ybfj24hCikQqvohF3/UD+TdjeKgd/eHXp9lzhib5lc9 uQR5V0IHTqOgTj1oV6pIfdrIDhcVLe0NWBxlLkO40fVrKDyDzEvu5MMVD+cYZvHs M1kNrxIdbwv3Wx+J3dTTEA3b9MxFWIRLe7DDjWQRD+Dvt54a7ggi+kpaAC/978kE H8qEM4S3uYvVlnwSEERSUpg3X2fkkpEtICC2M5FWmggYN/hA4WiIvqUXCxRd3ROb v6Iytd9hclb5ck5wkSafyTOHy7TQ+eg5ZDadvjyTthVg== 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-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=0565iP drTo8Nu2LeKmtATYkz3Vg0q+yAbI0UhwkdWU8=; b=Ufq9F5XY18SZl+F6MAAfuP TRlrFyy06Z/4vdTOAgr9fQLgYL1JA8BxkTfX37w23Qlr+or7JWNrjDKW62pXZhoe ujjP7nbhwlftH2iGyLzqwTxuDf6irZ87tx+YBYB5SWqD6Mh/lnYdoM6fPTv4DRml BW1AxNykNpk8qgoCbS+W9gN8B4w0iDDWGf5pYSs9S/mCypsFEbDST+pKcnkxc6qx YtjdyAxYOORKdN8M5Ae5guxp1T0lM0DJWtcM6bkhV5Oq/trPZwugcUyQjPaX8gTi x/j5eWM9+58vZuN21QrVOxMlsM/HC18n5TZpnOMcJPy0Vsip42FeiqYDfjic2uZg == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrudduuddgleelucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufgjfhgffffkgggtsehgtderredtredtnecuhfhrohhmpeforghrihhu shcuuegrkhhkvgcuoehmsggrkhhkvgesfhgrshhtmhgrihhlrdgtohhmqeenucfkphepie dvrdduiedrudelvddrudehtdenucfrrghrrghmpehmrghilhhfrhhomhepmhgsrghkkhgv sehfrghsthhmrghilhdrtghomhenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from localhost (ti0006q161-0149.bb.online.no [62.16.192.150]) by mail.messagingengine.com (Postfix) with ESMTPA id 76D98306005B; Sun, 3 Nov 2019 11:58:53 -0500 (EST) From: Marius Bakke To: Florian Paul Schmidt , 38022-done@debbugs.gnu.org Subject: Re: [bug#38022] v2 - [Patch] gnu: lilv: Enable python bindings. In-Reply-To: <20191101144418.5c05b942@uni-bielefeld.de> References: <20191101144418.5c05b942@uni-bielefeld.de> User-Agent: Notmuch/0.29.1 (https://notmuchmail.org) Emacs/26.3 (x86_64-pc-linux-gnu) Date: Sun, 03 Nov 2019 17:58:51 +0100 Message-ID: <87zhhcoq0k.fsf@devup.no> 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: 38022-done 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 (-) --=-=-= Content-Type: text/plain Florian Paul Schmidt writes: > Hi, > > do please include me in replies since I'm not subscribed to > guix-patches.. Applied with a commit message and minor cosmetic adjustments, thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl2/B0sACgkQoqBt8qM6 VPpbpwf8CYRGc5UMIm4zAC0TfVr64Cl9kzFnrL68RW5JVFrvyzQOsGg/j+XXRWEp G11+1BTMOHegMqgX6afJBCLniPpL2yaOqnelRZaHyoBXiZmPLzMl/yca/jMkYXbv aNY9AOwIOYAOOj1WF3ZK0Ua/kDZH6exK2VAEk0rSYue3a4qNqzdvP52vp8/UU8FD QhPkJieyhJTsv7LDijl91qvft+EpCHIMhvxcuCdti6Edf2IEXmsUzwqF8iFglwuS Qpkk4wEZkLN6g3LPEPA6iaGfvbj/7y+t0BIjWZf3PodYJtN1VGCQjHs4hRpHZQNH 6E15F0sMEbfKM+kzRrTRzEDiJ6jw9g== =t3PY -----END PGP SIGNATURE----- --=-=-=-- From unknown Wed Aug 20 01:20:46 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 02 Dec 2019 12: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