CVS commit: pkgsrc/misc/py-tmuxp

"Kimmo Suominen" <[email protected]>
Newsgroups gmane.os.netbsd.devel.pkgsrc.cvs
Message-ID <[email protected]>
Module Name:	pkgsrc
Committed By:	kim
Date:		Tue Aug 18 14:51:28 UTC 2026

Modified Files:
	pkgsrc/misc/py-tmuxp: Makefile PLIST distinfo version.mk

Log Message:
py-tmuxp: update to 1.74.0

User-visible changes since 1.67.0:

1.74.0	tmuxp debug-info reports the full tmux version, keeping the
	point-release letter (3.7a) it used to normalize away.
1.73.0	Workspaces can select a third-party builder with the
	workspace_builder key; new workspace_builder_options with
	pane_readiness: auto|always|never.  The new default, auto,
	waits for the shell prompt only under zsh -- previously it
	waited everywhere.
1.72.0	tmux 3.7 features (floating panes, new options, format
	variables and command flags) reachable from the Python API
	and tmuxp shell.  YAML workspace format unchanged.
1.71.0	tmux 3.7 supported; no change for older tmux.
1.70.1	Fix: the pytest plugin failed to import under pytest 9.1,
	breaking test collection for users of tmuxp's fixtures.
1.70.0	Fix: session and window listing could silently return empty
	results under a non-UTF-8 locale.
1.69.0	tmuxp shell scripts can use attached-client objects and
	tmux-native filtering of sessions, windows and panes.
1.68.0	No user-facing changes (docs and test tooling).


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/misc/py-tmuxp/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/misc/py-tmuxp/PLIST \
    pkgsrc/misc/py-tmuxp/distinfo pkgsrc/misc/py-tmuxp/version.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
(unnamed) (text/x-diff, 4.1 KB)
Modified files:

Index: pkgsrc/misc/py-tmuxp/Makefile
diff -u pkgsrc/misc/py-tmuxp/Makefile:1.5 pkgsrc/misc/py-tmuxp/Makefile:1.6
--- pkgsrc/misc/py-tmuxp/Makefile:1.5	Sun Jun 28 15:41:32 2026
+++ pkgsrc/misc/py-tmuxp/Makefile	Tue Aug 18 14:51:28 2026
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2026/06/28 15:41:32 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2026/08/18 14:51:28 kim Exp $
 
 DISTNAME=	tmuxp-${VERSION}
-PKGREVISION=	1
 PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=	misc python
 MASTER_SITES=	${MASTER_SITE_GITHUB:=tmux-python/}
@@ -13,7 +12,7 @@ HOMEPAGE=	https://tmuxp.git-pull.com/
 COMMENT=	Session manager for tmux
 LICENSE=	mit
 
-DEPENDS+=	${PYPKGPREFIX}-libtmux>=0.55:../../misc/py-libtmux
+DEPENDS+=	${PYPKGPREFIX}-libtmux>=0.61:../../misc/py-libtmux
 DEPENDS+=	${PYPKGPREFIX}-yaml>=6:../../textproc/py-yaml
 TOOL_DEPENDS+=	${PYPKGPREFIX}-hatchling>=1.29:../../devel/py-hatchling
 # codecov

Index: pkgsrc/misc/py-tmuxp/PLIST
diff -u pkgsrc/misc/py-tmuxp/PLIST:1.1 pkgsrc/misc/py-tmuxp/PLIST:1.2
--- pkgsrc/misc/py-tmuxp/PLIST:1.1	Sun May  3 20:34:45 2026
+++ pkgsrc/misc/py-tmuxp/PLIST	Tue Aug 18 14:51:28 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2026/05/03 20:34:45 kim Exp $
+@comment $NetBSD: PLIST,v 1.2 2026/08/18 14:51:28 kim Exp $
 bin/tmuxp-${PYVERSSUFFIX}
 ${PYSITELIB}/${WHEEL_INFODIR}/METADATA
 ${PYSITELIB}/${WHEEL_INFODIR}/RECORD
@@ -95,9 +95,18 @@ ${PYSITELIB}/tmuxp/util.pyo
 ${PYSITELIB}/tmuxp/workspace/__init__.py
 ${PYSITELIB}/tmuxp/workspace/__init__.pyc
 ${PYSITELIB}/tmuxp/workspace/__init__.pyo
