logo

overlay

My own overlay for experimentations, use with caution, no support is provided
commit: bf9c88c8ff982a2393deb55c9923f1fd3350fa32
parent: 6d653da30ecdd275c92ca647ed10789bdcb4fd59
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun, 13 Sep 2020 13:18:53 +0200

sys-auth/seatd: Version clean bump, 0.3.0

Diffstat:

Msys-auth/seatd/Manifest2+-
Dsys-auth/seatd/seatd-0.1.0.ebuild33---------------------------------
Asys-auth/seatd/seatd-0.3.0.ebuild34++++++++++++++++++++++++++++++++++
Msys-auth/seatd/seatd-9999.ebuild5+++--
4 files changed, 38 insertions(+), 36 deletions(-)

diff --git a/sys-auth/seatd/Manifest b/sys-auth/seatd/Manifest @@ -1 +1 @@ -DIST seatd-0.1.0.tar.gz 30874 BLAKE2B b308e907fa977ef9c75a7c97617443b42749cfd9cd3f81797bb406d505ef5ab6b1bb6f445848b19133029d648c33c6610ff0be45feb66909530d2ad2dbee719f SHA512 d45577f3554106dfdcde4c2de75bcd59079847c6f6001a1a11c7556667d02956f622199a5b8731d6a8eb84a3d6bd5002a44f1835085f011045dc2c4c2a7289f6 +DIST seatd-0.3.0.tar.gz 32678 BLAKE2B fccc3e6247c60d73dcc19c7982fccaf20cb3805e6de2422ef771661ab38bb83c0c2820c1fc83b54787901790e7035c20d2a85a358ded1b79e199bb7c3a2efd4c SHA512 e01294e7ef8aa7c009757f593ca9dfa038e80c66bf2c600a98eb53463bb4869df9253a7b1a9fbb819db1e2f0977aaa448e8e1bb83441adca7d2c0df99e507ab2 diff --git a/sys-auth/seatd/seatd-0.1.0.ebuild b/sys-auth/seatd/seatd-0.1.0.ebuild @@ -1,33 +0,0 @@ -# Copyright 2020 Haelwenn (lanodan) Monnier <contact@hacktivis.me> -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit meson - -DESCRIPTION="Minimal seat management daemon and universal library" -HOMEPAGE="https://git.sr.ht/~kennylevinsen/seatd" -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - - EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd" -else - KEYWORDS="~amd64" - SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz" -fi -LICENSE="MIT" -SLOT="0" -IUSE="logind" - -DEPEND="logind? ( || ( sys-auth/elogind sys-apps/systemd ) )" -RDEPEND="${DEPEND}" -BDEPEND="app-text/scdoc" - -src_configure() { - local emesonargs=( - -Dman-pages=enabled - $(meson_feature logind) - ) - - meson_src_configure -} diff --git a/sys-auth/seatd/seatd-0.3.0.ebuild b/sys-auth/seatd/seatd-0.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 2020 Haelwenn (lanodan) Monnier <contact@hacktivis.me> +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Minimal seat management daemon and universal library" +HOMEPAGE="https://git.sr.ht/~kennylevinsen/seatd" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://git.sr.ht/~kennylevinsen/seatd" +else + KEYWORDS="~amd64" + SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi +LICENSE="MIT" +SLOT="0/1" +IUSE="examples logind" + +DEPEND="logind? ( || ( sys-auth/elogind sys-apps/systemd ) )" +RDEPEND="${DEPEND}" +BDEPEND="app-text/scdoc" + +src_configure() { + local emesonargs=( + -Dman-pages=enabled + $(meson_feature examples) + $(meson_feature logind) + ) + + meson_src_configure +} diff --git a/sys-auth/seatd/seatd-9999.ebuild b/sys-auth/seatd/seatd-9999.ebuild @@ -16,8 +16,8 @@ else SRC_URI="https://git.sr.ht/~kennylevinsen/seatd/archive/${PV}.tar.gz -> ${P}.tar.gz" fi LICENSE="MIT" -SLOT="0" -IUSE="logind" +SLOT="0/1" +IUSE="examples logind" DEPEND="logind? ( || ( sys-auth/elogind sys-apps/systemd ) )" RDEPEND="${DEPEND}" @@ -26,6 +26,7 @@ BDEPEND="app-text/scdoc" src_configure() { local emesonargs=( -Dman-pages=enabled + $(meson_feature examples) $(meson_feature logind) )