From: "Julien Roy" <julien@jroy.ca>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-kernel/ugrd/
Date: Sun, 5 May 2024 13:19:16 +0000 (UTC) [thread overview]
Message-ID: <1714791751.6bd7769cbdbc0d04ad19d719187a021a2f28c9d9.julien@gentoo> (raw)
commit: 6bd7769cbdbc0d04ad19d719187a021a2f28c9d9
Author: Zen <z <AT> pyl <DOT> onl>
AuthorDate: Sat May 4 03:02:31 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat May 4 03:02:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6bd7769c
sys-kernel/ugrd: Add 1.2.2
Signed-off-by: Zen <z <AT> pyl.onl>
sys-kernel/ugrd/Manifest | 1 +
sys-kernel/ugrd/ugrd-1.2.2.ebuild | 43 +++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/sys-kernel/ugrd/Manifest b/sys-kernel/ugrd/Manifest
index 803c2156fd..cbac703133 100644
--- a/sys-kernel/ugrd/Manifest
+++ b/sys-kernel/ugrd/Manifest
@@ -7,3 +7,4 @@ DIST ugrd-0.22.0.tar.gz 44444 BLAKE2B 01c4cc36ea778c12478b3b2f6db76180f9b7ef8d21
DIST ugrd-1.0.0.tar.gz 46125 BLAKE2B 8f941f8cadcbfb92ad4be02ca5763779bcd57bdd3545a5526b642d288591ea76e6ffcd4e0962c9ac36ff31f177b4fd2ee7b5b3351147e9f1e0a1dc478da399e0 SHA512 f7629acdffb952f8b8c79969043574420cff821523c38627c4234d4ca0f93a38349f8acdf3a473bd5fd3f4854fd0b82bb4367e57b999674b8a550609a76330d3
DIST ugrd-1.1.5.tar.gz 47005 BLAKE2B 278831157c3f8b5d731f3acbdf41c19b1c6485b46acf7d2b75df40a9d9f542365514e814d1972a03bd4b53dad2d39a27098e4cfc97d526afdf4d45ccf5778691 SHA512 c198c592af40d2f126a333a03c74c638260ea8125f4a4da6f97d3489d2ddcf7edb5dce785eb236d309853dac6a3e7993186e4c6b775c4eccc121e95d308641dc
DIST ugrd-1.2.0.tar.gz 48323 BLAKE2B 8df44c91dd56da6d27eaf2c769b40ad7a008a71a87f2f33d1ab91d96e16cf680bb046af27d0b50ae79d48ad8d5b046d899e246ca44c18e62dae8f54fff9cace6 SHA512 a3ddd95abd30441013c9a11074052629dfdbcd2cfffd6a754c6d9c3b719b1861abcd613228fa613b6f566ca1cdca5fa881c9a302391c594b53096428d35e37bf
+DIST ugrd-1.2.2.tar.gz 49312 BLAKE2B 819457ae44cb278b93ef24af5e0aa2e23bf2d31d07fccec86e597f658a5cb13aad7838b08df644090417719402673b63087d27b6edbdb46dea04b98b48d26fb0 SHA512 6348458708406408973534ac5f15f8f9f6d9427bbac48443f7ff362bb97627be6288ba2d138355f92fc1c79a4eb5e51081485adb051cadf523a58f1ef618667e
diff --git a/sys-kernel/ugrd/ugrd-1.2.2.ebuild b/sys-kernel/ugrd/ugrd-1.2.2.ebuild
new file mode 100644
index 0000000000..a474bbc7a7
--- /dev/null
+++ b/sys-kernel/ugrd/ugrd-1.2.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2023 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
+
+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}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="app-misc/pax-utils
+>=dev-python/zenlib-2.0.4[${PYTHON_USEDEP}]
+>=dev-python/pycpio-1.0.0[${PYTHON_USEDEP}]
+sys-apps/pciutils"
+
+src_install() {
+ # Call the distutils-r1_src_install function to install the package
+ distutils-r1_src_install
+ # Create the ugrd config directory
+ keepdir /etc/ugrd
+ # Install the example config into /etc/ugrd/config.toml
+ # Do not overwrite an existing config
+ insinto /etc/ugrd
+ newins examples/example.toml config.toml
+ # Create the kernel preinst.d directory if it doesn't exist
+ # Install the kernel preinst.d hook
+ keepdir /etc/kernel/preinst.d
+ exeinto /etc/kernel/preinst.d
+ doexe hooks/51-ugrd.install
+}
+
+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
+}
next reply other threads:[~2024-05-05 13:19 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-05 13:19 Julien Roy [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-07-15 19:26 [gentoo-commits] repo/proj/guru:dev commit in: sys-kernel/ugrd/ Andrew Ammerlaan
2024-07-15 19:27 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2024-06-12 16:10 Viorel Munteanu
2024-06-10 6:27 Viorel Munteanu
2024-06-10 6:27 Viorel Munteanu
2024-06-04 12:26 David Roman
2024-06-01 22:03 Julien Roy
2024-05-31 8:55 Julien Roy
2024-05-31 8:55 Julien Roy
2024-05-29 8:35 Florian Schmaus
2024-05-29 8:35 Florian Schmaus
2024-05-22 12:46 Haelwenn Monnier
2024-05-21 21:33 Julien Roy
2024-05-21 21:10 Julien Roy
2024-05-21 21:10 Julien Roy
2024-05-13 17:48 Julien Roy
2024-05-13 17:48 Julien Roy
2024-05-12 9:38 Viorel Munteanu
2024-05-10 0:33 Haelwenn Monnier
2024-05-07 14:26 Florian Schmaus
2024-05-07 3:54 Rui Huang
2024-05-07 3:54 Rui Huang
2024-05-07 3:54 Rui Huang
2024-05-05 20:12 Julien Roy
2024-05-05 19:04 Julien Roy
2024-05-05 13:15 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-05-05 13:19 ` [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-04-30 12:22 David Roman
2024-04-29 21:27 David Roman
2024-04-28 21:05 David Roman
2024-04-28 21:05 David Roman
2024-04-28 21:05 David Roman
2024-04-20 15:12 Julien Roy
2024-03-25 10:26 Julien Roy
2024-03-10 21:26 Haelwenn Monnier
2024-01-22 17:27 David Roman
2024-01-01 3:56 David Roman
2024-01-01 3:56 David Roman
2023-12-30 15:48 David Roman
2023-12-30 15:48 David Roman
2023-12-27 20:23 David Roman
2023-12-27 20:23 David Roman
2023-12-27 20:23 David Roman
2023-12-26 21:02 David Roman
2023-12-26 21:02 David Roman
2023-12-26 21:02 David Roman
2023-12-26 21:02 David Roman
2023-12-26 21:02 David Roman
2023-12-26 21:02 David Roman
2023-12-26 19:23 David Roman
2023-12-26 19:23 David Roman
2023-12-26 19:23 David Roman
2023-12-23 7:33 Viorel Munteanu
2023-12-23 7:33 Viorel Munteanu
2023-12-23 7:24 [gentoo-commits] repo/proj/guru:dev " Viorel Munteanu
2023-12-23 7:33 ` [gentoo-commits] repo/proj/guru:master " Viorel Munteanu
2023-12-04 7:11 Viorel Munteanu
2023-12-04 7:11 Viorel Munteanu
2023-12-02 1:29 Haelwenn Monnier
2023-12-02 1:29 Haelwenn Monnier
2023-11-29 22:40 David Roman
2023-11-29 22:40 David Roman
2023-11-29 22:40 David Roman
2023-11-29 22:40 David Roman
2023-11-29 22:40 David Roman
2023-11-24 17:20 David Roman
2023-11-24 17:20 David Roman
2023-11-24 17:20 David Roman
2023-11-24 17:20 David Roman
2023-11-20 14:14 David Roman
2023-11-19 9:58 Viorel Munteanu
2023-11-09 3:11 Haelwenn Monnier
2023-11-09 3:11 Haelwenn Monnier
2023-11-06 14:18 David Roman
2023-11-01 23:27 Haelwenn Monnier
2023-11-01 23:27 Haelwenn Monnier
2023-11-01 23:27 Haelwenn Monnier
2023-11-01 23:27 Haelwenn Monnier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1714791751.6bd7769cbdbc0d04ad19d719187a021a2f28c9d9.julien@gentoo \
--to=julien@jroy.ca \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox