diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2023-05-23 19:09:29 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-05-31 11:37:02 +0300 |
commit | f8dc8f8361260e3df55dd8ca27ff3db69c992af1 (patch) | |
tree | 4c98f4bbefc89d15aecdb2cb8f1d128aa0eab2c5 /sys-auth/seatd | |
parent | dev-python/websocket-client: Enable py3.12 (diff) | |
download | gentoo-f8dc8f8361260e3df55dd8ca27ff3db69c992af1.tar.gz gentoo-f8dc8f8361260e3df55dd8ca27ff3db69c992af1.tar.bz2 gentoo-f8dc8f8361260e3df55dd8ca27ff3db69c992af1.zip |
sys-auth/seatd: drop 0.7.0
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'sys-auth/seatd')
-rw-r--r-- | sys-auth/seatd/seatd-0.7.0.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/sys-auth/seatd/seatd-0.7.0.ebuild b/sys-auth/seatd/seatd-0.7.0.ebuild deleted file mode 100644 index 38a16a371fb9..000000000000 --- a/sys-auth/seatd/seatd-0.7.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit meson systemd - -DESCRIPTION="Minimal seat management daemon and universal library" -HOMEPAGE="https://sr.ht/~kennylevinsen/seatd" -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd" -else - KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86" - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz" -fi -LICENSE="MIT" -SLOT="0/1" -IUSE="builtin elogind +server systemd" -REQUIRED_USE="?? ( elogind systemd )" - -DEPEND=" - elogind? ( sys-auth/elogind ) - systemd? ( sys-apps/systemd ) -" -RDEPEND="${DEPEND} - server? ( acct-group/seat ) -" -BDEPEND=">=app-text/scdoc-1.9.7" - -src_configure() { - local emesonargs=( - -Dman-pages=enabled - $(meson_feature builtin libseat-builtin) - $(meson_feature server) - ) - - if use elogind ; then - emesonargs+=( -Dlibseat-logind=elogind ) - elif use systemd; then - emesonargs+=( -Dlibseat-logind=systemd ) - else - emesonargs+=( -Dlibseat-logind=disabled ) - fi - - meson_src_configure -} - -src_install() { - meson_src_install - - if use server; then - newinitd "${FILESDIR}/seatd.initd" seatd - systemd_dounit contrib/systemd/seatd.service - fi -} |