Sat Apr 17 10:28:23 2021 UTC ()
tmux: Add a reference to upstream PR


(leot)
diff -r1.49 -r1.50 pkgsrc/misc/tmux/distinfo
diff -r1.4 -r1.5 pkgsrc/misc/tmux/patches/patch-configure

cvs diff -r1.49 -r1.50 pkgsrc/misc/tmux/distinfo (expand / switch to unified diff)

--- pkgsrc/misc/tmux/distinfo 2021/04/17 10:11:04 1.49
+++ pkgsrc/misc/tmux/distinfo 2021/04/17 10:28:22 1.50
@@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
1$NetBSD: distinfo,v 1.49 2021/04/17 10:11:04 leot Exp $ 1$NetBSD: distinfo,v 1.50 2021/04/17 10:28:22 leot Exp $
2 2
3SHA1 (tmux-3.2.tar.gz) = 181d726792e0ac3c4b7ebe5befd5f995c57fbc9b 3SHA1 (tmux-3.2.tar.gz) = 181d726792e0ac3c4b7ebe5befd5f995c57fbc9b
4RMD160 (tmux-3.2.tar.gz) = 25a9c3db68f423d8f828207759f66f785ee10121 4RMD160 (tmux-3.2.tar.gz) = 25a9c3db68f423d8f828207759f66f785ee10121
5SHA512 (tmux-3.2.tar.gz) = 63165495e838871c7f42ac1a6229ec2404acfa7d42c7a0070c89cb38712ac933676930392b0a10cbdd6059910ae46129257b90135c5846e85142e786482fd75e 5SHA512 (tmux-3.2.tar.gz) = 63165495e838871c7f42ac1a6229ec2404acfa7d42c7a0070c89cb38712ac933676930392b0a10cbdd6059910ae46129257b90135c5846e85142e786482fd75e
6Size (tmux-3.2.tar.gz) = 646457 bytes 6Size (tmux-3.2.tar.gz) = 646457 bytes
7SHA1 (patch-compat_daemon-darwin.c) = e8feeb4b100e73ab197eb2fd776fa648a1da28e4 7SHA1 (patch-compat_daemon-darwin.c) = e8feeb4b100e73ab197eb2fd776fa648a1da28e4
8SHA1 (patch-configure) = 45515d95ea6fa2672b52463383161bba05d1635a 8SHA1 (patch-configure) = ec61c6a67a8da4b7552bb71643661b48b5e050e1
9SHA1 (patch-osdep-darwin.c) = 715b1e206add7d911edec381942706220ea2fbb6 9SHA1 (patch-osdep-darwin.c) = 715b1e206add7d911edec381942706220ea2fbb6

cvs diff -r1.4 -r1.5 pkgsrc/misc/tmux/patches/Attic/patch-configure (expand / switch to unified diff)

--- pkgsrc/misc/tmux/patches/Attic/patch-configure 2021/04/17 10:11:04 1.4
+++ pkgsrc/misc/tmux/patches/Attic/patch-configure 2021/04/17 10:28:22 1.5
@@ -1,17 +1,21 @@ @@ -1,17 +1,21 @@
1$NetBSD: patch-configure,v 1.4 2021/04/17 10:11:04 leot Exp $ 1$NetBSD: patch-configure,v 1.5 2021/04/17 10:28:22 leot Exp $
2 2
3Avoid unportable `==' test(1) operator. 3Avoid unportable `==' test(1) operator.
4 4
 5Shared upstream via:
 6
 7 <https://github.com/tmux/tmux/pull/2660>
 8
5--- configure.orig 2021-04-17 09:58:34.124050016 +0000 9--- configure.orig 2021-04-17 09:58:34.124050016 +0000
6+++ configure 10+++ configure
7@@ -3030,10 +3030,10 @@ fi 11@@ -3030,10 +3030,10 @@ fi
8 if test "x$enable_fuzzing" = xyes; then 12 if test "x$enable_fuzzing" = xyes; then
9 $as_echo "#define NEED_FUZZING 1" >>confdefs.h 13 $as_echo "#define NEED_FUZZING 1" >>confdefs.h
10  14
11- test "x$CC" == x && CC=clang 15- test "x$CC" == x && CC=clang
12- test "x$FUZZING_LIBS" == x && \ 16- test "x$FUZZING_LIBS" == x && \
13+ test "x$CC" = x && CC=clang 17+ test "x$CC" = x && CC=clang
14+ test "x$FUZZING_LIBS" = x && \ 18+ test "x$FUZZING_LIBS" = x && \
15 FUZZING_LIBS="-fsanitize=fuzzer" 19 FUZZING_LIBS="-fsanitize=fuzzer"
16- test "x$SAVED_CFLAGS" == x && \ 20- test "x$SAVED_CFLAGS" == x && \
17+ test "x$SAVED_CFLAGS" = x && \ 21+ test "x$SAVED_CFLAGS" = x && \