Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/alsa-utils: ChangeLog alsa-utils-1.0.26-r2.ebuild
Date: Wed, 27 Mar 2013 10:12:48
Message-Id: 20130327101243.C02362171D@flycatcher.gentoo.org
1 ssuominen 13/03/27 10:12:43
2
3 Modified: ChangeLog alsa-utils-1.0.26-r2.ebuild
4 Log:
5 Remove redudant toolchain-funcs from inherit and show postinst msgs only for first install wrt #440448 by "poletti.marco"
6
7 (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.332 media-sound/alsa-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/alsa-utils/ChangeLog?rev=1.332&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/alsa-utils/ChangeLog?rev=1.332&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/alsa-utils/ChangeLog?r1=1.331&r2=1.332
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v
19 retrieving revision 1.331
20 retrieving revision 1.332
21 diff -u -r1.331 -r1.332
22 --- ChangeLog 13 Mar 2013 10:56:39 -0000 1.331
23 +++ ChangeLog 27 Mar 2013 10:12:43 -0000 1.332
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/alsa-utils
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.331 2013/03/13 10:56:39 ago Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.332 2013/03/27 10:12:43 ssuominen Exp $
29 +
30 + 27 Mar 2013; Samuli Suominen <ssuominen@g.o>
31 + alsa-utils-1.0.26-r2.ebuild:
32 + Remove redudant toolchain-funcs from inherit and show postinst msgs only for
33 + first install wrt #440448 by "poletti.marco"
34
35 13 Mar 2013; Agostino Sarubbo <ago@g.o> alsa-utils-1.0.25-r1.ebuild:
36 Stable for ppc, wrt bug #406101
37
38
39
40 1.2 media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild?r1=1.1&r2=1.2
45
46 Index: alsa-utils-1.0.26-r2.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- alsa-utils-1.0.26-r2.ebuild 8 Feb 2013 19:37:27 -0000 1.1
53 +++ alsa-utils-1.0.26-r2.ebuild 27 Mar 2013 10:12:43 -0000 1.2
54 @@ -1,9 +1,9 @@
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild,v 1.1 2013/02/08 19:37:27 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.26-r2.ebuild,v 1.2 2013/03/27 10:12:43 ssuominen Exp $
59
60 EAPI=5
61 -inherit eutils systemd udev toolchain-funcs
62 +inherit eutils systemd udev
63
64 DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)"
65 HOMEPAGE="http://www.alsa-project.org/"
66 @@ -66,14 +66,15 @@
67 }
68
69 pkg_postinst() {
70 - echo
71 - elog "To take advantage of the init script, and automate the process of"
72 - elog "saving and restoring sound-card mixer levels you should"
73 - elog "add alsasound to the boot runlevel. You can do this as"
74 - elog "root like so:"
75 - elog " # rc-update add alsasound boot"
76 - echo
77 - ewarn "The ALSA core should be built into the kernel or loaded through other"
78 - ewarn "means. There is no longer any modular auto(un)loading in alsa-utils."
79 - echo
80 + if [[ -z ${REPLACING_VERSIONS} ]]; then
81 + elog
82 + elog "To take advantage of the init script, and automate the process of"
83 + elog "saving and restoring sound-card mixer levels you should"
84 + elog "add alsasound to the boot runlevel. You can do this as"
85 + elog "root like so:"
86 + elog "# rc-update add alsasound boot"
87 + ewarn
88 + ewarn "The ALSA core should be built into the kernel or loaded through other"
89 + ewarn "means. There is no longer any modular auto(un)loading in alsa-utils."
90 + fi
91 }