From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] linux: alsa: update to 1.1.1 Date: Sat, 16 Apr 2016 20:51:36 +0200 Message-ID: <20160416205136.098b5806@scratchpost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37100) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arVJr-00054p-7O for guix-devel@gnu.org; Sat, 16 Apr 2016 14:51:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1arVJn-0003YE-Vd for guix-devel@gnu.org; Sat, 16 Apr 2016 14:51:47 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:49243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arVJn-0003VG-Lm for guix-devel@gnu.org; Sat, 16 Apr 2016 14:51:43 -0400 Received: from localhost (91.141.2.40.wireless.dyn.drei.com [91.141.2.40]) by dd1012.kasserver.com (Postfix) with ESMTPSA id DF6921CA0622 for ; Sat, 16 Apr 2016 20:51:40 +0200 (CEST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org 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.