-${PYSITELIB}/tmuxp/workspace/builder.py
-${PYSITELIB}/tmuxp/workspace/builder.pyc
-${PYSITELIB}/tmuxp/workspace/builder.pyo
+${PYSITELIB}/tmuxp/workspace/builder/__init__.py
+${PYSITELIB}/tmuxp/workspace/builder/__init__.pyc
+${PYSITELIB}/tmuxp/workspace/builder/__init__.pyo
+${PYSITELIB}/tmuxp/workspace/builder/classic.py
+${PYSITELIB}/tmuxp/workspace/builder/classic.pyc
+${PYSITELIB}/tmuxp/workspace/builder/classic.pyo
+${PYSITELIB}/tmuxp/workspace/builder/protocol.py
+${PYSITELIB}/tmuxp/workspace/builder/protocol.pyc
+${PYSITELIB}/tmuxp/workspace/builder/protocol.pyo
+${PYSITELIB}/tmuxp/workspace/builder/registry.py
+${PYSITELIB}/tmuxp/workspace/builder/registry.pyc
+${PYSITELIB}/tmuxp/workspace/builder/registry.pyo
 ${PYSITELIB}/tmuxp/workspace/constants.py
 ${PYSITELIB}/tmuxp/workspace/constants.pyc
 ${PYSITELIB}/tmuxp/workspace/constants.pyo
@@ -113,6 +122,9 @@ ${PYSITELIB}/tmuxp/workspace/importers.p
 ${PYSITELIB}/tmuxp/workspace/loader.py
 ${PYSITELIB}/tmuxp/workspace/loader.pyc
 ${PYSITELIB}/tmuxp/workspace/loader.pyo
+${PYSITELIB}/tmuxp/workspace/options.py
+${PYSITELIB}/tmuxp/workspace/options.pyc
+${PYSITELIB}/tmuxp/workspace/options.pyo
 ${PYSITELIB}/tmuxp/workspace/validation.py
 ${PYSITELIB}/tmuxp/workspace/validation.pyc
 ${PYSITELIB}/tmuxp/workspace/validation.pyo
Index: pkgsrc/misc/py-tmuxp/distinfo
diff -u pkgsrc/misc/py-tmuxp/distinfo:1.1 pkgsrc/misc/py-tmuxp/distinfo:1.2
--- pkgsrc/misc/py-tmuxp/distinfo:1.1	Sun May  3 20:34:45 2026
+++ pkgsrc/misc/py-tmuxp/distinfo	Tue Aug 18 14:51:28 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2026/05/03 20:34:45 kim Exp $
+$NetBSD: distinfo,v 1.2 2026/08/18 14:51:28 kim Exp $
 
-BLAKE2s (tmuxp-1.67.0.tar.gz) = 5d79dde55bf3b4b7ae44a1318112490dd888da51d2368669a5a89abe78f5fa87
-SHA512 (tmuxp-1.67.0.tar.gz) = b0d68796f323b449a5abf6c1cc64e21d1faadbc69a0b26696fd4456fbe871ea6c2408e7e18d002128d7576be3ef36988e4fceccf16200e53d1f021cc73c88165
-Size (tmuxp-1.67.0.tar.gz) = 1096493 bytes
+BLAKE2s (tmuxp-1.74.0.tar.gz) = 93b57fcb1db5c79e2f3ca1268c503ea83ce2938c2f9ae97d3a1ebe877dd566dc
+SHA512 (tmuxp-1.74.0.tar.gz) = 3124c7da4d36730594dde5ce2a2bc4d5501eee52213e44279a8a5b533cbb123083c42f25ccec49d7186d8c1680b47955806ac49ee5f299d8f64886b3283cea39
+Size (tmuxp-1.74.0.tar.gz) = 1114617 bytes
Index: pkgsrc/misc/py-tmuxp/version.mk
diff -u pkgsrc/misc/py-tmuxp/version.mk:1.1 pkgsrc/misc/py-tmuxp/version.mk:1.2
--- pkgsrc/misc/py-tmuxp/version.mk:1.1	Sun May  3 20:34:45 2026
+++ pkgsrc/misc/py-tmuxp/version.mk	Tue Aug 18 14:51:28 2026
@@ -1,3 +1,3 @@
-# $NetBSD: version.mk,v 1.1 2026/05/03 20:34:45 kim Exp $
+# $NetBSD: version.mk,v 1.2 2026/08/18 14:51:28 kim Exp $
 
-VERSION=	1.67.0
+VERSION=	1.74.0
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.