GNU bug report logs - #32988
[PATCH]: gnu: Add libpd.

Previous Next

Package: guix-patches;

Reported by: iyzsong <at> member.fsf.org (宋文武)

Date: Mon, 8 Oct 2018 14:01:01 UTC

Severity: normal

Tags: patch

Done: iyzsong <at> member.fsf.org (宋文武)

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: iyzsong <at> member.fsf.org (宋文武)
Cc: tracker <at> debbugs.gnu.org
Subject: bug#32988: closed ([PATCH]: gnu: Add libpd.)
Date: Fri, 12 Oct 2018 14:26:01 +0000
[Message part 1 (text/plain, inline)]
Your message dated Fri, 12 Oct 2018 22:24:43 +0800
with message-id <87va67fdjo.fsf <at> member.fsf.org>
and subject line Re: [bug#32988] [PATCH]: gnu: Add libpd.
has caused the debbugs.gnu.org bug report #32988,
regarding [PATCH]: gnu: Add libpd.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
32988: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32988
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: iyzsong <at> member.fsf.org (宋文武)
To: guix-patches <at> gnu.org
Subject: [PATCH]: gnu: Add libpd.
Date: Mon, 08 Oct 2018 21:51:37 +0800
[Message part 3 (text/plain, inline)]
Hello, the follow patch add libpd, which strips audio driver parts from
pd (Pure Data) to make it as an embeddable C library:

[0001-gnu-Add-libpd.patch (text/x-patch, inline)]
From c699c159587934ca36507e5edabd284164a2e850 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= <iyzsong <at> member.fsf.org>
Date: Mon, 8 Oct 2018 21:42:28 +0800
Subject: [PATCH] gnu: Add libpd.

* gnu/packages/music.scm (libpd): New variable.
---
 gnu/packages/music.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 3163e6a8f..69a2ae2fc 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1777,6 +1777,42 @@ programming methods as well as for realizing complex systems for large-scale
 projects.")
     (license license:bsd-3)))
 
+(define-public libpd
+  (package
+    (name "libpd")
+    (version "0.11.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/libpd/libpd.git")
+                    (commit version)
+                    (recursive? #t)))   ; for the 'pure-data' submodule
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "1bcg1d9iyf9n37hwwphmih0c8rd1xcqykil5z1cax6xfs76552nk"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f                      ; no tests
+       #:make-flags '("CC=gcc")
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)            ; no configure script
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (invoke "make" "install"
+                       (string-append "prefix=" out)
+                       ;; XXX: Fix the last 2 lines of 'install' target.
+                       "LIBPD_IMPLIB=NO"
+                       "LIBPD_DEF=NO")))))))
+    (home-page "http://libpd.cc/")
+    (synopsis "Pure Data as an embeddable audio synthesis library")
+    (description
+     "Libpd embedding Pure Data as a DSP library, its main purpose
+is to liberate raw audio rendering from audio drivers and MIDI drivers.")
+    (license license:bsd-3)))
+
 (define-public portmidi
   (package
     (name "portmidi")
-- 
2.19.0

[Message part 5 (message/rfc822, inline)]
From: iyzsong <at> member.fsf.org (宋文武)
To: Leo Famulari <leo <at> famulari.name>
Cc: 32988-done <at> debbugs.gnu.org
Subject: Re: [bug#32988] [PATCH]: gnu: Add libpd.
Date: Fri, 12 Oct 2018 22:24:43 +0800
Leo Famulari <leo <at> famulari.name> writes:

> On Mon, Oct 08, 2018 at 09:51:37PM +0800, 宋文武 wrote:
>> Hello, the follow patch add libpd, which strips audio driver parts from
>> pd (Pure Data) to make it as an embeddable C library:
>
> Cool!
>
>> +    (description
>> +     "Libpd embedding Pure Data as a DSP library, its main purpose
>> +is to liberate raw audio rendering from audio drivers and MIDI drivers.")
>
> How about this?
>
> "Libpd provides Pure Data as an embeddable audio synthesis library.  Its main
> purpose is to liberate raw audio rendering from audio and MIDI drivers."

Sure, thank you for the review!


This bug report was last modified 6 years and 225 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.