Codebase list alsa-lib / 133ae70
[svn-buildpackage] Tagging alsa-lib 1.0.25-4 git-svn-id: svn://anonscm.debian.org/svn/pkg-alsa/tags/alsa-lib/1.0.25-4@2686 9eaf2def-abe4-0310-ac0d-9aefe66b05c3 Jordi Mallach 11 years ago
5 changed file(s) with 54 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
0 alsa-lib (1.0.25-3) UNRELEASED; urgency=low
0 alsa-lib (1.0.25-4) unstable; urgency=low
1
2 * Add htcl_remove_useless_assert.patch: apply patch from git to remove
3 incorrect assert which causes KMix to crash on KDE logins
4 (thanks, Ralf Jung; closes: #681078).
5
6 -- Jordi Mallach <jordi@debian.org> Fri, 03 Aug 2012 23:35:47 +0200
7
8 alsa-lib (1.0.25-3) unstable; urgency=low
19
210 * Merge from Ubuntu:
311 - Remove trailing whitespace character from the end of the
412 DEB_HOST_MULTIARCH definition, as it was breaking the plugin
513 directory path.
6
7 -- Jordi Mallach <jordi@debian.org> Mon, 13 Feb 2012 10:38:42 +0100
14 * Mark libasound2-dev Multi-Arch: same (closes: #666763).
15 * Enable hardening flags, using a patch from Simon Ruderich,
16 (closes: #662685).
17 * Build-Depend on dpkg-dev (>= 1.16.1) for buildflags.mk usage.
18 * Bump Standards-Version to 3.9.3, no changes needed.
19
20 -- Jordi Mallach <jordi@debian.org> Sat, 19 May 2012 18:12:58 +0200
821
922 alsa-lib (1.0.25-2) unstable; urgency=low
1023
77 debhelper (>= 9),
88 dh-autoreconf,
99 doxygen,
10 dpkg-dev (>= 1.16.1),
1011 gcc-multilib [amd64],
1112 lib32gcc1 [amd64],
1213 libc6-dev-i386 [amd64],
1314 python-dev
14 Standards-Version: 3.9.2
15 Standards-Version: 3.9.3
1516 Homepage: http://www.alsa-project.org/
1617 Vcs-Svn: svn://anonscm.debian.org/pkg-alsa/trunk/alsa-lib
1718 Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-alsa/trunk/alsa-lib/
3435 Package: libasound2-dev
3536 Architecture: linux-any
3637 Section: libdevel
38 Multi-Arch: same
3739 Provides: libasound-dev
3840 Depends: libasound2 (= ${binary:Version}), libc6-dev | libc-dev, ${misc:Depends}
3941 Suggests: libasound2-doc
0 From 86e27cdbf119440101a850e1b44baebfefe863ca Mon Sep 17 00:00:00 2001
1 From: Martin Sandsmark <martin.sandsmark@kde.org>
2 Date: Thu, 5 Jul 2012 09:40:07 +0200
3 Subject: [PATCH 1/1] hctl: Remove a useless assert
4
5 The case where the element is unavailable (for example gone away since
6 the event was created) is handled beneath.
7
8 See also bug 5471.
9 https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5471
10
11 Signed-off-by: Takashi Iwai <tiwai@suse.de>
12 ---
13 src/control/hcontrol.c | 1 -
14 1 file changed, 1 deletion(-)
15
16 diff --git a/src/control/hcontrol.c b/src/control/hcontrol.c
17 index 8ffc434..ee1d907 100644
18 --- a/src/control/hcontrol.c
19 +++ b/src/control/hcontrol.c
20 @@ -761,7 +761,6 @@ static int snd_hctl_handle_event(snd_hctl_t *hctl, snd_ctl_event_t *event)
21 if (event->data.elem.mask & (SNDRV_CTL_EVENT_MASK_VALUE |
22 SNDRV_CTL_EVENT_MASK_INFO)) {
23 elem = snd_hctl_find_elem(hctl, &event->data.elem.id);
24 - assert(elem);
25 if (!elem)
26 return -ENOENT;
27 res = snd_hctl_elem_throw_event(elem, event->data.elem.mask &
28 --
29 1.7.10.4
30
00 add-maintainer-mode.patch
11 multiarch-safe-dlopen-search-path.patch
22 spelling_fixes.patch
3 htcl_remove_useless_assert.patch
1717 '-Vbidev:Depends=libc6-dev-i386'
1818 endif
1919
20 CFLAGS = -g -Wall -D_GNU_SOURCE
20 export DEB_CFLAGS_MAINT_APPEND = -g -Wall -D_GNU_SOURCE
2121
22 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
23 CFLAGS += -O0
24 else
25 CFLAGS += -O2
26 endif
22 DPKG_EXPORT_BUILDFLAGS = 1
23 include /usr/share/dpkg/buildflags.mk
2724
2825 autoreconf-stamp:
2926 dh_testdir