summaryrefslogtreecommitdiff
path: root/chat/weechat/patches
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2019-09-17 11:30:27 +0000
committernia <nia@pkgsrc.org>2019-09-17 11:30:27 +0000
commit10303d83445b93fdc2a3373d9494e54b5b796c3a (patch)
tree08f0a337b9de5bdc473e11c5200505c875987141 /chat/weechat/patches
parente4792a6a02f63a157065b1e24a68d3522db7d91d (diff)
downloadpkgsrc-10303d83445b93fdc2a3373d9494e54b5b796c3a.tar.gz
weechat: update to 2.6
== Version 2.6 (2019-09-08) New features:: * core: add support of 32767 color pairs (issue #1343, issue #1345) * core: add option "close" in command /window (issue #853) * api: add infos "term_colors" and "term_color_pairs" * api: add function list_user_data (issue #666) * api: add argument "strip_items" in function string_split * buflist: add infolist "buflist" with list of buffer pointers (issue #1375) * exec: evaluate option exec.command.shell, change default value to "${env:SHELL}" (issue #1356) * fset: add filters "h=xxx" and "he=xxx" to filter options by description (translated or in English) * irc: make command char optional in server option "command" (issue #615) * irc: add variables "user_max_length" and "host_max_length" in server structure (issue #1387) Bug fixes:: * core: use fixed-width integer for computing nick and hashtable DJB2 key hashes, add values "djb2_32" and "sum_32" for option weechat.look.nick_color_hash (issue #1394) * core: create or update option weechat.notify.xxx when function buffer_set is called with "notify" property (issue #1390) * core: fix memory leak in case of error when building content of bar item for display (issue #1384) * core: send command line parameter to plugins only if the name starts with the plugin name followed by a colon * core: auto disable upgrade process (command line option "--upgrade") if the file weechat.upgrade is not found * core: replace newlines by spaces in argument "completion" of function hook_command (issue #538) * core: replace char "," by "~" in color codes to separate foreground from background (issue #1264) * alias: remove default aliases /AME and /AMSG (issue #1355) * buflist: use extra variables in option buflist.look.display_conditions (issue #1393) * irc: fix parsing of messages 346 (invite list), 348 (exception list), 367 (ban list) and 728 (quiet list) when there is a colon before the timestamp (issue #1396) * irc: fix memory leak when removing a server * irc: fix length of user/nick/host in split of messages (issue #1387) * irc: quote NICK command argument sent to the server only if there's a ":" in the nick (issue #1376, issue #1319) * irc: return all arguments in the PONG response to a PING (issue #1369) * irc: disable server reconnection when the server buffer is closed (issue #236) * irc: strip spaces at beginning/end of addresses in server option "addresses" (issue #195) * irc: fix display of enabled/disabled client capabilities received in command CAP ACK (issue #151) * ruby: fix conversion of big integers on 32bit architecture (issue #1395) Tests:: * unit: add tests on IRC ignore, message and nick functions Build:: * core: fix compilation with autotools on FreeBSD 12.0 * debian: disable Javascript plugin on Debian Buster/Bullseye (issue #1374) * python: compile with Python 3 by default * python: use pkg-config to detect Python (issue #1382)
Diffstat (limited to 'chat/weechat/patches')
-rw-r--r--chat/weechat/patches/patch-cmake_FindNcurses.cmake14
1 files changed, 7 insertions, 7 deletions
diff --git a/chat/weechat/patches/patch-cmake_FindNcurses.cmake b/chat/weechat/patches/patch-cmake_FindNcurses.cmake
index dc7842e455b..c107639852d 100644
--- a/chat/weechat/patches/patch-cmake_FindNcurses.cmake
+++ b/chat/weechat/patches/patch-cmake_FindNcurses.cmake
@@ -1,19 +1,19 @@
-$NetBSD: patch-cmake_FindNcurses.cmake,v 1.3 2019/03/23 14:54:13 nia Exp $
+$NetBSD: patch-cmake_FindNcurses.cmake,v 1.4 2019/09/17 11:30:27 nia Exp $
Don't try to look for ncurses.h, so FAKE_NCURSES works for netbsd curses.
---- cmake/FindNcurses.cmake.orig 2019-02-17 07:20:07.000000000 +0000
+--- cmake/FindNcurses.cmake.orig 2019-09-08 06:13:58.000000000 +0000
+++ cmake/FindNcurses.cmake
@@ -22,7 +22,7 @@ if(NCURSES_FOUND)
endif()
find_path(NCURSES_INCLUDE_PATH
- NAMES ncurses.h curses.h
-+ NAMES curses.h
- PATHS /usr/include/ncursesw /usr/include/ncurses /usr/include
- /usr/local/include/ncursesw /usr/local/include/ncurses /usr/local/include
- /usr/pkg/include/ncursesw /usr/pkg/include/ncurses /usr/pkg/include
-@@ -42,7 +42,7 @@ if(NCURSESW_LIBRARY)
++ NAMES curses.h ncurses.h
+ PATH_SUFFIXES ncursesw ncurses
+ PATHS /usr/include /usr/local/include /usr/pkg/include
+ )
+@@ -41,7 +41,7 @@ if(NCURSESW_LIBRARY)
set(NCURSES_LIBRARY ${NCURSESW_LIBRARY})
else()
find_library(NCURSES_LIBRARY