repo/gentoo:master commit in: gui-apps/uwsm/

"Kenton Groombridge" <[email protected]> Tue, 04 Aug 2026 03:32:09 +0000 (UTC)
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1785814230.758cf957bd7eaecdd7f5b42457a38198d741e931.concord@gentoo>
commit:     758cf957bd7eaecdd7f5b42457a38198d741e931
Author:     Kenton Groombridge <concord <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  4 02:52:41 2026 +0000
Commit:     Kenton Groombridge <concord <AT> gentoo <DOT> org>
CommitDate: Tue Aug  4 03:30:30 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758cf957

gui-apps/uwsm: add 0.26.6

Signed-off-by: Kenton Groombridge <concord <AT> gentoo.org>

 gui-apps/uwsm/Manifest           |  1 +
 gui-apps/uwsm/uwsm-0.26.6.ebuild | 54 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/gui-apps/uwsm/Manifest b/gui-apps/uwsm/Manifest
index 6676ac7b808d..b73aee2da035 100644
--- a/gui-apps/uwsm/Manifest
+++ b/gui-apps/uwsm/Manifest
@@ -1,2 +1,3 @@
 DIST uwsm-0.24.2.tar.gz 106454 BLAKE2B 94843f726004cf41b4635375b54259e3a18ed5f1dcba848cb8ae1d1f0b7b0faa4c9e1ca7e576d29cecc99a31a3be63fba831f8e0d04ae7e46da0869f83b187b0 SHA512 6f5977e5986b0caa77c7bbb450768625d576cb203a6d728654b897ecbe2b793a89a2f1dc0339d2f0dbf3e185477e8ad1e58d3e5651f4d893a86574b1f8b04505
 DIST uwsm-0.26.4.tar.gz 112926 BLAKE2B d821f1bf38a0ad4ddfee73842c302881a40875be8ce81a80f653c72e0763fe574195d67b59e0d17bd137d4369dfc201cb28db256a9667e77362e6cfb8b67d25b SHA512 377b1b720901afa10b1d7e2a6e046fcf91cf5b5234c54a72af9df6ac14f032842346d607aa070c7fe84561095e279229374db31611ce05411159c1d944a9b002
+DIST uwsm-0.26.6.tar.gz 113245 BLAKE2B 26fd88488890945c7d509724207ce6f312d0b134cb2bea09df24bb9571c25b57cea926d1515390a8bd1e146c19ba7d6ad94a7b445d5a83300ce2461fa454ab09 SHA512 5834831d65b0d93b7b60c770494c42eab74b2634adf71aaf70fc071e859411ee2d023ba5adf3e96b4354fc4dc6c0585fa6e9ae6396c3311c69fd0a7f5154fb94

diff --git a/gui-apps/uwsm/uwsm-0.26.6.ebuild b/gui-apps/uwsm/uwsm-0.26.6.ebuild
new file mode 100644
index 000000000000..a4b6bb9b1ce9
--- /dev/null
+++ b/gui-apps/uwsm/uwsm-0.26.6.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2025-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{12..14} )
+inherit meson optfeature python-single-r1
+
+DESCRIPTION="Universal Wayland Session Manager"
+HOMEPAGE="https://github.com/Vladimir-csp/uwsm"
+SRC_URI="https://github.com/Vladimir-csp/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+	${PYTHON_DEPS}
+	$(python_gen_cond_dep '
+		dev-python/dbus-python[${PYTHON_USEDEP}]
+		dev-python/pyxdg[${PYTHON_USEDEP}]
+	')
+"
+RDEPEND="${DEPEND}"
+BDEPEND="app-text/scdoc"
+
+src_configure() {
+	local emesonargs=(
+		-Duuctl=enabled
+		-Dfumon=enabled
+		-Dttyautolock=enabled
+		-Dwait-tray=enabled
+		-Duwsm-app=enabled
+		-Dman-pages=enabled
+		-Ddocdir=/usr/share/doc/"${PF}"
+	)
+	meson_src_configure
+}
+
+src_install() {
+	meson_src_install
+	python_fix_shebang "${ED}/usr/bin"
+	python_optimize "${ED}/usr/share/${PN}"
+}
+
+pkg_postinst() {
+	optfeature "TUI selection menu feature" dev-libs/newt
+	optfeature "GUI selection menu for uuctl" gui-apps/wofi
+	optfeature "GUI selection menu for uuctl" x11-misc/dmenu
+	optfeature "GUI selection menu for uuctl" x11-misc/rofi
+	optfeature "notifications from uwsm commands and services (notify-send)" x11-libs/libnotify
+}