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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22E40158089 for ; Wed, 1 Nov 2023 18:06:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A4B42BC0B1; Wed, 1 Nov 2023 18:06:48 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EFE42BC0B1 for ; Wed, 1 Nov 2023 18:06:48 +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 74DF5335C2E for ; Wed, 1 Nov 2023 18:06:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDC2311BC for ; Wed, 1 Nov 2023 18:06:45 +0000 (UTC) From: "George Zenner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "George Zenner" Message-ID: <1698861944.86fba2c653fec0ac3aacb77b59ffdbd10f9101d8.dev@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/ugrd/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-kernel/ugrd/Manifest sys-kernel/ugrd/ugrd-0.7.4.ebuild X-VCS-Directories: sys-kernel/ugrd/ X-VCS-Committer: dev X-VCS-Committer-Name: George Zenner X-VCS-Revision: 86fba2c653fec0ac3aacb77b59ffdbd10f9101d8 X-VCS-Branch: dev Date: Wed, 1 Nov 2023 18:06:45 +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: 1a944f18-875a-4b46-b401-7459c88d5811 X-Archives-Hash: d6baf5e9456ff7b344b785af16c33318 commit: 86fba2c653fec0ac3aacb77b59ffdbd10f9101d8 Author: Zen pyl onl> AuthorDate: Wed Nov 1 18:05:44 2023 +0000 Commit: George Zenner pyl onl> CommitDate: Wed Nov 1 18:05:44 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=86fba2c6 sys-kernel/ugrd: add 0.7.4 Signed-off-by: Zen pyl.onl> sys-kernel/ugrd/Manifest | 1 + sys-kernel/ugrd/ugrd-0.7.4.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest index 1fcb174d15..dc66f2061a 100644 --- a/sys-kernel/ugrd/Manifest +++ b/sys-kernel/ugrd/Manifest @@ -1 +1,2 @@ DIST ugrd-0.7.3.tar.gz 38573 BLAKE2B 86567ec5d0790af6667de4b6f8fa9f6ae83e49df7b0a32be7b4f0a7ea3f305a6206c25e35d86f6927b747a091ca9957755bf5049716e9b14b466c6c64dd536ee SHA512 40b081b7cd916db5c133ddaa74b3589081088d62572339d749a9eb6fda17d06041a5bf352c73130ded6fc3e0c44fc5893217e0a1bace8cf31dde362ccc5b1fe4 +DIST ugrd-0.7.4.tar.gz 38882 BLAKE2B 7bafa5e555093c862e1d34f6aa9c3079210f597f10504aa0f96f3ee2d189fb684c8b57ef197fab989406a90fc7f472f240269a30a03287a5059a1898fd4d229d SHA512 b8e893fc12cc7a790ef59060583afd1a3b0407ca00b8d06df3c78f435133d4ebbd21c3e70eae1e4a309dcadc20ffd62fb3ead6adb5eb19d925cc92716e70c651 diff --git a/sys-kernel/ugrd/ugrd-0.7.4.ebuild b/sys-kernel/ugrd/ugrd-0.7.4.ebuild new file mode 100644 index 0000000000..71ef701393 --- /dev/null +++ b/sys-kernel/ugrd/ugrd-0.7.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..12} pypy3 ) +inherit distutils-r1 optfeature + +DESCRIPTION="Python based initramfs generator with TOML defintions" +HOMEPAGE="https://github.com/desultory/ugrd" +SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="app-misc/pax-utils" + +src_install() { + # Create the ugrd config directory + keepdir /etc/ugrd +} + +pkg_postinst() { + optfeature "ugrd.crypto.cryptsetup support" sys-fs/cryptsetup + optfeature "ugrd.fs.btrfs support" sys-fs/btrfs-progs + optfeature "ugrd.crypto.gpg support" app-crypt/gnupg + optfeature "ugrd.fs.zfs support" sys-fs/zfs +}