From 44336b3e85b607dffda367c96583abb94c4206ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Tue, 10 Feb 2026 17:31:15 +0100 Subject: [PATCH] gui-apps/nwg-panel: add 0.10.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Jäger --- gui-apps/nwg-panel/Manifest | 1 + gui-apps/nwg-panel/nwg-panel-0.10.13.ebuild | 53 +++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 gui-apps/nwg-panel/nwg-panel-0.10.13.ebuild diff --git a/gui-apps/nwg-panel/Manifest b/gui-apps/nwg-panel/Manifest index 7d929e081f..81a00e8f43 100644 --- a/gui-apps/nwg-panel/Manifest +++ b/gui-apps/nwg-panel/Manifest @@ -1,2 +1,3 @@ DIST nwg-panel-0.10.12.tar.gz 265884 BLAKE2B 4440f2f60fa7dea379aa2f8133ea422faae2bcdd596cfb0f3bfa5ef4ebb677f5b5b61cde488d6cf3ea0e0b04806b6a9e99271bbd4701449696613b2a3a271bcd SHA512 9448a0092b08da1db8ad039ad70487f1c63d9a017100ce592864c7a6b4251d9e3955f2ea4d4e355b479dc60024778c20fe4d6809eacb9aa2dbe9b9870d2944b2 +DIST nwg-panel-0.10.13.tar.gz 271201 BLAKE2B 84862ae57be6f9f1b14368e156a1b6f3d1a12e7cd48d0563f10ee8e5e19ebebf1ff372b9e96814736bfcb1ed8cdae423883867039ac5aa0150395dadcbadfb19 SHA512 f18fc15566f1d4dd93f4c24c89d73bfb34bfcbc09cf5a74e7bb04f9df1e05142848bc430d72eb7215bd4c2f20a1868e24991708c84b31fc104dda5b30bbdb292 DIST nwg-panel-0.10.6.tar.gz 264897 BLAKE2B d521dd428e53002b387bd26e28b163b4a5ba9f350c821b1adac1001c72b359d012e16791f655f00ced4ea96803ebca3fba38e4ab14a498185ba98d77f4d16e97 SHA512 7262be0ac96b6b554bda23a55a426a596d90adfcb967104fc73becf533e1df6c34a1b3a18f0d83a0ce98df8b61b7a7caf7486d4c96c7221628ae416777ade4ab diff --git a/gui-apps/nwg-panel/nwg-panel-0.10.13.ebuild b/gui-apps/nwg-panel/nwg-panel-0.10.13.ebuild new file mode 100644 index 0000000000..9cb163259e --- /dev/null +++ b/gui-apps/nwg-panel/nwg-panel-0.10.13.ebuild @@ -0,0 +1,53 @@ +# 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 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 +}