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, 25 Feb 2022 15:46:56
Message-Id: 1645804003.2311f91b8a0186879719473701e34a6351c0c5fd.arthurzam@gentoo
1 commit: 2311f91b8a0186879719473701e34a6351c0c5fd
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 25 15:46:11 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 25 15:46:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2311f91b
7
8 sys-auth/seatd: drop 0.5.0, 0.5.0-r1, 0.6.2-r1
9
10 Bug: https://bugs.gentoo.org/833950
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 sys-auth/seatd/Manifest | 2 --
14 sys-auth/seatd/seatd-0.5.0-r1.ebuild | 53 ---------------------------------
15 sys-auth/seatd/seatd-0.5.0.ebuild | 48 ------------------------------
16 sys-auth/seatd/seatd-0.6.2-r1.ebuild | 57 ------------------------------------
17 4 files changed, 160 deletions(-)
18
19 diff --git a/sys-auth/seatd/Manifest b/sys-auth/seatd/Manifest
20 index 9419af2c6ac5..071f4ce2188e 100644
21 --- a/sys-auth/seatd/Manifest
22 +++ b/sys-auth/seatd/Manifest
23 @@ -1,4 +1,2 @@
24 -DIST seatd-0.5.0.tar.gz 34762 BLAKE2B 054bd64800b734f6092f856540217e5ea4872c5a363960bac6c5aa7dac5355bdbd982232efd2f8078ad326ec0e6257f3ee7643384c88a3bbe15255d65f02540c SHA512 a6b1f11313411fe99e8bdd64aa493fc19bde7b0b927f21e2c3ec8a7fadc6cf2f04fcefa73fa033d971d1dc482665d3dc927ec168026289fe88b2593a45adbc0f
25 -DIST seatd-0.6.2.tar.gz 37713 BLAKE2B 001c6269bcc83488099f9237a3412b61f89cf653fcb5b0d1ada3f5fbdb17ec604d881ce3d835ff1ea3bc683bb143bab75de88d67b55f508e6a9dd2e958347567 SHA512 47e3aec819f43e72913be1cac2c0db26287f1ef8ecc738845d3591b3e2b4fee3441ac50ea45ac75a5da774e5305a18a02b8375f76f71644c8c07e95bcad52762
26 DIST seatd-0.6.3.tar.gz 38525 BLAKE2B e1bdb85f9432a9a407ea7a72ed5790debf01a410546e9162641ab55179b3beefba0eb45fd24e2643dc5cfb2a26db2490f49095ff1d08b4a38663f93e46dc2ed5 SHA512 28c979e8c2fc73a8607c6085f2e27dc6e2630bc874f98686ce22aa797e74fdad1cc9fca8649eaf8920e93f01a852fbe209bde86ebf582e81060d4ca015425815
27 DIST seatd-0.6.4.tar.gz 38393 BLAKE2B 2d01dbf00846c311daa3b4ac2bf87e818c722fa38e84b4cf83470803c23f779f12e4efe922f0b09ec8ef35ca913178a7f76bcded75dd7f7a7431e3a838c6bcc6 SHA512 0e2b23eca2e7978e3f914433caa6f84243a20487c6fe9fe3e42a7bf663a4a0872482aa334a3f5dc9b6625c565b408c3c78310b5575b9fb2e2919efdb9620ec57
28
29 diff --git a/sys-auth/seatd/seatd-0.5.0-r1.ebuild b/sys-auth/seatd/seatd-0.5.0-r1.ebuild
30 deleted file mode 100644
31 index 4e1943599a35..000000000000
32 --- a/sys-auth/seatd/seatd-0.5.0-r1.ebuild
33 +++ /dev/null
34 @@ -1,53 +0,0 @@
35 -# Copyright 2020-2021 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -
40 -inherit meson systemd
41 -
42 -DESCRIPTION="Minimal seat management daemon and universal library"
43 -HOMEPAGE="https://sr.ht/~kennylevinsen/seatd"
44 -if [[ ${PV} == 9999 ]]; then
45 - inherit git-r3
46 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd"
47 -else
48 - KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
49 - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz"
50 -fi
51 -LICENSE="MIT"
52 -SLOT="0/1"
53 -IUSE="builtin elogind +server systemd"
54 -REQUIRED_USE="?? ( elogind systemd )"
55 -
56 -DEPEND="
57 - elogind? ( sys-auth/elogind )
58 - systemd? ( sys-apps/systemd )
59 -"
60 -RDEPEND="${DEPEND}"
61 -BDEPEND=">=app-text/scdoc-1.9.7"
62 -
63 -src_configure() {
64 - local emesonargs=(
65 - -Dman-pages=enabled
66 - -Dwerror=false
67 - $(meson_feature builtin)
68 - $(meson_feature server)
69 - )
70 -
71 - if use elogind || use systemd; then
72 - emesonargs+=( -Dlogind=enabled )
73 - else
74 - emesonargs+=( -Dlogind=disabled )
75 - fi
76 -
77 - meson_src_configure
78 -}
79 -
80 -src_install() {
81 - meson_src_install
82 -
83 - if use server; then
84 - newinitd "${FILESDIR}/seatd.initd" seatd
85 - systemd_dounit contrib/systemd/seatd.service
86 - fi
87 -}
88
89 diff --git a/sys-auth/seatd/seatd-0.5.0.ebuild b/sys-auth/seatd/seatd-0.5.0.ebuild
90 deleted file mode 100644
91 index c5affa2fcc9a..000000000000
92 --- a/sys-auth/seatd/seatd-0.5.0.ebuild
93 +++ /dev/null
94 @@ -1,48 +0,0 @@
95 -# Copyright 2020-2021 Gentoo Authors
96 -# Distributed under the terms of the GNU General Public License v2
97 -
98 -EAPI=7
99 -
100 -inherit meson systemd
101 -
102 -DESCRIPTION="Minimal seat management daemon and universal library"
103 -HOMEPAGE="https://sr.ht/~kennylevinsen/seatd"
104 -if [[ ${PV} == 9999 ]]; then
105 - inherit git-r3
106 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd"
107 -else
108 - KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
109 - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz"
110 -fi
111 -LICENSE="MIT"
112 -SLOT="0/1"
113 -IUSE="elogind systemd"
114 -REQUIRED_USE="?? ( elogind systemd )"
115 -
116 -DEPEND="
117 - elogind? ( sys-auth/elogind )
118 - systemd? ( sys-apps/systemd )
119 -"
120 -RDEPEND="${DEPEND}"
121 -BDEPEND=">=app-text/scdoc-1.9.7"
122 -
123 -src_configure() {
124 - local emesonargs=(
125 - -Dman-pages=enabled
126 - -Dwerror=false
127 - )
128 -
129 - if use elogind || use systemd; then
130 - emesonargs+=( -Dlogind=enabled )
131 - else
132 - emesonargs+=( -Dlogind=disabled )
133 - fi
134 -
135 - meson_src_configure
136 -}
137 -
138 -src_install() {
139 - meson_src_install
140 - newinitd "${FILESDIR}/seatd.initd" seatd
141 - systemd_dounit contrib/systemd/seatd.service
142 -}
143
144 diff --git a/sys-auth/seatd/seatd-0.6.2-r1.ebuild b/sys-auth/seatd/seatd-0.6.2-r1.ebuild
145 deleted file mode 100644
146 index 2c8b264374b9..000000000000
147 --- a/sys-auth/seatd/seatd-0.6.2-r1.ebuild
148 +++ /dev/null
149 @@ -1,57 +0,0 @@
150 -# Copyright 2020-2021 Gentoo Authors
151 -# Distributed under the terms of the GNU General Public License v2
152 -
153 -EAPI=8
154 -
155 -inherit meson systemd
156 -
157 -DESCRIPTION="Minimal seat management daemon and universal library"
158 -HOMEPAGE="https://sr.ht/~kennylevinsen/seatd"
159 -if [[ ${PV} == 9999 ]]; then
160 - inherit git-r3
161 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd"
162 -else
163 - KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
164 - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz"
165 -fi
166 -LICENSE="MIT"
167 -SLOT="0/1"
168 -IUSE="builtin elogind +server systemd"
169 -REQUIRED_USE="?? ( elogind systemd )"
170 -
171 -DEPEND="
172 - elogind? ( sys-auth/elogind )
173 - systemd? ( sys-apps/systemd )
174 -"
175 -RDEPEND="${DEPEND}
176 - server? ( acct-group/seat )
177 -"
178 -BDEPEND=">=app-text/scdoc-1.9.7"
179 -
180 -src_configure() {
181 - local emesonargs=(
182 - -Dman-pages=enabled
183 - -Dwerror=false
184 - $(meson_feature builtin libseat-builtin)
185 - $(meson_feature server)
186 - )
187 -
188 - if use elogind ; then
189 - emesonargs+=( -Dlibseat-logind=elogind )
190 - elif use systemd; then
191 - emesonargs+=( -Dlibseat-logind=systemd )
192 - else
193 - emesonargs+=( -Dlibseat-logind=disabled )
194 - fi
195 -
196 - meson_src_configure
197 -}
198 -
199 -src_install() {
200 - meson_src_install
201 -
202 - if use server; then
203 - newinitd "${FILESDIR}/seatd.initd" seatd
204 - systemd_dounit contrib/systemd/seatd.service
205 - fi
206 -}