diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-13 01:35:25 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-13 01:35:25 +0000 |
commit | 1a9e8d5f9cfb3c49174706ece9e38eb3f879e72e (patch) | |
tree | b4c5d9219596dbfdb9330494f057c022fd7c056e /sys-apps/microcode-data | |
parent | Bug #330937 - Make older portage block incompatible versions of python2. (diff) | |
download | historical-1a9e8d5f9cfb3c49174706ece9e38eb3f879e72e.tar.gz historical-1a9e8d5f9cfb3c49174706ece9e38eb3f879e72e.tar.bz2 historical-1a9e8d5f9cfb3c49174706ece9e38eb3f879e72e.zip |
Version bump.
Package-Manager: portage-2.2_rc94/cvs/Linux x86_64
Diffstat (limited to 'sys-apps/microcode-data')
-rw-r--r-- | sys-apps/microcode-data/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/microcode-data/microcode-data-20100914.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/sys-apps/microcode-data/ChangeLog b/sys-apps/microcode-data/ChangeLog index 2f1c329946f2..e0fe4340cfb1 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-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.8 2010/09/19 19:19:46 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.9 2010/10/13 01:35:25 flameeyes Exp $ + +*microcode-data-20100914 (13 Oct 2010) + + 13 Oct 2010; Diego E. Pettenò <flameeyes@gentoo.org> + +microcode-data-20100914.ebuild: + Version bump. *microcode-data-20100826 (19 Sep 2010) diff --git a/sys-apps/microcode-data/microcode-data-20100914.ebuild b/sys-apps/microcode-data/microcode-data-20100914.ebuild new file mode 100644 index 000000000000..499f7b195f50 --- /dev/null +++ b/sys-apps/microcode-data/microcode-data-20100914.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20100914.ebuild,v 1.1 2010/10/13 01:35:25 flameeyes Exp $ + +NUM="19342" +DESCRIPTION="Intel IA32 microcode update data" +HOMEPAGE="http://urbanmyth.org/microcode/" +SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586 + +S=${WORKDIR} + +src_install() { + insinto /lib/firmware + newins microcode-${PV}.dat microcode.dat || die +} + +pkg_postinst() { + einfo "The microcode available for Intel CPUs has been updated. You'll need" + einfo "to reload the code into your processor. If you're using the init.d:" + einfo "/etc/init.d/microcode_ctl restart" +} |