Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/microcode-data: microcode-data-20120606.ebuild ChangeLog
Date: Wed, 06 Jun 2012 19:29:51
Message-Id: 20120606192916.1BE282004B@flycatcher.gentoo.org
1 flameeyes 12/06/06 19:29:16
2
3 Modified: ChangeLog
4 Added: microcode-data-20120606.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 sys-apps/microcode-data/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 12 Dec 2011 22:39:57 -0000 1.17
24 +++ ChangeLog 6 Jun 2012 19:29:16 -0000 1.18
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/microcode-data
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.17 2011/12/12 22:39:57 flameeyes Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.18 2012/06/06 19:29:16 flameeyes Exp $
31 +
32 +*microcode-data-20120606 (06 Jun 2012)
33 +
34 + 06 Jun 2012; Diego E. Pettenò <flameeyes@g.o>
35 + +microcode-data-20120606.ebuild:
36 + Version bump.
37
38 *microcode-data-20111110 (12 Dec 2011)
39
40
41
42
43 1.1 sys-apps/microcode-data/microcode-data-20120606.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/microcode-data-20120606.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/microcode-data-20120606.ebuild?rev=1.1&content-type=text/plain
47
48 Index: microcode-data-20120606.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20120606.ebuild,v 1.1 2012/06/06 19:29:16 flameeyes Exp $
53
54 EAPI=4
55
56 inherit toolchain-funcs
57
58 NUM="21385"
59 DESCRIPTION="Intel IA32 microcode update data"
60 HOMEPAGE="http://urbanmyth.org/microcode/"
61 SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz"
62
63 LICENSE="intel-ucode"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586
69
70 S=${WORKDIR}
71
72 src_unpack() {
73 unpack ${A}
74 cp "${FILESDIR}"/intel-microcode2ucode.c ./ || die
75 }
76
77 src_compile() {
78 tc-env_build emake intel-microcode2ucode
79 ./intel-microcode2ucode microcode.dat || die
80 }
81
82 src_install() {
83 insinto /lib/firmware
84 doins -r microcode.dat intel-ucode
85 }
86
87 pkg_postinst() {
88 elog "The microcode available for Intel CPUs has been updated. You'll need"
89 elog "to reload the code into your processor. If you're using the init.d:"
90 elog "/etc/init.d/microcode_ctl restart"
91 }