summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2011-09-22 20:26:48 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2011-09-22 20:26:48 +0000
commit0513110f949346df0642792e88af5a659e7001d3 (patch)
treeb4745fe000b81dbe806f74a7161c1b00540ac1f8 /sys-apps
parentAdd cron dependency (bug #383385 by Toralf Förster) and bump to EAPI 4. (diff)
downloadgentoo-2-0513110f949346df0642792e88af5a659e7001d3.tar.gz
gentoo-2-0513110f949346df0642792e88af5a659e7001d3.tar.bz2
gentoo-2-0513110f949346df0642792e88af5a659e7001d3.zip
Version bump.
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/microcode-data/ChangeLog8
-rw-r--r--sys-apps/microcode-data/microcode-data-20110915.ebuild30
2 files changed, 37 insertions, 1 deletions
diff --git a/sys-apps/microcode-data/ChangeLog b/sys-apps/microcode-data/ChangeLog
index bf5a6a43e206..e55107af1e9a 100644
--- a/sys-apps/microcode-data/ChangeLog
+++ b/sys-apps/microcode-data/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/microcode-data
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.14 2011/05/10 18:21:36 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.15 2011/09/22 20:26:48 flameeyes Exp $
+
+*microcode-data-20110915 (22 Sep 2011)
+
+ 22 Sep 2011; Diego E. Pettenò <flameeyes@gentoo.org>
+ +microcode-data-20110915.ebuild:
+ Version bump.
10 May 2011; Diego E. Pettenò <flameeyes@gentoo.org>
microcode-data-20110428.ebuild:
diff --git a/sys-apps/microcode-data/microcode-data-20110915.ebuild b/sys-apps/microcode-data/microcode-data-20110915.ebuild
new file mode 100644
index 000000000000..6501d621f8cd
--- /dev/null
+++ b/sys-apps/microcode-data/microcode-data-20110915.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20110915.ebuild,v 1.1 2011/09/22 20:26:48 flameeyes Exp $
+
+EAPI=4
+
+NUM="20429"
+DESCRIPTION="Intel IA32 microcode update data"
+HOMEPAGE="http://urbanmyth.org/microcode/"
+SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz"
+
+LICENSE="intel-ucode"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586
+
+S=${WORKDIR}
+
+src_install() {
+ insinto /lib/firmware
+ doins microcode.dat
+}
+
+pkg_postinst() {
+ elog "The microcode available for Intel CPUs has been updated. You'll need"
+ elog "to reload the code into your processor. If you're using the init.d:"
+ elog "/etc/init.d/microcode_ctl restart"
+}