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 3125815823F for ; Sat, 18 Nov 2023 21:21:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7906D2BC019; Sat, 18 Nov 2023 21:21:05 +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 5E5772BC019 for ; Sat, 18 Nov 2023 21:21:05 +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 4876F335CD2 for ; Sat, 18 Nov 2023 21:21:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CECBF1A for ; Sat, 18 Nov 2023 21:21:02 +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: <1700342458.be874ce096ac78ea42957973a604a94cc8457e6b.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-shell/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild X-VCS-Directories: gui-apps/nwg-shell/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: be874ce096ac78ea42957973a604a94cc8457e6b X-VCS-Branch: dev Date: Sat, 18 Nov 2023 21:21:02 +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: 4c5cab3a-8728-4d71-8032-39549fb99c49 X-Archives-Hash: 672a5c27fa5efe1c0b97cc15e78faab8 commit: be874ce096ac78ea42957973a604a94cc8457e6b Author: Pascal Jäger leimstift de> AuthorDate: Sat Nov 18 21:20:24 2023 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Sat Nov 18 21:20:58 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be874ce0 gui-apps/nwg-shell: revbump, install scripts Signed-off-by: Pascal Jäger leimstift.de> gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild b/gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild new file mode 100644 index 0000000000..b86ccbc904 --- /dev/null +++ b/gui-apps/nwg-shell/nwg-shell-0.5.22-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 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="meta-package for the nwg-shell project" +HOMEPAGE="https://github.com/nwg-piotr/nwg-shell" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + app-misc/gopsuinfo + app-misc/nwg-look + gui-apps/azote + gui-apps/nwg-bar + gui-apps/nwg-displays + || ( gui-apps/nwg-dock gui-apps/nwg-dock-hyprland ) + gui-apps/nwg-drawer + gui-apps/nwg-menu + gui-apps/nwg-panel + gui-apps/nwg-shell-config +" +DEPEND="${RDEPEND}" + +src_install() { + 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)" +}