gui-apps/nwg-hello: add 0.4.2

Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
This commit is contained in:
Pascal Jäger
2026-02-10 17:36:27 +01:00
parent eb88061dbd
commit f1eb9bc7f5
2 changed files with 50 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST nwg-hello-0.3.0.tar.gz 1463865 BLAKE2B 84f0e13d140a7160022921831037719327e1c2fbd5e1f17cba5290f97db8632333c42ed2bf4691e44da33ebddca95de8808a25f36c7b6dd53ed3045c260b65c5 SHA512 350053d566cc9e351bda7f449cbabc51108f2263c04d4f87a17ad06a740c04601b4e8a02e0ec059c6a7061e224cc6d2103f7e80dff04e22f219f416d749a1203
DIST nwg-hello-0.4.0.tar.gz 1466709 BLAKE2B 3f581aca89cc4d7a8a4987aca5d0b33cca8e3b46c527ea52254a131b61c004df7cc48fa7e3570f4004171409aba48c04735c98679117083f743a6ef7cc82e349 SHA512 98ad10109e3fd7dd59bdde5c741490b304deeadf357f1f3e761d762126db6aa66f28887605fbdd97531fb7e5404aa6c743eb317a77f82afa01bc633f4233f9ee
DIST nwg-hello-0.4.2.tar.gz 1466907 BLAKE2B fb3032a92f5a9fb49b59aeaeb6dc6e69e7094b9ad7c73ea08cfefde5914331e57e780e36cf3cc9e006cba33e9a772aaec3c9b71b05988acbe09f34de9b49b87b SHA512 e02b46d4d38c7563df66bb6fb8c3ed893754e6c6c4d05effa1241644c16e01a651fc8c3506a5dbacf0d770ed488c9b2bde9e6c99724f59e13d33b65a5edb074f

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="GTK3-based greeter for greetd written in python "
HOMEPAGE="https://github.com/nwg-piotr/nwg-hello"
SRC_URI="https://github.com/nwg-piotr/nwg-hello/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
x11-libs/gtk+:3
gui-libs/gtk-layer-shell[introspection]
gui-libs/greetd
|| ( gui-wm/hyprland gui-wm/sway )
"
# gui-wm/swayfx)
DEPEND="${RDEPEND}"
python_install_all() {
# dodir /etc/nwg-hello
insinto /etc/nwg-hello
doins nwg-hello-default.json
doins nwg-hello-default.css
doins hyprland.conf
doins sway-config
doins README
# dodir /usr/share/nwg-hello
insinto /usr/share/nwg-hello
doins nwg.jpg
doins img/*
# dodir /var/cache/nwg-hello
# insinto /var/cache/nwg-hello
# doins cache.json
dodoc README.md
distutils-r1_python_install_all
}