Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/cpuid/
Date: Sat, 01 Oct 2022 23:33:22
Message-Id: 1664666276.d60a00610dcab44f9ba2d3f80badb07c173a761a.conikost@gentoo
1 commit: d60a00610dcab44f9ba2d3f80badb07c173a761a
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 1 23:17:56 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 1 23:17:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d60a0061
7
8 sys-apps/cpuid: add 20220927
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 sys-apps/cpuid/Manifest | 1 +
13 sys-apps/cpuid/cpuid-20220927.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
17 index d19ce65d2cab..dff181b173d1 100644
18 --- a/sys-apps/cpuid/Manifest
19 +++ b/sys-apps/cpuid/Manifest
20 @@ -1 +1,2 @@
21 DIST cpuid-20220812.src.tar.gz 137109 BLAKE2B 158f152d55b0d8f8ca2df59fc19b9f91142296ef4657b6b2b39ca401abfb26db822be7eadb3a4010847483e75aa213b64756dec6cc625db8c96c8fe8e2a8c468 SHA512 f57c1bb78bad3a9a0d210d5da2a57ea6ffeca83c677f20423dc11af551684ba417b8e5641559cf1d5077567937bd2b2350f232e317ff7be388727983be2c1f6a
22 +DIST cpuid-20220927.src.tar.gz 137355 BLAKE2B 70c51273fb87fe86a4bf1ddef938275474ad3af496cfdbc8e1b8e7dcf3f33b478340fcd3c8c49c6a0d2fe4927e399977e9c53cab118da0098eae2cc83cea51fc SHA512 f621c4cf8cbe027133442aa29018b9b52eb4d0e45a362cf613fee772456ac9e3347582c2feacb6d3358602f6da6425fcd88924e1ba937c89a5eaac43b1f9143f
23
24 diff --git a/sys-apps/cpuid/cpuid-20220927.ebuild b/sys-apps/cpuid/cpuid-20220927.ebuild
25 new file mode 100644
26 index 000000000000..0f77190b474c
27 --- /dev/null
28 +++ b/sys-apps/cpuid/cpuid-20220927.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs"
38 +HOMEPAGE="http://www.etallen.com/cpuid.html"
39 +SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="-* ~amd64 ~x86"
44 +
45 +BDEPEND="
46 + app-arch/gzip
47 + dev-lang/perl
48 +"
49 +
50 +DOCS=( "ChangeLog" "FUTURE" )
51 +
52 +PATCHES=( "${FILESDIR}/${PN}-20220620-makefile.patch" )
53 +
54 +src_prepare() {
55 + default
56 +
57 + tc-export CC
58 +}
59 +
60 +src_install() {
61 + emake BUILDROOT="${ED}" install
62 +
63 + einstalldocs
64 +}