From 22cc706dc76259c2ef8ad732b60e2efbb712e809 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Wed, 10 Jan 2024 12:42:41 +0100 Subject: [PATCH] gui-apps/nwg-shell: add 0.5.26 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Jäger --- gui-apps/nwg-shell/Manifest | 1 + gui-apps/nwg-shell/nwg-shell-0.5.26.ebuild | 34 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 gui-apps/nwg-shell/nwg-shell-0.5.26.ebuild diff --git a/gui-apps/nwg-shell/Manifest b/gui-apps/nwg-shell/Manifest index 31d07d4c13..f36c8988e2 100644 --- a/gui-apps/nwg-shell/Manifest +++ b/gui-apps/nwg-shell/Manifest @@ -1,2 +1,3 @@ DIST nwg-shell-0.5.24.tar.gz 2180850 BLAKE2B 083f0c92f4bd40bda289f7809ffe92e087aeaf4569cd7c0d1af0af90e348b84bee2270a7eb0a171782bc04fb2e1db253c5f03a6066d7a2e4ca31a39b4979ace0 SHA512 14cd07b7b884c9dbf5be772b1386002b5aac707259d9a859d6c0d1bfb226affb9a0e09b4a517bfb7dd9358918c67aaedb25947ed42bb1e18533826df86b5199b DIST nwg-shell-0.5.25.tar.gz 2180844 BLAKE2B defb10b29dbded91603772c91523455028e25241248d7897cdab831504fa4a2fbf176bce38a0d068db8419001bfe91c1f451e5354a7ff9b491265184680b605b SHA512 e5dc2cb919bd29f5b62d01d34b036b3c4efd89c01d07c4012cdb5e7e1b5c4cc1e890444d398093728f4b2c76f55bae6164334da707c5ac623b0a2952599534c6 +DIST nwg-shell-0.5.26.tar.gz 2180999 BLAKE2B 1008e34e663875754302c7631573d0d0a5b82a786204739a77744640d5bd2b3dc880b144f39c39b2a90686c6b19b91dcfc072825e5b29bd4c8e631aba486af7d SHA512 aaf9acc0082aa9bb33f92d860c42eb0ce0d78aa3405bfc8bae1180ea0890926f0f348b4a4d6fcfb01812fe947d21deac65a2d2bec7eddf5e895a4b4535bf20ba diff --git a/gui-apps/nwg-shell/nwg-shell-0.5.26.ebuild b/gui-apps/nwg-shell/nwg-shell-0.5.26.ebuild new file mode 100644 index 0000000000..1beb080d16 --- /dev/null +++ b/gui-apps/nwg-shell/nwg-shell-0.5.26.ebuild @@ -0,0 +1,34 @@ +# 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 distutils-r1 + +SRC_URI="https://github.com/nwg-piotr/nwg-shell/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="libraries an common functions for the nwg-shell project" +HOMEPAGE="https://github.com/nwg-piotr/nwg-shell" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + gui-apps/grim + gui-apps/swappy + gui-apps/slurp +" +DEPEND="${RDEPEND}" + +python_install_all() { + default + dobin scripts/* +} + +pkg_postinst() { + elog "To install nwg-shell for the current user, run" + elog "nwg-shell-installer -w (for sway) or" + elog "nwg-shell-installer -w -hypr (for hyprland)" +}