Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/microcode-ctl/
Date: Thu, 04 Jan 2018 10:00:51
Message-Id: 1515060041.fffca5afe1723cb9aac20ede7650d84cf338e15d.polynomial-c@gentoo
1 commit: fffca5afe1723cb9aac20ede7650d84cf338e15d
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 09:59:51 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 10:00:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fffca5af
7
8 sys-apps/microcode-ctl: Bump to version 1.36
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 sys-apps/microcode-ctl/Manifest | 1 +
13 sys-apps/microcode-ctl/microcode-ctl-1.36.ebuild | 49 ++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/sys-apps/microcode-ctl/Manifest b/sys-apps/microcode-ctl/Manifest
17 index b80549aef65..84bca224328 100644
18 --- a/sys-apps/microcode-ctl/Manifest
19 +++ b/sys-apps/microcode-ctl/Manifest
20 @@ -1,3 +1,4 @@
21 DIST microcode_ctl-1.23.tar.xz 755448 BLAKE2B ad7811536584343254fee8ee77a192834ef3aedac49615d8a4d6dd46f8ad68f01d1a01ee8e54988ade5f6878dc903da0c9f08a93f5efed041cc7bd43c864969c SHA512 f33b4fd43c39b3d4e9b6eb9a12285c7ea26ee43e6c4aa1e45f9aa92a0d2b7d55d1a950ee82d8aea5c86faa15dd1e85e829719b6c772a2c09f262bea630bc7edb
22 DIST microcode_ctl-1.27.tar.xz 856240 BLAKE2B c9811226e0ad4d26d3ca82b90d8fc34486bb88e7d4e811e543fbd88da8ca2f5cd4b8f9a535f804f2690b0c02e2ac8ab686837a0bf14facd3e792ac1e7502ce1a SHA512 ac4bce583f756b777488605687fe1bef0038763ed4a0afc51b454140f00caf04ef8a6d790d95684aa82c857f9cefd59b2413b96ad3d0c349da4b88166c5aa556
23 DIST microcode_ctl-1.28.tar.xz 876760 BLAKE2B 8523bdc59ab21a6ec2e1110116bfb4c7a18e859e7f1da65d9e765274b47d5c1909d61eb18017ecc9369b7eedb43cf11cbdc495439aaf1c525bc8d8f7c63ca3a0 SHA512 ed5deb0f96c895b7783c23a1c91d2e03f713a793a21140b049e1b5f08f553dce103b4a11016ebd5076424b1032342d009d952e0089badfea2e91ad486d2cf7f8
24 +DIST microcode_ctl-1.36.tar.xz 3553884 BLAKE2B 0667971e546a135aba6c49f7eb04908595540ab3ecaebbb175cabda0aeb3396fdb145245a7fab44ec095f447f88e3b78990b22cd4f07568ac4b80ef321109fa1 SHA512 be35b670eba65747aef8bc7a78e989d3481fa0cbfb1635332821da75decef2540f3249ab6ecbe5b95f4d52e9a982cda2c7df31d2f406c0ba27c0354b6b70c2bc
25
26 diff --git a/sys-apps/microcode-ctl/microcode-ctl-1.36.ebuild b/sys-apps/microcode-ctl/microcode-ctl-1.36.ebuild
27 new file mode 100644
28 index 00000000000..4ca58a10661
29 --- /dev/null
30 +++ b/sys-apps/microcode-ctl/microcode-ctl-1.36.ebuild
31 @@ -0,0 +1,49 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="6"
36 +
37 +inherit toolchain-funcs versionator
38 +
39 +MY_P=${PN/-/_}-${PV}
40 +DESCRIPTION="Intel processor microcode update utility"
41 +HOMEPAGE="https://pagure.io/microcode_ctl"
42 +SRC_URI="https://releases.pagure.org/${PN/-/_}/${MY_P}.tar.xz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="-* ~amd64 ~x86"
47 +IUSE="selinux"
48 +
49 +DEPEND=""
50 +RDEPEND=">=sys-firmware/intel-microcode-20090330[monolithic(+)]
51 + selinux? ( sec-policy/selinux-cpucontrol )"
52 +
53 +S=${WORKDIR}/${MY_P}
54 +
55 +src_compile() {
56 + emake \
57 + CC="$(tc-getCC)" \
58 + CFLAGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"
59 +}
60 +
61 +src_install() {
62 + dosbin microcode_ctl
63 + doman microcode_ctl.8
64 + dodoc Changelog README
65 +}
66 +
67 +pkg_preinst() {
68 + local _v
69 + for _v in ${REPLACING_VERSIONS}; do
70 + if ! version_is_at_least 1.28-r1 ${_v}; then
71 + # This is an upgrade
72 + elog "The init scripts have been removed as they are unsafe. If you want to update"
73 + elog "the microcode in your system, please use an initramfs. See bug #528712#41 for"
74 + elog "details (and bug #557278 for genkernel users)."
75 + fi
76 +
77 + # Show this elog only once
78 + break
79 + done
80 +}