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 CFC2515800A for ; Wed, 30 Aug 2023 05:36:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E7AE2BC035; Wed, 30 Aug 2023 05:36:21 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 041A82BC01F for ; Wed, 30 Aug 2023 05:36:21 +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 43E3C335D6D for ; Wed, 30 Aug 2023 05:36:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE56D10E4 for ; Wed, 30 Aug 2023 05:36:18 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1693302766.6cdcee796e337d2450a630165b63f634ef43f511.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-firmware/lenovolegionlinux/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-firmware/lenovolegionlinux/lenovolegionlinux-9999.ebuild X-VCS-Directories: sys-firmware/lenovolegionlinux/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 6cdcee796e337d2450a630165b63f634ef43f511 X-VCS-Branch: master Date: Wed, 30 Aug 2023 05:36:18 +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: 71b3d73f-f609-414c-9fc4-069fd57ab7ff X-Archives-Hash: ce3b8229a569ac709a274ad681402534 commit: 6cdcee796e337d2450a630165b63f634ef43f511 Author: Gonçalo Duarte gmail com> AuthorDate: Tue Aug 29 09:49:04 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Tue Aug 29 09:52:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6cdcee79 sys-firmware/lenovolegionlinux: fix python build error (upstream change) Signed-off-by: Gonçalo Duarte gmail.com> sys-firmware/lenovolegionlinux/lenovolegionlinux-9999.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys-firmware/lenovolegionlinux/lenovolegionlinux-9999.ebuild b/sys-firmware/lenovolegionlinux/lenovolegionlinux-9999.ebuild index 4b0098d1dc..8eed68df1d 100644 --- a/sys-firmware/lenovolegionlinux/lenovolegionlinux-9999.ebuild +++ b/sys-firmware/lenovolegionlinux/lenovolegionlinux-9999.ebuild @@ -13,9 +13,13 @@ EGIT_REPO_URI="https://github.com/johnfanv2/LenovoLegionLinux.git" DESCRIPTION="Lenovo Legion Linux kernel module" HOMEPAGE="https://github.com/johnfanv2/LenovoLegionLinux" -RDEPEND="sys-kernel/linux-headers +BDEPEND="sys-kernel/linux-headers sys-apps/lm-sensors sys-apps/dmidecode + sys-apps/sed +" + +RDEPEND=" legion-tools? ( dev-python/PyQt5 dev-python/pyyaml dev-python/argcomplete dev-python/darkdetect ) downgrade-nvidia? ( <=x11-drivers/nvidia-drivers-525 ) legion-acpi? ( sys-power/acpid ) @@ -39,6 +43,8 @@ src_compile() { ) KERNELVERSION=${KV_FULL} linux-mod-r1_src_compile if use legion-tools; then + #fix python package version + sed -i "s/version = _VERSION/version = 1.0.0/g" "${WORKDIR}/${P}/python/legion_linux/setup.cfg" #Define build dir (fix sandboxed) cd "${WORKDIR}/${P}/python/legion_linux" distutils-r1_src_compile --build-dir "${WORKDIR}/${P}/python/legion_linux/build"