commit: ce536db76000b86bbd355d09a919abb209007840 Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de> AuthorDate: Fri Dec 13 11:16:33 2024 +0000 Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de> CommitDate: Fri Dec 13 11:19:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ce536db7
gui-apps/nwg-shell: add 0.5.41 Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de> gui-apps/nwg-shell/Manifest | 1 + gui-apps/nwg-shell/nwg-shell-0.5.41.ebuild | 33 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/gui-apps/nwg-shell/Manifest b/gui-apps/nwg-shell/Manifest index 7603a9974..a12d48ea0 100644 --- a/gui-apps/nwg-shell/Manifest +++ b/gui-apps/nwg-shell/Manifest @@ -1,2 +1,3 @@ DIST nwg-shell-0.5.39.tar.gz 2181588 BLAKE2B 6ecf866f485aa52dcd58e4655bbc17d2fb542514e53e04684afafd2d3285cec9cd6662de83346cfe3ffabbe54f90f1c8ebd1c718c71a37d704f18b8fcbf898cd SHA512 47a62f18f08cd22f4373cf9d5ef0b8e5df36db43ca767220e50944fc04e2567de054ffbce18ce7af6a16c0af1f40349cddbe7b9bbbfe268d07ea82084b1d309b DIST nwg-shell-0.5.40.tar.gz 2181505 BLAKE2B 8dd2b124c877ec3f8d93264cb6f09cf1b8e8bedd2f54f40380b604f9a6afcd0e1ef0c6204d3038cf603a0113cae6282263d0fc977de5490040b21a5fec41011c SHA512 7706c774fdfeb6391c5b203bc7ff8a5cca94707a6a401487f069a00067d4ead141ca9c3cfadd56ae58fba8770046cea5a3f3b8af5ac20140858c18f1ab1a3724 +DIST nwg-shell-0.5.41.tar.gz 2181498 BLAKE2B 14d4128997c7c4fddb9ff2058d61a23420c1ddd85415be669c4c2005abb759451451afd5bd97c341b436e19f914be7d1838e3a9b89081ce2b7b14fa53a44f561 SHA512 2ebfc8077033782bb0533af02b7ec1424e2237d7e0266e082b5bc9837c7cc50648599a96ae405fbe8aadbc621c98a82ece94647783159cc16341d1bbfaef9f57 diff --git a/gui-apps/nwg-shell/nwg-shell-0.5.41.ebuild b/gui-apps/nwg-shell/nwg-shell-0.5.41.ebuild new file mode 100644 index 000000000..b2a468557 --- /dev/null +++ b/gui-apps/nwg-shell/nwg-shell-0.5.41.ebuild @@ -0,0 +1,33 @@ +# 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 distutils-r1 + +DESCRIPTION="libraries an common functions for the nwg-shell project" +HOMEPAGE="https://github.com/nwg-piotr/nwg-shell" +SRC_URI="https://github.com/nwg-piotr/nwg-shell/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +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)" +}