diff options
author | Pascal Jäger <pascal.jaeger@leimstift.de> | 2024-03-27 18:09:36 +0100 |
---|---|---|
committer | Pascal Jäger <pascal.jaeger@leimstift.de> | 2024-03-27 18:09:36 +0100 |
commit | db3eacd30927fc1e54bf19c650c9f4c3aeb06cab (patch) | |
tree | 68d99df6848d42a57584b6ea0ae0608caa5c4247 /gui-apps/nwg-panel | |
parent | gui-apps/nwg-displays: drop 0.3.13 (diff) | |
download | guru-db3eacd30927fc1e54bf19c650c9f4c3aeb06cab.tar.gz guru-db3eacd30927fc1e54bf19c650c9f4c3aeb06cab.tar.bz2 guru-db3eacd30927fc1e54bf19c650c9f4c3aeb06cab.zip |
gui-apps/nwg-panel: add 0.9.27
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
Diffstat (limited to 'gui-apps/nwg-panel')
-rw-r--r-- | gui-apps/nwg-panel/Manifest | 1 | ||||
-rw-r--r-- | gui-apps/nwg-panel/nwg-panel-0.9.27.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/gui-apps/nwg-panel/Manifest b/gui-apps/nwg-panel/Manifest index f440d7b7c..c7b082fcd 100644 --- a/gui-apps/nwg-panel/Manifest +++ b/gui-apps/nwg-panel/Manifest @@ -2,3 +2,4 @@ DIST nwg-panel-0.9.23.tar.gz 227040 BLAKE2B bc0f5afd220bab8f360874b9744b21c8f173 DIST nwg-panel-0.9.24.tar.gz 227084 BLAKE2B 8a86923a0d457d55a1269b00c6955c51410fbd8f838c1b9b4526c37200b4f55c161d0df1ee4a3a0ef83f115c33563ffc8cc5907d601495d1b433ec04e93ac198 SHA512 68329511f20ce88738fb2b30efaa542fcbaf1376a7cb269755f99489cd89984d8986230eebd4c0c610cf5e935f85ba4d33108b7beff64dabc0d67f8f2af04c5b DIST nwg-panel-0.9.25.tar.gz 227247 BLAKE2B 627d679d3b9de4e32d52d4954bf090354d0ce1e85b34bb8a5a63971195c5f1e1cd6ff48c4ea9ec948726b3f3b7939c2d22f284259ee4f9637c943a98102754c7 SHA512 8dd1e43c75ad4ddc61586290fe4928db958c05f1049b7860f212e0950ca46e881d4657722b4859823917af8d16dd613a7374d5bf611d67f4ce2652992d3798f7 DIST nwg-panel-0.9.26.tar.gz 229968 BLAKE2B acac5f1268fee7d47b6b31a91e3c161cf72b9c387c3dcd75977262c7938e2e5e8a24b3a47dae9365ecf5ece9daec55771714dcd4ed1e942e59b372e0efc30684 SHA512 5f3537ce8ddc356248f75ad463980ccdbe5ec819164df6d00336eebb7eff27486ce2945ce9c15ac8d36fe45818c46f76b3460ee4b5ce08d955548cdbcaef329a +DIST nwg-panel-0.9.27.tar.gz 229930 BLAKE2B d1a028a6fb7cdf2097b868a572fb394bf9bd5ab8ed927d35eab63d354b668f4e422d0a59e1ab28d5d1cdc47343768429ce4891f72ebaa554e2d55314dfec912b SHA512 f2772fcd5336761dbe9b0f15502d4506a0a7e0362610310a67605751d5b1d0575e1b0abb2ed0745a4b14822cba71206afb6534ed59b182b35350f51ca0184563 diff --git a/gui-apps/nwg-panel/nwg-panel-0.9.27.ebuild b/gui-apps/nwg-panel/nwg-panel-0.9.27.ebuild new file mode 100644 index 000000000..dde513ba9 --- /dev/null +++ b/gui-apps/nwg-panel/nwg-panel-0.9.27.ebuild @@ -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_{10..11} ) +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 +" +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 +} |