pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/chat/weechat
Module Name: pkgsrc
Committed By: nia
Date: Sun Dec 19 13:22:21 UTC 2021
Modified Files:
pkgsrc/chat/weechat: Makefile distinfo options.mk
Log Message:
weechat: update to 3.4
Version 3.4 (2021-12-18)
New features
* core: add support of static arrays in hdata
* core: add command /toggle
* api: add parameters pointers, extra_vars and options in function
hdata_search
* api: add user variables in evaluation of expressions with
"define:name,value"
* api: add IRC message parameters "param1" to "paramN" and "num_params"
in output of irc_message_parse
* irc: allow quotes around IRC message in command /server fakerecv
* trigger: hide key and password in command "/msg nickserv setpass nick
key password"
* trigger: add support of option "-server" when hiding passwords in
command /msg nickserv register
Bug fixes
* core: fix memory leak in evaluated expression
"split:number,seps,flags,xxx" when multiple "strip_items" are given
* core: fix random integer number with large range in evaluation of
expressions on GNU/Hurd
* core: fix access to integer/long/time arrays in hdata
* api: fix search of option when the section is not given in functions
config_search_option and config_search_section_option
* irc: fix join of channels with long name
* irc: fix parsing of parameters in all IRC messages
* irc: fix parsing of CAP message when there is no prefix
* irc: fix parsing of TAGMSG message when there is a colon before the
channel
To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 pkgsrc/chat/weechat/Makefile
cvs rdiff -u -r1.71 -r1.72 pkgsrc/chat/weechat/distinfo
cvs rdiff -u -r1.28 -r1.29 pkgsrc/chat/weechat/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/chat/weechat/Makefile
diff -u pkgsrc/chat/weechat/Makefile:1.129 pkgsrc/chat/weechat/Makefile:1.130
--- pkgsrc/chat/weechat/Makefile:1.129 Wed Dec 8 16:03:33 2021
+++ pkgsrc/chat/weechat/Makefile Sun Dec 19 13:22:21 2021
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.129 2021/12/08 16:03:33 adam Exp $
+# $NetBSD: Makefile,v 1.130 2021/12/19 13:22:21 nia Exp $
-DISTNAME= weechat-3.3
-PKGREVISION= 1
+DISTNAME= weechat-3.4
CATEGORIES= chat
MASTER_SITES= https://www.weechat.org/files/src/
EXTRACT_SUFX= .tar.xz
@@ -22,7 +21,6 @@ FAKE_NCURSES= yes
CMAKE_ARGS+= -DASCIIDOCTOR_FOUND=ON
CMAKE_ARGS+= -DASCIIDOCTOR_EXECUTABLE=${PREFIX}/bin/asciidoctor${RUBY_VER}
-CMAKE_ARGS+= -DCA_FILE=${PREFIX}/share/mozilla-rootcerts/cacert.pem
CMAKE_ARGS+= -DENABLE_GUILE=OFF
CMAKE_ARGS+= -DENABLE_TCL=OFF
CMAKE_ARGS+= -DENABLE_JAVASCRIPT=OFF
@@ -46,7 +44,7 @@ BUILDLINK_TRANSFORM+= rm:-Werror-implici
.if !empty(PKG_OPTIONS:Mpython)
SUBST_CLASSES+= python
SUBST_STAGE.python= pre-configure
-SUBST_MESSAGE.python= Adjust pkg-config python checks
+SUBST_MESSAGE.python= Adjusting pkg-config python checks
SUBST_FILES.python= configure.ac cmake/FindPython.cmake
SUBST_SED.python= -e 's,python3,python-${PYVERSSUFFIX},g'
.endif
Index: pkgsrc/chat/weechat/distinfo
diff -u pkgsrc/chat/weechat/distinfo:1.71 pkgsrc/chat/weechat/distinfo:1.72
--- pkgsrc/chat/weechat/distinfo:1.71 Tue Oct 26 10:05:28 2021
+++ pkgsrc/chat/weechat/distinfo Sun Dec 19 13:22:21 2021
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.71 2021/10/26 10:05:28 nia Exp $
+$NetBSD: distinfo,v 1.72 2021/12/19 13:22:21 nia Exp $
-BLAKE2s (weechat-3.3.tar.xz) = 26c4bbebe447f8c3ae4351acf3ce86762098244bac03e3dc3002172bb07ef232
-SHA512 (weechat-3.3.tar.xz) = 18bbaa93620185ead64f64833e4c5df6a1cbc49dc6f60362614e955947221b78baaa93a2748f153bbb6f7867c7760f7a8fa8d6d9ed30040ad5e12af127526e13
-Size (weechat-3.3.tar.xz) = 2564280 bytes
+BLAKE2s (weechat-3.4.tar.xz) = e7abac6e913787bfda4aa9637c7741f588529e0d9dff4b2b3ea5a99790b12d3b
+SHA512 (weechat-3.4.tar.xz) = b5e36802bb8b8f0e518da590d675ca63b0fa0b88acd24c2803d4f8468e6bce775691d3994db5090570f1286ad38be31615921b0d3ead697ad51986cddca57330
+Size (weechat-3.4.tar.xz) = 2617640 bytes
SHA1 (patch-cmake_FindNcurses.cmake) = 73d4bc9551c79ee967abe06eba09cfe1b10129d4
SHA1 (patch-po_CMakeLists.txt) = 014b42ff303a4e4213de95339ab97f029f38a068
SHA1 (patch-src_plugins_lua_CMakeLists.txt) = 307dcba1a072411ec2b59c4e680a930e31d6d541
Index: pkgsrc/chat/weechat/options.mk
diff -u pkgsrc/chat/weechat/options.mk:1.28 pkgsrc/chat/weechat/options.mk:1.29
--- pkgsrc/chat/weechat/options.mk:1.28 Mon Oct 18 11:15:09 2021
+++ pkgsrc/chat/weechat/options.mk Sun Dec 19 13:22:21 2021
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.28 2021/10/18 11:15:09 nia Exp $
+# $NetBSD: options.mk,v 1.29 2021/12/19 13:22:21 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.weechat
# mk/curses will handle wide-curses
@@ -40,9 +40,12 @@ CMAKE_ARGS+= -DENABLE_PERL=OFF
.if !empty(PKG_OPTIONS:Mruby)
.include "../../lang/ruby/buildlink3.mk"
CMAKE_ARGS+= -DENABLE_RUBY=ON
-CMAKE_ARGS+= -DRUBY_INCLUDE_DIRS=${PREFIX}/${RUBY_INC}
-CMAKE_ARGS+= -DRUBY_LIB=${PREFIX}/lib/libruby${RUBY_SHLIB}
PLIST.ruby= yes
+SUBST_CLASSES+= ruby
+SUBST_STAGE.ruby= pre-configure
+SUBST_MESSAGE.ruby= Adjusting pkg-config ruby checks
+SUBST_FILES.ruby= cmake/FindRuby.cmake
+SUBST_SED.ruby= -e 's,ruby-3.0,ruby-${RUBY_VERSION},g'
#BUILDLINK_INCDIRS.${RUBY_BASE}+= ${RUBY_INC}
#BUILDLINK_INCDIRS.${RUBY_BASE}+= ${RUBY_ARCHINC}
.else
Home |
Main Index |
Thread Index |
Old Index