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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8BC34158042 for ; Thu, 31 Oct 2024 14:39:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A62AFE086F; Thu, 31 Oct 2024 14:39:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 8FEE3E086F for ; Thu, 31 Oct 2024 14:39:30 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1779342F92 for ; Thu, 31 Oct 2024 14:39:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39B05AE7 for ; Thu, 31 Oct 2024 14:39:28 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1730385314.4d364dc53f1b0d3b7939a48d69e5bcd17784eb12.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/grub2-theme-preview/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/grub2-theme-preview/grub2-theme-preview-2.8.0-r3.ebuild X-VCS-Directories: x11-misc/grub2-theme-preview/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 4d364dc53f1b0d3b7939a48d69e5bcd17784eb12 X-VCS-Branch: master Date: Thu, 31 Oct 2024 14:39:28 +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: e5d963fd-c68a-49e1-a767-f710c96eff6d X-Archives-Hash: c1b979b81c770f466d2b616aa073bdb8 commit: 4d364dc53f1b0d3b7939a48d69e5bcd17784eb12 Author: Sebastian Pipping gentoo org> AuthorDate: Thu Oct 31 14:28:53 2024 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Thu Oct 31 14:35:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d364dc5 x11-misc/grub2-theme-preview: Require a supported GRUB platform Also add PYthon 3.13 support Bug: https://bugs.gentoo.org/942582 Signed-off-by: Sebastian Pipping gentoo.org> .../grub2-theme-preview-2.8.0-r3.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-misc/grub2-theme-preview/grub2-theme-preview-2.8.0-r3.ebuild b/x11-misc/grub2-theme-preview/grub2-theme-preview-2.8.0-r3.ebuild new file mode 100644 index 000000000000..42e886bd2b2a --- /dev/null +++ b/x11-misc/grub2-theme-preview/grub2-theme-preview-2.8.0-r3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +PYTHON_COMPAT=( python3_{9..13} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 + +DESCRIPTION="Preview a GRUB 2.x theme using KVM/QEMU" +HOMEPAGE="https://github.com/hartwork/grub2-theme-preview" +SRC_URI="https://github.com/hartwork/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="grub_platforms_efi-32 grub_platforms_efi-64 grub_platforms_pc" +REQUIRED_USE="|| ( grub_platforms_efi-32 grub_platforms_efi-64 grub_platforms_pc )" + +RDEPEND="app-emulation/qemu + dev-libs/libisoburn + sys-fs/mtools + sys-boot/grub:2[grub_platforms_efi-32?,grub_platforms_efi-64?,grub_platforms_pc?] + grub_platforms_efi-32? ( + || ( sys-firmware/edk2 sys-firmware/edk2-bin ) + ) + grub_platforms_efi-64? ( + || ( sys-firmware/edk2 sys-firmware/edk2-bin ) + ) +" +DEPEND="test? ( dev-python/parameterized[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest