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 0C103158064 for ; Mon, 13 May 2024 17:48:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAB112BC01D; Mon, 13 May 2024 17:48:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B0C7A2BC01D for ; Mon, 13 May 2024 17:48:42 +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 8D4C1343023 for ; Mon, 13 May 2024 17:48:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 064421AC1 for ; Mon, 13 May 2024 17:48:39 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1715570780.169ad220ed2dfdd93e087817b3046d9ab1fd4a35.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-kernel/ugrd/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-kernel/ugrd/ugrd-0.22.0.ebuild sys-kernel/ugrd/ugrd-1.5.0.ebuild X-VCS-Directories: sys-kernel/ugrd/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 169ad220ed2dfdd93e087817b3046d9ab1fd4a35 X-VCS-Branch: master Date: Mon, 13 May 2024 17:48:39 +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: 9d8662b5-7ae4-4932-970a-072b5fd21d8a X-Archives-Hash: 271072f814aeee39cd5d36daa2342f8b commit: 169ad220ed2dfdd93e087817b3046d9ab1fd4a35 Author: Zen pyl onl> AuthorDate: Mon May 13 03:26:20 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Mon May 13 03:26:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=169ad220 sys-kernel/ugrd: Removed 0.22.0 added 1.5.0 Signed-off-by: Zen pyl.onl> .../ugrd/{ugrd-0.22.0.ebuild => ugrd-1.5.0.ebuild} | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/sys-kernel/ugrd/ugrd-0.22.0.ebuild b/sys-kernel/ugrd/ugrd-1.5.0.ebuild similarity index 71% rename from sys-kernel/ugrd/ugrd-0.22.0.ebuild rename to sys-kernel/ugrd/ugrd-1.5.0.ebuild index 6c369fa202..58b58a6380 100644 --- a/sys-kernel/ugrd/ugrd-0.22.0.ebuild +++ b/sys-kernel/ugrd/ugrd-1.5.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{11..12} ) -inherit distutils-r1 optfeature +inherit distutils-r1 optfeature shell-completion DESCRIPTION="Python based initramfs generator with TOML defintions" HOMEPAGE="https://github.com/desultory/ugrd" @@ -15,10 +15,12 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" -RDEPEND="app-misc/pax-utils" -DEPEND=">=dev-python/zenlib-1.7.2[${PYTHON_USEDEP}] ->=dev-python/pycpio-0.9.0[${PYTHON_USEDEP}] -sys-apps/pciutils" +RDEPEND=" + app-misc/pax-utils + >=dev-python/zenlib-2.1.1[${PYTHON_USEDEP}] + >=dev-python/pycpio-1.1.1[${PYTHON_USEDEP}] + sys-apps/pciutils +" src_install() { # Call the distutils-r1_src_install function to install the package @@ -33,7 +35,12 @@ src_install() { # Install the kernel preinst.d hook keepdir /etc/kernel/preinst.d exeinto /etc/kernel/preinst.d - doexe hooks/51-ugrd.install + doexe hooks/installkernel/51-ugrd.install + exeinto /lib/kernel/install.d + doexe hooks/kernel-install/51-ugrd.install + # Install bash autocomplete script + dobashcomp completion/ugrd + dozshcomp completion/_ugrd } pkg_postinst() {