From e8d2019dc181a629397d5b53741b616e33e21c0f Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sat, 25 Jan 2025 10:52:53 -0500 Subject: [PATCH] Add isd 0.2.0 package ebuild --- sys-apps/isd/Manifest | 1 + sys-apps/isd/isd-0.2.0.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 sys-apps/isd/Manifest create mode 100644 sys-apps/isd/isd-0.2.0.ebuild diff --git a/sys-apps/isd/Manifest b/sys-apps/isd/Manifest new file mode 100644 index 0000000..1ed80e6 --- /dev/null +++ b/sys-apps/isd/Manifest @@ -0,0 +1 @@ +DIST isd-0.2.0.AppImage 84295056 BLAKE2B f33eee97f24295ff9cd38ecd2986ca05b2b260adf5e0d5d1332c9ff8c1561d5685c2579e48ca0bb5e45cd4b7e145faf1a2a3d8d3c52dcb44f707e57291915025 SHA512 ca284e7eb9b482780e293365a962d3e68820875b3d21df1d1d3bc7a1fcdf73de8402f41e4b967e34e43610b2c10e585a95fa818f7658bc595f9cee4c1645e3f3 diff --git a/sys-apps/isd/isd-0.2.0.ebuild b/sys-apps/isd/isd-0.2.0.ebuild new file mode 100644 index 0000000..949911c --- /dev/null +++ b/sys-apps/isd/isd-0.2.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="isd (interactive systemd) - a better way to work with systemd units" +HOMEPAGE="https://isd-project.github.io/isd" +SRC_URI="https://github.com/isd-project/${PN}/releases/download/v${PV}/${PN}.AppImage -> ${P}.AppImage" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +RESTRICT="strip" + +RDEPEND=" + sys-fs/fuse:0 +" + +S="${WORKDIR}" + +QA_PREBUILT="*" + +src_install() { + cd ${WORKDIR} + cp ${DISTDIR}/${P}.AppImage ${PN} || die + dobin ${PN} +}