Accepting request 559147 from home:mimi_vx:branches:server:irc
- update to 2.0.1 * python: fix arguments status/gnutls_rc/sock in hook_connect() callback * python: fix argument fd in hook_fd() callback * core: add flag "input_get_empty" in buffer * core: add signals "buffer_filters_enabled" and "buffer_filters_disabled" * core: support loading of plugins from path in environment variable "WEECHAT_EXTRA_LIBDIR" * alias: add infolist "alias_default" (list of default aliases) * buflist: add two new bar items ("buflist2" and "buflist3") using the same format configuration options * buflist: add option buflist.look.add_newline * fset: new plugin "fset" (fast set of WeeChat and plugins options) * core: make value optional in command /buffer set * core: allow floating point and hexadecimal numbers in comparison of evaluated values * core: add option weechat.look.save_config_with_fsync * api: add support of prefix "quiet:" in function key_unbind() to quietly remove keys * api: add argument "recurse_subdirs" in function exec_on_files() * script: add local variable "filter" in the script buffer * core: do not change the chat prefix size when a filtered line is added * core: fix display of nicks in nicklist when they are in a group with sub-groups * core, plugins: check return code of strftime function * core: fix cast of time_t (to "long long" instead of "long") * core: call the config hook when options are renamed or removed * api: change type of arguments status/gnutls_rc/sock in hook_connect() callback from string to integer (in scripts) * api: change type of argument fd in hook_fd() callback from string to integer (in scripts) * buflist: remove recursive evaluation of extra variables * guile: return integer (0/1) instead of boolean in API functions * guile: fix return value of static strings in API functions OBS-URL: https://build.opensuse.org/request/show/559147 OBS-URL: https://build.opensuse.org/package/show/server:irc/weechat?expand=0&rev=82
This commit is contained in:
parent
76d293a04b
commit
664003c9ca
3
weechat-2.0.1.tar.xz
Normal file
3
weechat-2.0.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6943582eabbd8a6fb6dca860a86f896492cae5fceacaa396dbc9eeaa722305d1
|
||||
size 1967336
|
16
weechat-2.0.1.tar.xz.asc
Normal file
16
weechat-2.0.1.tar.xz.asc
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEEqatat3j6XDUi/QN4+C9LFt7ECPgFAlo60WAACgkQ+C9LFt7E
|
||||
CPiNMBAAhg58R3jBY07O6pbK3F//A56BS7zB7dHQVYpW79ZbBHP2Ue5vAirypeKt
|
||||
kPc2jbk6t9GmJkY14o9e5vgDGLxULVgDgjvF2WbJiwqFgvfMz55aJhSgvMzrr+eZ
|
||||
GYFA/73TXd+NelAgBTMLzb4JJJRB9ToxMHLr7a0Ia1WyqVApvEvb5ykYq8HQg9bK
|
||||
K7CUhZEP1DUQ/+YZkO7P3Qm5MDozxc515u7mM88owUq54YCShekCuaTZvdTkdr4B
|
||||
q/xacu7i/xSGldv8dDjYWX5neLoQJOvY82i17YGaxzFhOq7Z1nyZd+Ol3rpKKFef
|
||||
TemVtd7lNxguz8aoEVp9etBqgVmG4bDT2b5p8OKTh+rAc3zwIBlxGeB7O2Tvdld5
|
||||
SNERfAykfXIdcdsbVz1x3OVPUL6yFk575x9h5mgLUI4o1HaY7SB/5t0SL3eTsdeZ
|
||||
Q9HiQQsIg8Vd+ye14QLt3luRoa94DbXuNFg3ffi39NbxvzzmSWA8JKBzzp0thlWi
|
||||
OTgy2pS4nGMKY4UbNb/IoCX6mXU5zaGV8DjMn+qErf6nHWja0uBIWPS6ifUxTTR4
|
||||
GucD8G81WrTLXAX8wNqdWepu7NjV8tEILjE7Qxyn80X4oQgiIuYEj2bEzU3gyLoL
|
||||
SV0R9eKyIDAsaMX6/VdvldNYs4Qmj0IbqQbULKPzxxpvtYAArR8=
|
||||
=Pev9
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 21 17:19:23 UTC 2017 - mimi.vx@gmail.com
|
||||
|
||||
- update to 2.0.1
|
||||
* python: fix arguments status/gnutls_rc/sock in hook_connect() callback
|
||||
* python: fix argument fd in hook_fd() callback
|
||||
* core: add flag "input_get_empty" in buffer
|
||||
* core: add signals "buffer_filters_enabled" and "buffer_filters_disabled"
|
||||
* core: support loading of plugins from path in environment
|
||||
variable "WEECHAT_EXTRA_LIBDIR"
|
||||
* alias: add infolist "alias_default" (list of default aliases)
|
||||
* buflist: add two new bar items ("buflist2" and "buflist3") using the same
|
||||
format configuration options
|
||||
* buflist: add option buflist.look.add_newline
|
||||
* fset: new plugin "fset" (fast set of WeeChat and plugins options)
|
||||
* core: make value optional in command /buffer set
|
||||
* core: allow floating point and hexadecimal numbers in comparison of evaluated values
|
||||
* core: add option weechat.look.save_config_with_fsync
|
||||
* api: add support of prefix "quiet:" in function key_unbind() to quietly remove keys
|
||||
* api: add argument "recurse_subdirs" in function exec_on_files()
|
||||
* script: add local variable "filter" in the script buffer
|
||||
* core: do not change the chat prefix size when a filtered line is added
|
||||
* core: fix display of nicks in nicklist when they are in a group with sub-groups
|
||||
* core, plugins: check return code of strftime function
|
||||
* core: fix cast of time_t (to "long long" instead of "long")
|
||||
* core: call the config hook when options are renamed or removed
|
||||
* api: change type of arguments status/gnutls_rc/sock in hook_connect() callback
|
||||
from string to integer (in scripts)
|
||||
* api: change type of argument fd in hook_fd() callback from
|
||||
string to integer (in scripts)
|
||||
* buflist: remove recursive evaluation of extra variables
|
||||
* guile: return integer (0/1) instead of boolean in API functions
|
||||
* guile: fix return value of static strings in API functions
|
||||
* irc: do not clear nicklist when joining an already joined channel if
|
||||
the option irc.look.buffer_open_before_join is on
|
||||
* irc: fix CTCP PING reply when the option irc.ctcp.ping is set to non-empty value
|
||||
* lua: fix boolean return value (as integer) in API functions
|
||||
* relay: fix parsing of CAP command without arguments in irc protocol, send ACK
|
||||
only if all capabilities received are OK and NAK otherwise
|
||||
* core: fix build with ncurses and separate tinfo
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 25 07:58:50 UTC 2017 - tchvatal@suse.com
|
||||
|
||||
|
13
weechat.spec
13
weechat.spec
@ -17,12 +17,12 @@
|
||||
|
||||
|
||||
Name: weechat
|
||||
Version: 1.9.1
|
||||
Version: 2.0.1
|
||||
Release: 0
|
||||
Summary: Portable, Fast, Light and Extensible Chat Client
|
||||
License: GPL-3.0+
|
||||
Group: Productivity/Networking/IRC
|
||||
Url: http://weechat.org
|
||||
URL: http://weechat.org
|
||||
Source: http://weechat.org/files/src/%{name}-%{version}.tar.xz
|
||||
Source1: weechat.desktop
|
||||
Source2: %{name}.keyring
|
||||
@ -147,7 +147,7 @@ export CFLAGS="%{optflags}"
|
||||
-DPYTHON_LIBRARY="%{_libdir}/libpython%{py_ver}.so" \
|
||||
-DENABLE_ENCHANT=ON \
|
||||
-DCA_FILE=%{_sysconfdir}/ssl/ca-bundle.pem
|
||||
make %{?_smp_mflags}
|
||||
%make_jobs
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
@ -157,13 +157,7 @@ install -D -m 0644 "%{SOURCE1}" "%{buildroot}%{_datadir}/applications/%{name}.de
|
||||
|
||||
%find_lang "%{name}" --with-man
|
||||
|
||||
%post
|
||||
%desktop_database_post
|
||||
%icon_theme_cache_post
|
||||
|
||||
%postun
|
||||
%desktop_database_postun
|
||||
%icon_theme_cache_postun
|
||||
|
||||
%files
|
||||
%doc AUTHORS.adoc ChangeLog.adoc Contributing.adoc COPYING
|
||||
@ -183,6 +177,7 @@ install -D -m 0644 "%{SOURCE1}" "%{buildroot}%{_datadir}/applications/%{name}.de
|
||||
%{_libdir}/weechat/plugins/script.so
|
||||
%{_libdir}/weechat/plugins/trigger.so
|
||||
%{_libdir}/weechat/plugins/xfer.so
|
||||
%{_libdir}/weechat/plugins/fset.so
|
||||
%{_datadir}/applications/weechat.desktop
|
||||
%{_datadir}/icons/hicolor/*/apps/weechat.png
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user