From 9712b0e2515d7b3c553e254c67e8efa081c69d0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20J=C3=A4ger?= Date: Tue, 10 Feb 2026 17:33:57 +0100 Subject: [PATCH] gui-apps/nwg-displays: add 0.3.28 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Jäger --- gui-apps/nwg-displays/.pkgbump-pv | 1 + gui-apps/nwg-displays/Manifest | 1 + .../nwg-displays/nwg-displays-0.3.28.ebuild | 39 +++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 gui-apps/nwg-displays/.pkgbump-pv create mode 100644 gui-apps/nwg-displays/nwg-displays-0.3.28.ebuild diff --git a/gui-apps/nwg-displays/.pkgbump-pv b/gui-apps/nwg-displays/.pkgbump-pv new file mode 100644 index 0000000000..9578e9400c --- /dev/null +++ b/gui-apps/nwg-displays/.pkgbump-pv @@ -0,0 +1 @@ +0.3.28 diff --git a/gui-apps/nwg-displays/Manifest b/gui-apps/nwg-displays/Manifest index d0b374758f..f2bf01d8e6 100644 --- a/gui-apps/nwg-displays/Manifest +++ b/gui-apps/nwg-displays/Manifest @@ -1,2 +1,3 @@ DIST nwg-displays-0.3.22.tar.gz 24766 BLAKE2B a87369e79ffa8aeb3fa09471a8f4f35b920938e0a5bfa65806c35f8220d809793bf5581f6f646347b0c6c6ea4c343920fb7d1a539d33d1ef49e97bb2e075aaed SHA512 9a6808da69dd99c7c725d045c9a088cb830938f208e2175af050611d38e5f4737babaa3014a8e07bd452d34f55888a395cc5e61cab4ccddcc926a89141661f18 DIST nwg-displays-0.3.25.tar.gz 27222 BLAKE2B 2239f751ff419bb7e533fb110dd3896ee5607d8e0f0a11b76491e907a771eeb6d295eb9724aac276daf0e738c83f58e8b288f547fa425b02ab767d9c1b29ce36 SHA512 5bba616b45eeb3bd9071e3f35cabfee5a324974a8911394a3f22371535042726d3aa1736dae77d942178fb702246c7515c7c578347a5cbc99f1dc3fc23d31ed9 +DIST nwg-displays-0.3.28.tar.gz 38580 BLAKE2B 1f7fd513477f6cff0ebd445e7af1d711e55e442ba51b6b9ca00623744513cfc8573f669bdbd6f7e7b1a3f061ae9f4d99622166c5abeb33101123e71e715b642a SHA512 2807721d2bc913ca82970d434cfd26404c096c16536f4a0425f0b32abcdef70e00c076c42fcff35651c0badd2d663d037b8e58dd7a05a85016f73ff84e0d0316 diff --git a/gui-apps/nwg-displays/nwg-displays-0.3.28.ebuild b/gui-apps/nwg-displays/nwg-displays-0.3.28.ebuild new file mode 100644 index 0000000000..dfc1e3dfa5 --- /dev/null +++ b/gui-apps/nwg-displays/nwg-displays-0.3.28.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=setuptools +inherit desktop distutils-r1 optfeature xdg-utils + +DESCRIPTION="Output management utility for sway and Hyprland" +HOMEPAGE="https://github.com/nwg-piotr/nwg-displays" +SRC_URI="https://github.com/nwg-piotr/nwg-displays/archive/v${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/pygobject:3[${PYTHON_USEDEP}] + gui-apps/wlr-randr + gui-libs/gtk-layer-shell[introspection] + x11-libs/gtk+:3 +" +DEPEND="${RDEPEND}" + +python_install_all() { + distutils-r1_python_install_all + domenu nwg-displays.desktop + doicon nwg-displays.svg +} + +pkg_postinst() { + xdg_desktop_database_update + + optfeature "i3 support" dev-python/i3ipc +} + +pkg_postrm() { + xdg_desktop_database_update +}