From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/i7z/files/, app-benchmarks/i7z/
Date: Thu, 16 Jan 2025 14:16:30 +0000 (UTC) [thread overview]
Message-ID: <1737036980.6b519a41ff8dbb81b407142252891e2053bcae72.pacho@gentoo> (raw)
commit: 6b519a41ff8dbb81b407142252891e2053bcae72
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 14:13:40 2025 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Jan 16 14:16:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b519a41
app-benchmarks/i7z: Migrate to qt6
By the way, also provide a working desktop file for regular desktop
users to more easily launch i7z gui.
Thanks-to: Andreas Sturmlechner
Closes: https://bugs.gentoo.org/947627
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
app-benchmarks/i7z/files/i7z_GUI.policy | 18 +++++++
app-benchmarks/i7z/i7z-93_p20131012-r3.ebuild | 71 +++++++++++++++++++++++++++
2 files changed, 89 insertions(+)
diff --git a/app-benchmarks/i7z/files/i7z_GUI.policy b/app-benchmarks/i7z/files/i7z_GUI.policy
new file mode 100644
index 000000000000..03756867650a
--- /dev/null
+++ b/app-benchmarks/i7z/files/i7z_GUI.policy
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE policyconfig PUBLIC "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN" "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
+<policyconfig>
+ <vendor>i7z</vendor>
+ <vendor_url>https://github.com/ajaiantilal/i7z</vendor_url>
+ <icon_name>i7z</icon_name>
+ <action id="i7z_GUI">
+ <description>Run i7z_GUI as root</description>
+ <message>Authentication is required to run i7z GUI as root</message>
+ <defaults>
+ <allow_any>auth_admin</allow_any>
+ <allow_inactive>auth_admin</allow_inactive>
+ <allow_active>auth_admin</allow_active>
+ </defaults>
+ <annotate key="org.freedesktop.policykit.exec.path">/usr/sbin/i7z_GUI</annotate>
+ <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
+ </action>
+</policyconfig>
diff --git a/app-benchmarks/i7z/i7z-93_p20131012-r3.ebuild b/app-benchmarks/i7z/i7z-93_p20131012-r3.ebuild
new file mode 100644
index 000000000000..b4f65ba24612
--- /dev/null
+++ b/app-benchmarks/i7z/i7z-93_p20131012-r3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop qmake-utils toolchain-funcs
+
+COMMIT="5023138d7c35c4667c938b853e5ea89737334e92"
+DESCRIPTION="A better i7 (and now i3, i5) reporting tool for Linux"
+HOMEPAGE="https://github.com/ajaiantilal/i7z"
+SRC_URI="https://github.com/ajaiantilal/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="policykit qt6"
+
+RDEPEND="
+ sys-libs/ncurses:0=
+ qt6? (
+ policykit? ( sys-auth/polkit )
+ dev-qt/qtbase:6[gui,widgets]
+ )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+ "${FILESDIR}"/i7z-0.27.2-ncurses.patch
+ "${FILESDIR}"/qt5.patch
+ "${FILESDIR}"/gcc5.patch
+
+ # From Debian
+ "${FILESDIR}"/fix-insecure-tempfile.patch
+ "${FILESDIR}"/fix_cpuid_asm.patch
+ "${FILESDIR}"/hyphen-used-as-minus-sign.patch
+ "${FILESDIR}"/install-i7z_rw_registers.patch
+ "${FILESDIR}"/use_stdbool.patch
+ "${FILESDIR}"/nehalem.patch
+ "${FILESDIR}"/gcc-10.patch
+ "${FILESDIR}"/typos.patch
+)
+
+src_configure() {
+ tc-export CC PKG_CONFIG
+ cd GUI || die
+ use qt6 && eqmake6 ${PN}_GUI.pro
+}
+
+src_compile() {
+ default
+
+ if use qt6; then
+ emake -C GUI clean
+ emake -C GUI
+ fi
+}
+
+src_install() {
+ emake DESTDIR="${ED}" docdir=/usr/share/doc/${PF} install
+
+ if use qt6; then
+ dosbin GUI/i7z_GUI
+ if use policykit; then
+ insinto /usr/share/polkit-1/actions
+ doins "${FILESDIR}/i7z_GUI.policy"
+ make_desktop_entry "pkexec --disable-internal-agent /usr/sbin/i7z_GUI" i7z kcmprocessor
+ fi
+ fi
+}
next reply other threads:[~2025-01-16 14:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-16 14:16 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2020-05-31 12:42 [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/i7z/files/, app-benchmarks/i7z/ Pacho Ramos
2017-03-16 21:49 James Le Cuirot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1737036980.6b519a41ff8dbb81b407142252891e2053bcae72.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox