gui-apps/nwg-panel: add 0.9.44

Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
This commit is contained in:
Pascal Jäger
2024-10-15 14:08:42 +02:00
parent 2f6caebe9b
commit 6d24413e47
2 changed files with 54 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST nwg-panel-0.9.41.tar.gz 237541 BLAKE2B a7e2eee9e38b3b70981dbf4672a68decc00a63254ad38c3d6e3344266e57d2664e850cff9ee6ba70f205faca44d3f3627fe2ef8fabb244be091a2b463a5634c9 SHA512 813c1a78847e11040de6140f8f7a55ee8368fb168a06f3bf286098f64e8db572212dfa29c63a7e98abeaffab592c70094b120388e7494ff72665719b09177aab
DIST nwg-panel-0.9.42.tar.gz 238220 BLAKE2B 4231237783cf374be9eae51af51a560bec9a7905def684a4cb419ba3c451cbd029f073d966116c10b1111b4c99ea97337b32783bd8048c8092e7cd50d27b3049 SHA512 95c3282b27ebe93c69f16afa40a6d58cdb0cfa78247dae8ee7d163167440c22c22fb49a43f48a49888aa579934de4cc190336ab981bfa19e953f08de793704c1
DIST nwg-panel-0.9.43.tar.gz 238254 BLAKE2B e358075460b070562fde23b4dc310112836dcaef39a77904f9d2669b0d267660d6a86f69d2206d24ef30e317c5600529c6e9a98fd36399856be04404826f885b SHA512 4db6f5f4cce63d73eb8d436fded90889ee16f9843e0d22977562daebabdeb0dbfdeb99ac20d414888d28fe4b2d57baaa1560cd4ba5190e9fff5ed1810aac1d2a
DIST nwg-panel-0.9.44.tar.gz 238260 BLAKE2B 5c0a0ebbbea556ff5cee4d4bccafaa94b7ef8c87e4e98b4e622a4ce17d1d37bfb9ef8d56957aca07b33a45c29844b2dc3ac3908331302210865c4ce1693ed58e SHA512 925c4efdda9e24b4b27ed5d925b47d5e3bf592380af44f67b795497dcbd47ac27ddb0b1f5dfccc350ce8d763eca4d6d78e7c8b6406d0feff977b8a6d31957680

View File

@@ -0,0 +1,53 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit desktop distutils-r1 systemd xdg-utils
if [[ "${PV}" == 9999 ]]
then
inherit git-r3
EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-panel.git"
else
SRC_URI="https://github.com/nwg-piotr/nwg-panel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="GTK3-based panel for sway and Hyprland Wayland compositors"
HOMEPAGE="https://github.com/nwg-piotr/nwg-panel"
LICENSE="MIT"
SLOT="0"
RDEPEND="
x11-libs/gtk+:3
dev-python/pygobject[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/i3ipc[${PYTHON_USEDEP}]
dev-python/dasbus[${PYTHON_USEDEP}]
gui-apps/nwg-icon-picker
media-sound/playerctl
gui-libs/gtk-layer-shell[introspection]
"
DEPEND="${RDEPEND}"
python_install_all() {
distutils-r1_python_install_all
domenu nwg-panel-config.desktop
domenu nwg-processes.desktop
doicon nwg-panel.svg
doicon nwg-processes.svg
doicon nwg-shell.svg
systemd_dounit nwg-panel.service
}
pkg_postinst() {
xdg_desktop_database_update
}
pkg_postrm() {
xdg_desktop_database_update
}