sys-kernel/ugrd: new package, add 0.7.1

Signed-off-by: Zen <z@pyl.onl>
This commit is contained in:
Zen
2023-10-31 16:01:53 -05:00
parent 11db70be92
commit 457ea60582
3 changed files with 41 additions and 0 deletions

1
sys-kernel/ugrd/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST 0.7.1.zip 40064 BLAKE2B afdc6f5a4a83898d81353604bde4282a010a3294fd5c5ef76236d745919a1aad2a470c1443dd4568bfaab9cfc745e05248e2f8949e0426518d8bc517ea01242c SHA512 43ccb1bb2bb99cbd84d532c4dbf278dee3b930a4f8e2cc81119262af2dfe8a0006243ee4ed2893200d82eb7a770af9ae5b5940cc46451dae8c2a5d97d7c934af

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>dev@pyl.onl</email>
<name>Zen</name>
</maintainer>
<use>
<flag name="btrfs">Pull btrfs-progs as a dependency</flag>
<flag name="cryptsetup">Pull cryptsetup as a dependency</flag>
<flag name="gpg">Pull gnupg as a dependency</flag>
<flag name="zfs">Pull zfs as a dependency</flag>
</use>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# 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..11} pypy3 )
inherit distutils-r1
DESCRIPTION="Python based initramfs generator with TOML defintions"
HOMEPAGE="https://github.com/desultory/ugrd"
SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.zip"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64"
IUSE="cryptsetup btrfs -gpg -zfs"
RDEPEND="app-misc/pax-utils
cryptsetup? ( sys-fs/cryptsetup )
btrfs? ( sys-fs/btrfs-progs )
gpg? ( app-crypt/gnupg )
zfs? ( sys-fs/zfs )"
DEPEND=""
BDEPEND=""