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: Thu, 08 Jul 2021 09:18:31
Message-Id: 1625735874.85999cc21ac3d6cc4266ba0c12094dcc4b9dbabd.conikost@gentoo
1 commit: 85999cc21ac3d6cc4266ba0c12094dcc4b9dbabd
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 8 09:16:27 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 8 09:17:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85999cc2
7
8 sys-apps/cpuid: move app-arch/gzip to BDEPEND
9
10 Closes: https://bugs.gentoo.org/801133
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 sys-apps/cpuid/cpuid-20201006-r1.ebuild | 35 +++++++++++++++++++++++++++++++++
15 1 file changed, 35 insertions(+)
16
17 diff --git a/sys-apps/cpuid/cpuid-20201006-r1.ebuild b/sys-apps/cpuid/cpuid-20201006-r1.ebuild
18 new file mode 100644
19 index 00000000000..6c29a01ce82
20 --- /dev/null
21 +++ b/sys-apps/cpuid/cpuid-20201006-r1.ebuild
22 @@ -0,0 +1,35 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit toolchain-funcs
29 +
30 +DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs"
31 +HOMEPAGE="http://www.etallen.com/cpuid.html"
32 +SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz"
33 +
34 +LICENSE="GPL-2+"
35 +SLOT="0"
36 +KEYWORDS="amd64 x86"
37 +
38 +BDEPEND="
39 + app-arch/gzip
40 + dev-lang/perl
41 +"
42 +
43 +DOCS=( "ChangeLog" "FUTURE" )
44 +
45 +PATCHES=( "${FILESDIR}/${PN}-20200203-makefile.patch" )
46 +
47 +src_prepare() {
48 + default
49 +
50 + tc-export CC
51 +}
52 +
53 +src_install() {
54 + emake BUILDROOT="${ED}" install
55 +
56 + einstalldocs
57 +}