Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/seatd/
Date: Fri, 19 Aug 2022 06:16:15
Message-Id: 1660889756.9304375022ed52be6e22026f7cc786c6420c8a04.arthurzam@gentoo
1 commit: 9304375022ed52be6e22026f7cc786c6420c8a04
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 19 05:55:57 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 06:15:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93043750
7
8 sys-auth/seatd: drop 0.6.4
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 sys-auth/seatd/Manifest | 1 -
13 sys-auth/seatd/seatd-0.6.4.ebuild | 56 ---------------------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/sys-auth/seatd/Manifest b/sys-auth/seatd/Manifest
17 index 63b9e2d789bd..cbad969e380b 100644
18 --- a/sys-auth/seatd/Manifest
19 +++ b/sys-auth/seatd/Manifest
20 @@ -1,2 +1 @@
21 -DIST seatd-0.6.4.tar.gz 38393 BLAKE2B 2d01dbf00846c311daa3b4ac2bf87e818c722fa38e84b4cf83470803c23f779f12e4efe922f0b09ec8ef35ca913178a7f76bcded75dd7f7a7431e3a838c6bcc6 SHA512 0e2b23eca2e7978e3f914433caa6f84243a20487c6fe9fe3e42a7bf663a4a0872482aa334a3f5dc9b6625c565b408c3c78310b5575b9fb2e2919efdb9620ec57
22 DIST seatd-0.7.0.tar.gz 39198 BLAKE2B eddae25b353a5ff4da8aa8b41ead6e6ebab6ffa321376887769cbaf22c3c1b8448d84758749714b82d6ca2d602f2140042634bbeb9312449d8ac207b3774851e SHA512 c81c43994b92672a388bf255edb1fe24d3dba7ece2eb35f9fedc05cc0b8e464e9167ffed037645c4072430fe7b3b8fc80cc99f21fb5100654b5dd23a94742e66
23
24 diff --git a/sys-auth/seatd/seatd-0.6.4.ebuild b/sys-auth/seatd/seatd-0.6.4.ebuild
25 deleted file mode 100644
26 index 38a16a371fb9..000000000000
27 --- a/sys-auth/seatd/seatd-0.6.4.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 2020-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit meson systemd
36 -
37 -DESCRIPTION="Minimal seat management daemon and universal library"
38 -HOMEPAGE="https://sr.ht/~kennylevinsen/seatd"
39 -if [[ ${PV} == 9999 ]]; then
40 - inherit git-r3
41 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd"
42 -else
43 - KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
44 - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -fi
46 -LICENSE="MIT"
47 -SLOT="0/1"
48 -IUSE="builtin elogind +server systemd"
49 -REQUIRED_USE="?? ( elogind systemd )"
50 -
51 -DEPEND="
52 - elogind? ( sys-auth/elogind )
53 - systemd? ( sys-apps/systemd )
54 -"
55 -RDEPEND="${DEPEND}
56 - server? ( acct-group/seat )
57 -"
58 -BDEPEND=">=app-text/scdoc-1.9.7"
59 -
60 -src_configure() {
61 - local emesonargs=(
62 - -Dman-pages=enabled
63 - $(meson_feature builtin libseat-builtin)
64 - $(meson_feature server)
65 - )
66 -
67 - if use elogind ; then
68 - emesonargs+=( -Dlibseat-logind=elogind )
69 - elif use systemd; then
70 - emesonargs+=( -Dlibseat-logind=systemd )
71 - else
72 - emesonargs+=( -Dlibseat-logind=disabled )
73 - fi
74 -
75 - meson_src_configure
76 -}
77 -
78 -src_install() {
79 - meson_src_install
80 -
81 - if use server; then
82 - newinitd "${FILESDIR}/seatd.initd" seatd
83 - systemd_dounit contrib/systemd/seatd.service
84 - fi
85 -}