Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/microcode-ctl: ChangeLog microcode-ctl-1.17-r1.ebuild
Date: Mon, 05 May 2008 04:06:05
Message-Id: E1Jsrxe-0008K9-DE@stork.gentoo.org
1 vapier 08/05/05 04:05:58
2
3 Modified: ChangeLog
4 Added: microcode-ctl-1.17-r1.ebuild
5 Log:
6 Convert init.d script to POSIX #219751 by yuen and split off microcode-data #194271 by Mike Nerone.
7 (Portage version: 2.2_pre5)
8
9 Revision Changes Path
10 1.29 sys-apps/microcode-ctl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 17 Jun 2007 10:51:08 -0000 1.28
23 +++ ChangeLog 5 May 2008 04:05:57 -0000 1.29
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-apps/microcode-ctl
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/ChangeLog,v 1.28 2007/06/17 10:51:08 armin76 Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/ChangeLog,v 1.29 2008/05/05 04:05:57 vapier Exp $
30 +
31 +*microcode-ctl-1.17-r1 (05 May 2008)
32 +
33 + 05 May 2008; Mike Frysinger <vapier@g.o> files/microcode_ctl.rc,
34 + +microcode-ctl-1.17-r1.ebuild:
35 + Convert init.d script to POSIX #219751 by yuen and split off microcode-data
36 + #194271 by Mike Nerone.
37
38 17 Jun 2007; Raúl Porcel <armin76@g.o> microcode-ctl-1.17.ebuild:
39 x86 stable wrt #182263
40
41
42
43 1.1 sys-apps/microcode-ctl/microcode-ctl-1.17-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/microcode-ctl-1.17-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/microcode-ctl/microcode-ctl-1.17-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: microcode-ctl-1.17-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 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-r1.ebuild,v 1.1 2008/05/05 04:05:57 vapier 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"
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 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 }
92
93
94
95 --
96 gentoo-commits@l.g.o mailing list