From: Danny Milosavljevic <dannym@scratchpost.org>
To: guix-devel@gnu.org
Subject: [PATCH] linux: alsa: update to 1.1.1
Date: Sat, 16 Apr 2016 20:51:36 +0200 [thread overview]
Message-ID: <20160416205136.098b5806@scratchpost.org> (raw)
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.
next reply other threads:[~2016-04-16 18:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-16 18:51 Danny Milosavljevic [this message]
2016-04-18 18:54 ` [PATCH] linux: alsa: update to 1.1.1 Leo Famulari
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160416205136.098b5806@scratchpost.org \
--to=dannym@scratchpost.org \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.