commit: b1d719fea31ca5b3f1c615c494dda15858baf3f2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Sun Aug 10 21:11:59 2025 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sun Aug 10 21:25:55 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d719fe
sys-apps/cpuid: add 20250513 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> sys-apps/cpuid/Manifest | 1 + sys-apps/cpuid/cpuid-20250513.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest index c44f9d52f83a..552a455cad64 100644 --- a/sys-apps/cpuid/Manifest +++ b/sys-apps/cpuid/Manifest @@ -1 +1,2 @@ DIST cpuid-20250419.src.tar.gz 163083 BLAKE2B 933a429b24332aead28efe9867df74d3bb63593cf61c4e87707e6a834a487dd7ecf5226167644b4d7ccd1a2e965d3bc041b84be5606ec5b1e160ad4f7aa1ff77 SHA512 e155875895bbf3d66a3e70fb45f6d1f7aa74d0ebf56f0dd1f56dc590f686107d2c1367e86e032b8702caa2d9dc5582420478e3f8e9d49263d24561e42eff0c64 +DIST cpuid-20250513.src.tar.gz 164335 BLAKE2B 090b0ae9c32b41d2e1d113dcffd1734b600e89a5a3d832ede4421f8318f378115f7724913e898ffa72f2fc7336f902802bb8538a08077dddcf628d339d198084 SHA512 7447b3c1781eb7ce664789d056bdea8257c55426524afb4b5be11e1df0579ddafa5cc6599d70ea625ce46953ba84416bbda3c6bbad281f5805e35448d062df8d diff --git a/sys-apps/cpuid/cpuid-20250513.ebuild b/sys-apps/cpuid/cpuid-20250513.ebuild new file mode 100644 index 000000000000..e75b289a5929 --- /dev/null +++ b/sys-apps/cpuid/cpuid-20250513.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs" +HOMEPAGE="http://www.etallen.com/cpuid.html" +SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" + +BDEPEND=" + app-alternatives/gzip + dev-lang/perl +" + +DOCS=( "ChangeLog" "FUTURE" ) + +PATCHES=( "${FILESDIR}/${PN}-20241023-makefile.patch" ) + +src_prepare() { + default + + tc-export CC +} + +src_install() { + emake BUILDROOT="${ED}" install + + einstalldocs +}
