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