summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhialto <rhialto@pkgsrc.org>2021-12-29 19:18:39 +0000
committerrhialto <rhialto@pkgsrc.org>2021-12-29 19:18:39 +0000
commit4b1bd83bb2f9035bccd75f77925c0af494a34a9f (patch)
treea3accc65bf24ee9d6651c9194dc005fffa0b9325
parentf03fb8e148004e79c739f55a6dc3eef954e67b58 (diff)
downloadpkgsrc-4b1bd83bb2f9035bccd75f77925c0af494a34a9f.tar.gz
misc/tmux: minor update to 3.2a.
CHANGES FROM 3.2 TO 3.2a * Add an "always" value for the "extended-keys" option; if set then tmux will forward extended keys to applications even if they do not request them. * Add a "mouse" terminal feature so tmux can enable the mouse on terminals where it is known to be supported even if terminfo(5) says otherwise. * Do not expand the filename given to -f so it can contain colons. * Fixes for problems with extended keys and modifiers, scroll region, source-file, crosscompiling, format modifiers and other minor issues.
-rw-r--r--misc/tmux/Makefile4
-rw-r--r--misc/tmux/distinfo9
-rw-r--r--misc/tmux/patches/patch-configure24
3 files changed, 6 insertions, 31 deletions
diff --git a/misc/tmux/Makefile b/misc/tmux/Makefile
index 6c836d095a3..c5372db14d4 100644
--- a/misc/tmux/Makefile
+++ b/misc/tmux/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.56 2021/04/17 10:11:04 leot Exp $
+# $NetBSD: Makefile,v 1.57 2021/12/29 19:18:39 rhialto Exp $
-DISTNAME= tmux-3.2
+DISTNAME= tmux-3.2a
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GITHUB:=tmux/}
GITHUB_RELEASE= ${PKGVERSION_NOREV}
diff --git a/misc/tmux/distinfo b/misc/tmux/distinfo
index 5106bd20f14..569e7a924c4 100644
--- a/misc/tmux/distinfo
+++ b/misc/tmux/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.52 2021/10/26 10:59:34 nia Exp $
+$NetBSD: distinfo,v 1.53 2021/12/29 19:18:39 rhialto Exp $
-BLAKE2s (tmux-3.2.tar.gz) = cfecec160286fc7b33ed90db903ef579c067d52fb57985c24044a1aad548cefc
-SHA512 (tmux-3.2.tar.gz) = 63165495e838871c7f42ac1a6229ec2404acfa7d42c7a0070c89cb38712ac933676930392b0a10cbdd6059910ae46129257b90135c5846e85142e786482fd75e
-Size (tmux-3.2.tar.gz) = 646457 bytes
+BLAKE2s (tmux-3.2a.tar.gz) = 2920b18ece93e96496f2b1342d2112356b3ce427e8de4d5e91340740cea60341
+SHA512 (tmux-3.2a.tar.gz) = 6e52c7f5d03b2c8b8c4c8caac092a166956ba97334b426f2823d74dc5849a1d31a80145924f641f69dd2c244809e9350d9bd7070897fa2e3e1f9f086f9b2f365
+Size (tmux-3.2a.tar.gz) = 648394 bytes
SHA1 (patch-compat_daemon-darwin.c) = e8feeb4b100e73ab197eb2fd776fa648a1da28e4
-SHA1 (patch-configure) = ec61c6a67a8da4b7552bb71643661b48b5e050e1
SHA1 (patch-osdep-darwin.c) = 715b1e206add7d911edec381942706220ea2fbb6
diff --git a/misc/tmux/patches/patch-configure b/misc/tmux/patches/patch-configure
deleted file mode 100644
index 1c4dbf82766..00000000000
--- a/misc/tmux/patches/patch-configure
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-configure,v 1.5 2021/04/17 10:28:22 leot Exp $
-
-Avoid unportable `==' test(1) operator.
-
-Shared upstream via:
-
- <https://github.com/tmux/tmux/pull/2660>
-
---- configure.orig 2021-04-17 09:58:34.124050016 +0000
-+++ configure
-@@ -3030,10 +3030,10 @@ fi
- if test "x$enable_fuzzing" = xyes; then
- $as_echo "#define NEED_FUZZING 1" >>confdefs.h
-
-- test "x$CC" == x && CC=clang
-- test "x$FUZZING_LIBS" == x && \
-+ test "x$CC" = x && CC=clang
-+ test "x$FUZZING_LIBS" = x && \
- FUZZING_LIBS="-fsanitize=fuzzer"
-- test "x$SAVED_CFLAGS" == x && \
-+ test "x$SAVED_CFLAGS" = x && \
- AM_CFLAGS="-g -fsanitize=fuzzer-no-link,address"
- fi
-