diff --git a/sys-apps/sysz/Manifest b/sys-apps/sysz/Manifest new file mode 100644 index 0000000000..1879efcb90 --- /dev/null +++ b/sys-apps/sysz/Manifest @@ -0,0 +1 @@ +DIST sysz-1.4.0.tar.gz 7451 BLAKE2B ee052fb4ab4ff2632be13966f56b7c4f4df86121e92087674c3f8df353c53c338a2128eb279d33f66a9651126413e381fbc82b896eb3af41781d045ab31d752e SHA512 c2700b5cb2b9a72215ec0ecb76b24f8aa2f43ade64ad394d7d37761d3ef7c6936c515b11617baa36727739b56795ec7f154ead7ab9eda8ab926f27e9f60c8343 diff --git a/sys-apps/sysz/metadata.xml b/sys-apps/sysz/metadata.xml new file mode 100644 index 0000000000..81beb195dd --- /dev/null +++ b/sys-apps/sysz/metadata.xml @@ -0,0 +1,26 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + https://github.com/joehillen/sysz/issues + joehillen/sysz + + +Features + +See and filter both system and user units simultaneously. +Supports all unit types. +Units ordered by service, timer, socket, and the rest. +Runs sudo automatically and only if necessary. +Filter units by state using ctrl-s or the --state option. +Run daemon-reload with ctrl-r. +Has short versions of systemctl commands to reduce typing. +Runs status after other commands (start, stop, restart, etc). +Select multiple units, states, and commands using TAB. +Only prompts commands based on current state (e.g. show "start" only if the unit is inactive). + + diff --git a/sys-apps/sysz/sysz-1.4.0.ebuild b/sys-apps/sysz/sysz-1.4.0.ebuild new file mode 100644 index 0000000000..59e441db91 --- /dev/null +++ b/sys-apps/sysz/sysz-1.4.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="An fzf terminal UI for systemctl" +HOMEPAGE="https://github.com/joehillen/sysz" +SRC_URI="https://github.com/joehillen/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Unlicense" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=app-shells/bash-4.3 + >=app-shells/fzf-0.27.1 + sys-apps/systemd + virtual/awk +" + +DOCS=( README.md CHANGELOG.md ) + +src_compile() { + : +} + +src_install() { + dobin "${PN}" + einstalldocs +}