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