From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EE2F015801B for ; Thu, 10 Aug 2023 21:54:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 062192BC016; Thu, 10 Aug 2023 21:54:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBE502BC016 for ; Thu, 10 Aug 2023 21:54:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E0D8433BEC0 for ; Thu, 10 Aug 2023 21:54:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48B48F4C for ; Thu, 10 Aug 2023 21:54:20 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1691703045.fd7e87a041dd46bee6b6e52a598b9ab72c7d9206.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-panel/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild gui-apps/nwg-panel/nwg-panel-9999.ebuild X-VCS-Directories: gui-apps/nwg-panel/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: fd7e87a041dd46bee6b6e52a598b9ab72c7d9206 X-VCS-Branch: dev Date: Thu, 10 Aug 2023 21:54:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d3e5914f-fa9a-4020-9d8d-d3fec6fec918 X-Archives-Hash: 4a54f25fbf2be22673c2cb9cecea5a55 commit: fd7e87a041dd46bee6b6e52a598b9ab72c7d9206 Author: Pascal Jäger leimstift de> AuthorDate: Thu Aug 10 21:21:41 2023 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Thu Aug 10 21:30:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fd7e87a0 gui-apps/nwg-panel: revbump, install desktop files and icons Signed-off-by: Pascal Jäger leimstift.de> ...anel-9999.ebuild => nwg-panel-0.9.11-r1.ebuild} | 23 +++++++++++++++++++++- gui-apps/nwg-panel/nwg-panel-9999.ebuild | 23 +++++++++++++++++++++- 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/gui-apps/nwg-panel/nwg-panel-9999.ebuild b/gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild similarity index 66% copy from gui-apps/nwg-panel/nwg-panel-9999.ebuild copy to gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild index 0319f9345c..fb2abcd70b 100644 --- a/gui-apps/nwg-panel/nwg-panel-9999.ebuild +++ b/gui-apps/nwg-panel/nwg-panel-0.9.11-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit desktop distutils-r1 systemd xdg-utils if [[ "${PV}" == 9999 ]] then @@ -19,6 +19,7 @@ fi DESCRIPTION="GTK3-based panel for sway and Hyprland Wayland compositors" HOMEPAGE="https://github.com/nwg-piotr/nwg-panel" LICENSE="MIT" +IUSE="systemd" SLOT="0" @@ -33,3 +34,23 @@ RDEPEND=" gui-libs/gtk-layer-shell " 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 + if use systemd; then + systemd_dounit nwg-panel.service + fi +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +} diff --git a/gui-apps/nwg-panel/nwg-panel-9999.ebuild b/gui-apps/nwg-panel/nwg-panel-9999.ebuild index 0319f9345c..fb2abcd70b 100644 --- a/gui-apps/nwg-panel/nwg-panel-9999.ebuild +++ b/gui-apps/nwg-panel/nwg-panel-9999.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 +inherit desktop distutils-r1 systemd xdg-utils if [[ "${PV}" == 9999 ]] then @@ -19,6 +19,7 @@ fi DESCRIPTION="GTK3-based panel for sway and Hyprland Wayland compositors" HOMEPAGE="https://github.com/nwg-piotr/nwg-panel" LICENSE="MIT" +IUSE="systemd" SLOT="0" @@ -33,3 +34,23 @@ RDEPEND=" gui-libs/gtk-layer-shell " 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 + if use systemd; then + systemd_dounit nwg-panel.service + fi +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +}