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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 544A315801B for ; Sat, 12 Aug 2023 16:32:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9513A2BC036; Sat, 12 Aug 2023 16:32:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 795A12BC036 for ; Sat, 12 Aug 2023 16:32:02 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 904AA335D91 for ; Sat, 12 Aug 2023 16:32:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4E13F70 for ; Sat, 12 Aug 2023 16:31:58 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1691700758.0b88fbf7c0ae702f8c93f52db6a86647cb353a4b.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/nwg-shell/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/nwg-shell/nwg-shell-0.5.7-r1.ebuild X-VCS-Directories: gui-apps/nwg-shell/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 0b88fbf7c0ae702f8c93f52db6a86647cb353a4b X-VCS-Branch: master Date: Sat, 12 Aug 2023 16:31:58 +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: 443bbd78-da3c-40ce-864e-a80b84b774b1 X-Archives-Hash: 17e989c23958a6c8edaef1ae9ca36166 commit: 0b88fbf7c0ae702f8c93f52db6a86647cb353a4b Author: Pascal Jäger leimstift de> AuthorDate: Thu Aug 10 20:52:38 2023 +0000 Commit: David Roman gmail com> CommitDate: Thu Aug 10 20:52:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b88fbf7 gui-apps/nwg-shell: added azote and gopsuinfo deps Signed-off-by: Pascal Jäger leimstift.de> gui-apps/nwg-shell/nwg-shell-0.5.7-r1.ebuild | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/gui-apps/nwg-shell/nwg-shell-0.5.7-r1.ebuild b/gui-apps/nwg-shell/nwg-shell-0.5.7-r1.ebuild new file mode 100644 index 0000000000..db16d95c38 --- /dev/null +++ b/gui-apps/nwg-shell/nwg-shell-0.5.7-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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}" + +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)" +}