summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2020-05-11 11:05:53 +0000
committerMathieu Arnold <mat@FreeBSD.org>2020-05-11 11:05:53 +0000
commit54934e570617785f43a6796cc536b684c35459e7 (patch)
treeab9249cba525bc44e645e2dccf6635f8d8a3d092
parent- Update `graphics/embree' to version 3.10.0 (*) (diff)
Update to 3.1b.
Changes: https://github.com/tmux/tmux/blob/3.1b/CHANGES
-rw-r--r--sysutils/tmux/Makefile3
-rw-r--r--sysutils/tmux/distinfo6
-rw-r--r--sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e18
3 files changed, 4 insertions, 23 deletions
diff --git a/sysutils/tmux/Makefile b/sysutils/tmux/Makefile
index eb015dc96e5d..60cf9b5b8283 100644
--- a/sysutils/tmux/Makefile
+++ b/sysutils/tmux/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= tmux
-PORTVERSION= 3.1a
-PORTREVISION= 1
+PORTVERSION= 3.1b
CATEGORIES= sysutils
MASTER_SITES= https://github.com/tmux/tmux/releases/download/${PORTVERSION}/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
diff --git a/sysutils/tmux/distinfo b/sysutils/tmux/distinfo
index 99416600fef5..aa6e45184fb4 100644
--- a/sysutils/tmux/distinfo
+++ b/sysutils/tmux/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1588249694
-SHA256 (tmux-3.1a.tar.gz) = 10687cbb02082b8b9e076cf122f1b783acc2157be73021b4bedb47e958f4e484
-SIZE (tmux-3.1a.tar.gz) = 561121
+TIMESTAMP = 1589189119
+SHA256 (tmux-3.1b.tar.gz) = d93f351d50af05a75fe6681085670c786d9504a5da2608e481c47cf5e1486db9
+SIZE (tmux-3.1b.tar.gz) = 561152
SHA256 (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 2f8f3fe586bbdeec9b251ce3ef74f5edef19ba371968a8011acef860ddac59e1
SIZE (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 1526
diff --git a/sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e b/sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e
deleted file mode 100644
index bc1202ad1cd0..000000000000
--- a/sysutils/tmux/files/patch-6a33a12798b2afeee6fb7bba74d86d628137921e
+++ /dev/null
@@ -1,18 +0,0 @@
-From 6a33a12798b2afeee6fb7bba74d86d628137921e Mon Sep 17 00:00:00 2001
-From: Nicholas Marriott <nicholas.marriott@gmail.com>
-Date: Thu, 30 Apr 2020 15:20:08 +0100
-Subject: [PATCH] Do not remove the automatic-rename option from the global
- set, only from the window (it must stay in the global set or tmux will
- crash). GitHub issue 2188.
-
---- input.c.orig 2020-04-29 20:01:18 UTC
-+++ input.c
-@@ -2304,7 +2304,7 @@ input_exit_rename(struct input_ctx *ictx)
- return;
-
- if (ictx->input_len == 0) {
-- oe = options_get(wp->window->options, "automatic-rename");
-+ oe = options_get_only(wp->window->options, "automatic-rename");
- if (oe != NULL)
- options_remove(oe);
- return;