Accepting request 257386 from server:irc

- update to 0.8.17
  + Document that SSL connections aren't properly handled during
    /UPGRADE. See Github PR #39.
  + Synchronize scripts with scripts.irssi.org.
  + Performance enhancement of the nicklist as well as the
    window_item_find function. See Github PR #24.
  + Disallow unloading of static modules.
  + Allow UTF-8 characters in /bind. See Github PR #18.
  + Split overlong outgoing messages instead of silently truncating
    them.
    Adds two new options: 'split_line_end' and 'split_line_start'.
    - 'split_line_end' contains a string added to the end of line
      fragments.
    - 'split_line_start' contains a string added to the beginning
      of line
    fragments. See Github PR #29.
  + Added special /ignore NO_ACT level to ignore only activity (see
    /help ignore).
  + Support for 256 and true color terminals (see Github PR #48).
  + Support for italics (see Github PR #58).
  + Rewrote many help files.
  - Fixed various compiler warnings and use of deprecated
    functions.
  - Fixed Perl API usage and added PERL_NO_GET_CONTEXT to reduce
    code size.
  - Fixed format_get_text Perl API. See Github PR #23.
  - Fixed gui_printtext_after and term_refresh_*() visibility. See
    Github PR #22.
  - Fixed issue where UTF-8 characters was corrupted once for every
    32k text. See Github PR #12.
  - Fixed redrawing issue with right-aligned statusbar.
  - Fixed use-after-free bug with cached settings values. See
    Github PR #147.

OBS-URL: https://build.opensuse.org/request/show/257386
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/irssi?expand=0&rev=31
This commit is contained in:
Stephan Kulow 2014-10-18 07:09:40 +00:00 committed by Git OBS Bridge
commit bf741e3e3e
5 changed files with 57 additions and 16 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f7afed2a2754f1f5bf5cf2c87476f3c4d4aa5d71f9f4f68d05f927220d19f97
size 986129

View File

@ -23,4 +23,4 @@ Index: src/fe-text/irssi.c
+#include "core/network.h"
#include "settings.h"
#include "session.h"
#include "servers.h"

3
irssi-0.8.17.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3c9600cad2edf58f1d012febc1a0ba844274df6e331c01a9e935467705166807
size 1102196

View File

@ -1,3 +1,40 @@
-------------------------------------------------------------------
Fri Oct 17 13:23:08 UTC 2014 - mrueckert@suse.de
- update to 0.8.17
+ Document that SSL connections aren't properly handled during
/UPGRADE. See Github PR #39.
+ Synchronize scripts with scripts.irssi.org.
+ Performance enhancement of the nicklist as well as the
window_item_find function. See Github PR #24.
+ Disallow unloading of static modules.
+ Allow UTF-8 characters in /bind. See Github PR #18.
+ Split overlong outgoing messages instead of silently truncating
them.
Adds two new options: 'split_line_end' and 'split_line_start'.
- 'split_line_end' contains a string added to the end of line
fragments.
- 'split_line_start' contains a string added to the beginning
of line
fragments. See Github PR #29.
+ Added special /ignore NO_ACT level to ignore only activity (see
/help ignore).
+ Support for 256 and true color terminals (see Github PR #48).
+ Support for italics (see Github PR #58).
+ Rewrote many help files.
- Fixed various compiler warnings and use of deprecated
functions.
- Fixed Perl API usage and added PERL_NO_GET_CONTEXT to reduce
code size.
- Fixed format_get_text Perl API. See Github PR #23.
- Fixed gui_printtext_after and term_refresh_*() visibility. See
Github PR #22.
- Fixed issue where UTF-8 characters was corrupted once for every
32k text. See Github PR #12.
- Fixed redrawing issue with right-aligned statusbar.
- Fixed use-after-free bug with cached settings values. See
Github PR #147.
-------------------------------------------------------------------
Thu Sep 4 15:31:08 UTC 2014 - mrueckert@suse.de

View File

@ -15,12 +15,14 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%bcond_with socks
Name: irssi
Version: 0.8.16
Version: 0.8.17
Release: 0
%define pkg_name irssi
%define pkg_version 0.8.17
#
#
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -43,7 +45,7 @@ BuildRequires: perl
Conflicts: %{pkg_name}-snapshot
#
Url: http://www.irssi.org
Source: http://www.irssi.org/files/irssi-%{version}.tar.bz2
Source: http://www.irssi.org/files/irssi-%{pkg_version}.tar.bz2
Source1: irssi.desktop
Source2: irssi.png
Source99: irssi-rpmlintrc
@ -98,7 +100,7 @@ Authors:
Timo Sirainen <cras@irssi.org>
%prep
%setup -q
%setup -q -n %{pkg_name}-%{pkg_version}
#patch
#patch1
%patch2
@ -112,17 +114,19 @@ export PKG_CONFIG_PATH="/opt/gnome/%{_lib}/pkgconfig:$PKG_CONFIG_PATH"
%endif
export CFLAGS="%{optflags} -fno-strict-aliasing -DGLIB_DISABLE_DEPRECATION_WARNINGS"
%configure \
--enable-ipv6 \
--with-bot \
--with-proxy \
--enable-ssl \
--enable-ipv6 \
--with-bot \
--with-proxy \
%if %{with socks}
--with-socks \
--with-socks \
%endif
--with-ncurses \
--with-terminfo \
--with-perl=yes \
--with-perl-lib=vendor
--enable-dane \
--enable-ssl \
--with-ncurses \
--with-terminfo \
--enable-true-color \
--with-perl=yes \
--with-perl-lib=vendor
%__make %{?jobs:-j%{jobs}} all
%install