Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/microcode-ctl: microcode-ctl-1.17-r2.ebuild ChangeLog microcode-ctl-1.17-r1.ebuild
Date: Sat, 02 May 2009 12:54:16
Message-Id: E1M0EjO-0003tk-KE@stork.gentoo.org
1 armin76 09/05/02 12:54:14
2
3 Modified: ChangeLog
4 Added: microcode-ctl-1.17-r2.ebuild
5 Removed: microcode-ctl-1.17-r1.ebuild
6 Log:
7 Revbump to include new location of microcode.dat file, bug #233141
8 (Portage version: 2.1.6.11/cvs/Linux ia64)
9
10 Revision Changes Path
11 1.30 sys-apps/microcode-ctl/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 5 May 2008 04:05:57 -0000 1.29
24 +++ ChangeLog 2 May 2009 12:54:14 -0000 1.30
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/microcode-ctl
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/ChangeLog,v 1.29 2008/05/05 04:05:57 vapier Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/ChangeLog,v 1.30 2009/05/02 12:54:14 armin76 Exp $
31 +
32 +*microcode-ctl-1.17-r2 (02 May 2009)
33 +
34 + 02 May 2009; Raúl Porcel <armin76@g.o> +files/microcode_ctl.rc-r1,
35 + -microcode-ctl-1.17-r1.ebuild, +microcode-ctl-1.17-r2.ebuild:
36 + Revbump to include new location of microcode.dat file, bug #233141
37
38 *microcode-ctl-1.17-r1 (05 May 2008)
39
40
41
42
43 1.1 sys-apps/microcode-ctl/microcode-ctl-1.17-r2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/microcode-ctl-1.17-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/microcode-ctl-1.17-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: microcode-ctl-1.17-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/microcode-ctl-1.17-r2.ebuild,v 1.1 2009/05/02 12:54:14 armin76 Exp $
53
54 inherit toolchain-funcs
55
56 MY_P=${PN/-/_}-${PV}
57 DESCRIPTION="Intel processor microcode update utility"
58 HOMEPAGE="http://www.urbanmyth.org/microcode"
59 SRC_URI="http://www.urbanmyth.org/microcode/${MY_P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="-* ~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND=">=sys-apps/microcode-data-20090330"
67
68 S=${WORKDIR}/${MY_P}
69
70 src_compile() {
71 emake \
72 CC="$(tc-getCC)" \
73 CFLAGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" \
74 || die "compile problem"
75 }
76
77 src_install() {
78 dosbin microcode_ctl || die "dosbin"
79 doman microcode_ctl.8
80 dodoc Changelog README
81
82 newinitd "${FILESDIR}"/microcode_ctl.rc-r1 microcode_ctl
83 newconfd "${FILESDIR}"/microcode_ctl.conf.d microcode_ctl
84 }
85
86 pkg_postinst() {
87 ewarn "Your kernel must include microcode update support."
88 echo
89 einfo "Microcode updates will be lost at every reboot."
90 einfo "You can use the init.d script to update at boot time."
91 }