From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4663815808B for ; Sun, 15 Sep 2024 13:35:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB1CEE29AE; Sun, 15 Sep 2024 13:35:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF397E29AE for ; Sun, 15 Sep 2024 13:35:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D790C340BDE for ; Sun, 15 Sep 2024 13:35:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 441E227F2 for ; Sun, 15 Sep 2024 13:35:49 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1726407340.45386d41d7eefb42f8d4096172649cde2e309519.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/cpuid/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/cpuid/Manifest sys-apps/cpuid/cpuid-20240912.ebuild X-VCS-Directories: sys-apps/cpuid/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 45386d41d7eefb42f8d4096172649cde2e309519 X-VCS-Branch: master Date: Sun, 15 Sep 2024 13:35:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f3bb88eb-4bd2-4f01-8c9a-7c687adf8563 X-Archives-Hash: d48f5d7d5068004a721728fbcad1e438 commit: 45386d41d7eefb42f8d4096172649cde2e309519 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Sep 15 13:35:18 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Sep 15 13:35:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45386d41 sys-apps/cpuid: add 20240912 Signed-off-by: Conrad Kostecki gentoo.org> sys-apps/cpuid/Manifest | 1 + sys-apps/cpuid/cpuid-20240912.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest index 181327529a15..5bb4931fa7e8 100644 --- a/sys-apps/cpuid/Manifest +++ b/sys-apps/cpuid/Manifest @@ -1 +1,2 @@ DIST cpuid-20240716.src.tar.gz 155562 BLAKE2B 52625a547c70b7fd45d63fea88acfcc938443f1f53c686896f88ef193240b7b9ea76020a48b187689c27fddad4cba8cdd41044ab57f731e488af14fd1a608fa3 SHA512 1efbd3f98253700d2948573025733fb7a3354d008b968c83078d36ddac834c4adae4eeef288214066ad520d23fa1eb0ea2036f878cde20d982a1810e7305b7a4 +DIST cpuid-20240912.src.tar.gz 156818 BLAKE2B c44bf5687f00703815d854cf4d71cbb9d1e6e33561ae9809d90f16a9effd68a6dbdfafd77001aeaccb3be4092807fce4b682f4f243aa362fdbf23edabb319c12 SHA512 fa6bfbcadfd6847bd2224498e02879a3708bff49d3bbf90d80ba2ad4e92b4db8a717185079fa044b50bfbebc798069bf1450a2869c394b0911b92b509d29c013 diff --git a/sys-apps/cpuid/cpuid-20240912.ebuild b/sys-apps/cpuid/cpuid-20240912.ebuild new file mode 100644 index 000000000000..c2868c0d5525 --- /dev/null +++ b/sys-apps/cpuid/cpuid-20240912.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 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}-20220620-makefile.patch" ) + +src_prepare() { + default + + tc-export CC +} + +src_install() { + emake BUILDROOT="${ED}" install + + einstalldocs +}