guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] linux: alsa: update to 1.1.1


From: Danny Milosavljevic
Subject: [PATCH] linux: alsa: update to 1.1.1
Date: Sat, 16 Apr 2016 20:51:36 +0200

Hi,

this updates ALSA to 1.1.1.

I removed alsa-lib-mips-atomic-fix.patch since I don't have MIPS and thus can't 
test it. So could someone please check it and re-add?

I also added alsa-plugins. It contains shared objects to be loaded in asoundrc 
or user asoundrc. For example it contains a pulseaudio module and a downmixing 
module. asoundrc can be configured to provide a normal alsa device and then 
redirect the output, like this:

pcm.pulse {
    type pulse
}

ctl.pulse {
    type pulse
}

pcm.default pulse
ctl.default pulse

While testing it I noticed that the checksums of the same 1.1.1 files changed 
multiple times. Does anyone know whether ALSA replaced the release?

* update ALSA to 1.1.1
---
 b/gnu/packages/linux.scm |   33 ++++++++++++++++++++++++++++-----
 1 file changed, 28 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 09886be..4b3f902 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -799,7 +799,7 @@ intercept and print the system calls executed by the 
program.")
 (define-public alsa-lib
   (package
     (name "alsa-lib")
-    (version "1.0.27.1")
+    (version "1.1.1")
     (source (origin
              (method url-fetch)
              (uri (string-append
@@ -807,8 +807,9 @@ intercept and print the system calls executed by the 
program.")
                    version ".tar.bz2"))
              (sha256
               (base32
-               "0fx057746dj7rjdi0jnvx2m9b0y1lgdkh1hks87d8w32xyihf3k9"))
-             (patches (list (search-patch "alsa-lib-mips-atomic-fix.patch")))))
+               "0sa24fy3qf3jg63xxvfb7j8halj1qmdbcak2lyfx8bpd8hqnriwa"))
+             ;(patches (list (search-patch "alsa-lib-mips-atomic-fix.patch")))
+))
     (build-system gnu-build-system)
     (home-page "http://www.alsa-project.org/";)
     (synopsis "The Advanced Linux Sound Architecture libraries")
@@ -817,17 +818,39 @@ intercept and print the system calls executed by the 
program.")
 MIDI functionality to the Linux-based operating system.")
     (license license:lgpl2.1+)))
 
+(define-public alsa-plugins
+  (package
+    (name "alsa-plugins")
+    (version "1.1.1")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append
+                   "ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-";
+                   version ".tar.bz2"))
+             (sha256
+              (base32
+               "1w81z5jlwqhd1l2m7qrq69lc4k9dnrg1wn52jsl2hrf3hbhd394f"))))
+    (build-system gnu-build-system)
+    (home-page "http://www.alsa-project.org/";)
+    (synopsis "The Advanced Linux Sound Architecture plugins")
+    (description
+     "The Advanced Linux Sound Architecture (ALSA) provides audio and
+MIDI functionality to the Linux-based operating system.")
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("alsa-lib" ,alsa-lib)))
+    (license (list license:lgpl2.1+ license:gpl2+))))
+
 (define-public alsa-utils
   (package
     (name "alsa-utils")
-    (version "1.1.0")
+    (version "1.1.1")
     (source (origin
              (method url-fetch)
              (uri (string-append "ftp://ftp.alsa-project.org/pub/utils/";
                                  name "-" version ".tar.bz2"))
              (sha256
               (base32
-               "1wa88wvqcfhak9x3y65wzzwxmmyxb5bv2gyj7lnm653fnwsk271v"))))
+               "0hc09dcmy5rc76vhxd9bs05igk1a956kbklg10dq687lpad7qxc9"))))
     (build-system gnu-build-system)
     (arguments
      ;; XXX: Disable man page creation until we have DocBook.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]