GNU bug report logs - #28137
[PATCH] gnu: Add python-pyalsaaudio.

Previous Next

Package: guix-patches;

Reported by: Danny Milosavljevic <dannym <at> scratchpost.org>

Date: Fri, 18 Aug 2017 14:52:02 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: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: bug#28137: closed (Re: [bug#28137] [PATCH] gnu: Add
 python-pyalsaaudio.)
Date: Tue, 29 Aug 2017 12:09:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#28137: [PATCH] gnu: Add python-pyalsaaudio.

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 28137 <at> debbugs.gnu.org.

-- 
28137: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=28137
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: Danny Milosavljevic <dannym <at> scratchpost.org>
Cc: 28137-done <at> debbugs.gnu.org
Subject: Re: [bug#28137] [PATCH] gnu: Add python-pyalsaaudio.
Date: Tue, 29 Aug 2017 20:07:54 +0800
Danny Milosavljevic <dannym <at> scratchpost.org> writes:

>> Here is my update for this patch:
>
> Thanks! LGTM!

Pushed, thanks!

[Message part 3 (message/rfc822, inline)]
From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: guix-patches <at> gnu.org
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>
Subject: [PATCH] gnu: Add python-pyalsaaudio.
Date: Fri, 18 Aug 2017 16:51:28 +0200
* gnu/packages/audio.scm (python-pyalsaaudio, python2-pyalsaaudio): New
variables.
---
 gnu/packages/audio.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 40700cae3..5897e5f18 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2906,3 +2906,47 @@ code, used in @code{libtoxcore}.")
 06.10 RPE-LTP lossy speech compression algorithm.")
     (home-page "http://quut.com/gsm/")
     (license (license:non-copyleft "file://COPYRIGHT"))))
+
+(define-public python-pyalsaaudio
+  (package
+    (name "python-pyalsaaudio")
+    (version "0.8.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "pyalsaaudio" version))
+        (sha256
+          (base32
+            "1180ypn9596rq4b7y7dyv627j1q0fqilmkkrckclnzsdakdgis44"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f ; FIXME
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'setup-alsa
+           (lambda _
+             (mkdir-p "/tmp/foo")
+             (setenv "HOME" "/tmp/foo")
+             ;; TODO use snd-dummy kernel module.
+             (call-with-output-file "/tmp/foo/.asoundrc"
+               (lambda (port)
+                 (format port "
+pcm.!default {
+    type hw
+    card 0
+}
+ctl.!default {
+    type hw
+    card 0
+}
+")))
+             #t)))))
+    (inputs
+     `(("alsa-lib" ,alsa-lib)))
+    (home-page "http://larsimmisch.github.io/pyalsaaudio/")
+    (synopsis "ALSA bindings for Python")
+    (description "@code{pyalsaaudio} provides ALSA bindings for Python.")
+    (license license:psfl)))
+
+(define-public python2-pyalsaaudio
+  (package-with-python2 python-pyalsaaudio))



This bug report was last modified 7 years and 360 days ago.

Previous Next


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