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, 10 Oct 2020 13:17:37
Message-Id: 1602335830.63c7d638e29b992634da12b44015a6b0a71b2aa3.conikost@gentoo
1 commit: 63c7d638e29b992634da12b44015a6b0a71b2aa3
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 13:16:38 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 13:17:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c7d638
7
8 sys-apps/cpuid: bump to version 20201006
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 sys-apps/cpuid/Manifest | 1 +
14 sys-apps/cpuid/cpuid-20201006.ebuild | 33 +++++++++++++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
18 index bbd8bf9e72d..80ef1cdbb22 100644
19 --- a/sys-apps/cpuid/Manifest
20 +++ b/sys-apps/cpuid/Manifest
21 @@ -1 +1,2 @@
22 DIST cpuid-20200427.src.tar.gz 115896 BLAKE2B 0c325fe140ffb9e9d1591d414156d280ac6e802eb652f876fcb6888ea4d6cefd485bc6501179a4f7f3db33ca0fe9f64b83214f883b86bda0c8014b81916d893c SHA512 8f943ac517680c8744563f35654f5b5201fde16cfe24264d8ad171ab517b65a6f50dc569789228e095e2b485e5a0d4fe58e2a0d7f199df2b225652689e3a2e83
23 +DIST cpuid-20201006.src.tar.gz 118994 BLAKE2B 05c547858358a92b0c9270066dc33e08693922e4ba765edcba7aca201811c54074a0cd683edb3e9dedf2bb0fd23682b3cc5725e4067b27ec27e0fe979eb22f56 SHA512 f037c1707b49e92f1bd605ec87a0995ae36215d075bcbadfed1d11f5fefda43391b48f10d2517334574aa7e243f0b73d22f1fcbfe1fb133aaf5bad1046e8ba5e
24
25 diff --git a/sys-apps/cpuid/cpuid-20201006.ebuild b/sys-apps/cpuid/cpuid-20201006.ebuild
26 new file mode 100644
27 index 00000000000..c48d21a156d
28 --- /dev/null
29 +++ b/sys-apps/cpuid/cpuid-20201006.ebuild
30 @@ -0,0 +1,33 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs
37 +
38 +DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs"
39 +HOMEPAGE="http://www.etallen.com/cpuid.html"
40 +SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +BDEPEND="dev-lang/perl"
47 +DEPEND="app-arch/gzip"
48 +
49 +DOCS=( "ChangeLog" "FUTURE" )
50 +
51 +PATCHES=( "${FILESDIR}/${PN}-20200203-makefile.patch" )
52 +
53 +src_prepare() {
54 + default
55 +
56 + tc-export CC
57 +}
58 +
59 +src_install() {
60 + emake BUILDROOT="${ED}" install
61 +
62 + einstalldocs
63 +}