Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/seatd/
Date: Fri, 17 Sep 2021 01:53:01
Message-Id: 1631843540.1084ca6540f023f71ec0610e893137e829bb74c2.ionen@gentoo
1 commit: 1084ca6540f023f71ec0610e893137e829bb74c2
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Thu Sep 16 06:48:03 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 17 01:52:20 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1084ca65
7
8 sys-auth/seatd: Security cleanup, 0.6.0
9
10 Bug: https://bugs.gentoo.org/813282
11 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
12 Closes: https://github.com/gentoo/gentoo/pull/22305
13 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
14
15 sys-auth/seatd/Manifest | 1 -
16 sys-auth/seatd/seatd-0.6.0-r1.ebuild | 55 ------------------------------------
17 2 files changed, 56 deletions(-)
18
19 diff --git a/sys-auth/seatd/Manifest b/sys-auth/seatd/Manifest
20 index 45d117f4e12..1ca08917664 100644
21 --- a/sys-auth/seatd/Manifest
22 +++ b/sys-auth/seatd/Manifest
23 @@ -1,3 +1,2 @@
24 DIST seatd-0.5.0.tar.gz 34762 BLAKE2B 054bd64800b734f6092f856540217e5ea4872c5a363960bac6c5aa7dac5355bdbd982232efd2f8078ad326ec0e6257f3ee7643384c88a3bbe15255d65f02540c SHA512 a6b1f11313411fe99e8bdd64aa493fc19bde7b0b927f21e2c3ec8a7fadc6cf2f04fcefa73fa033d971d1dc482665d3dc927ec168026289fe88b2593a45adbc0f
25 -DIST seatd-0.6.0.tar.gz 37418 BLAKE2B 0598191cd5988ec24506a5b70f2011b1ec1691f5e32108c4c44e79d5527527cae4da8bfbe934ca64efbb1a1dd8471b35589c33399cf85dc89b4cec92d2ef1192 SHA512 9b0b67a028cf9bba63a6c4630c66b21dd2cb87de0d290bfc51245727cda72964fbd0ffee709eded1e81c28f403db6bae8926a257fdd9267e154fbe8697d22a2b
26 DIST seatd-0.6.2.tar.gz 37713 BLAKE2B 001c6269bcc83488099f9237a3412b61f89cf653fcb5b0d1ada3f5fbdb17ec604d881ce3d835ff1ea3bc683bb143bab75de88d67b55f508e6a9dd2e958347567 SHA512 47e3aec819f43e72913be1cac2c0db26287f1ef8ecc738845d3591b3e2b4fee3441ac50ea45ac75a5da774e5305a18a02b8375f76f71644c8c07e95bcad52762
27
28 diff --git a/sys-auth/seatd/seatd-0.6.0-r1.ebuild b/sys-auth/seatd/seatd-0.6.0-r1.ebuild
29 deleted file mode 100644
30 index 8513ea78566..00000000000
31 --- a/sys-auth/seatd/seatd-0.6.0-r1.ebuild
32 +++ /dev/null
33 @@ -1,55 +0,0 @@
34 -# Copyright 2020-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=8
38 -
39 -inherit meson systemd
40 -
41 -DESCRIPTION="Minimal seat management daemon and universal library"
42 -HOMEPAGE="https://sr.ht/~kennylevinsen/seatd"
43 -if [[ ${PV} == 9999 ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd"
46 -else
47 - KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
48 - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz"
49 -fi
50 -LICENSE="MIT"
51 -SLOT="0/1"
52 -IUSE="builtin elogind +server systemd"
53 -REQUIRED_USE="?? ( elogind systemd )"
54 -
55 -DEPEND="
56 - elogind? ( sys-auth/elogind )
57 - systemd? ( sys-apps/systemd )
58 -"
59 -RDEPEND="${DEPEND}"
60 -BDEPEND=">=app-text/scdoc-1.9.7"
61 -
62 -src_configure() {
63 - local emesonargs=(
64 - -Dman-pages=enabled
65 - -Dwerror=false
66 - $(meson_feature builtin libseat-builtin)
67 - $(meson_feature server)
68 - )
69 -
70 - if use elogind ; then
71 - emesonargs+=( -Dlibseat-logind=elogind )
72 - elif use systemd; then
73 - emesonargs+=( -Dlibseat-logind=systemd )
74 - else
75 - emesonargs+=( -Dlibseat-logind=disabled )
76 - fi
77 -
78 - meson_src_configure
79 -}
80 -
81 -src_install() {
82 - meson_src_install
83 -
84 - if use server; then
85 - newinitd "${FILESDIR}/seatd.initd" seatd
86 - systemd_dounit contrib/systemd/seatd.service
87 - fi
88 -}