Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/microcode-data: microcode-data-20140430.ebuild ChangeLog
Date: Fri, 30 May 2014 20:23:14
Message-Id: 20140530202309.E22212004E@flycatcher.gentoo.org
1 hwoarang 14/05/30 20:23:09
2
3 Modified: ChangeLog
4 Added: microcode-data-20140430.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
9
10 Revision Changes Path
11 1.29 sys-apps/microcode-data/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 6 Mar 2014 02:08:41 -0000 1.28
24 +++ ChangeLog 30 May 2014 20:23:09 -0000 1.29
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-apps/microcode-data
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.28 2014/03/06 02:08:41 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.29 2014/05/30 20:23:09 hwoarang Exp $
30 +
31 +*microcode-data-20140430 (30 May 2014)
32 +
33 + 30 May 2014; Markos Chandras <hwoarang@g.o>
34 + +microcode-data-20140430.ebuild:
35 + Version bump
36
37 *microcode-data-20140122 (06 Mar 2014)
38
39
40
41
42 1.1 sys-apps/microcode-data/microcode-data-20140430.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/microcode-data-20140430.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/microcode-data/microcode-data-20140430.ebuild?rev=1.1&content-type=text/plain
46
47 Index: microcode-data-20140430.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20140430.ebuild,v 1.1 2014/05/30 20:23:09 hwoarang Exp $
52
53 EAPI="4"
54
55 inherit toolchain-funcs
56
57 # Find updates by searching and clicking the first link (hopefully it's the one):
58 # http://www.intel.com/content/www/us/en/search.html?keyword=Processor+Microcode+Data+File
59
60 NUM="23829"
61 DESCRIPTION="Intel IA32 microcode update data"
62 HOMEPAGE="http://inertiawar.com/microcode/ https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=${NUM}"
63 SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz"
64
65 LICENSE="intel-ucode"
66 SLOT="0"
67 KEYWORDS="-* ~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586
71
72 S=${WORKDIR}
73
74 src_unpack() {
75 default
76 cp "${FILESDIR}"/intel-microcode2ucode.c ./ || die
77 }
78
79 src_compile() {
80 tc-env_build emake intel-microcode2ucode
81 ./intel-microcode2ucode microcode.dat || die
82 }
83
84 src_install() {
85 insinto /lib/firmware
86 doins -r microcode.dat intel-ucode
87 }
88
89 pkg_postinst() {
90 elog "The microcode available for Intel CPUs has been updated. You'll need"
91 elog "to reload the code into your processor. If you're using the init.d:"
92 elog "/etc/init.d/microcode_ctl restart"
93 }