Hello community, here is the log from the commit of package links for openSUSE:Factory checked in at 2015-07-27 09:08:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/links (Old) and /work/SRC/openSUSE:Factory/.links.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "links" Changes: -------- --- /work/SRC/openSUSE:Factory/links/links.changes 2014-12-30 00:49:30.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.links.new/links.changes 2015-07-27 09:08:17.000000000 +0200 @@ -1,0 +2,15 @@ +Tue Jul 21 20:33:10 UTC 2015 - [email protected] + +- update to 2.10: + * SVG support using the rsvg library + * Attach to existing links instance instead of creating a new + instance + * Detect image type based on the first few bytes rather than on + content-type + * Use OpenMP in the image scaler + * Preallocate downloaded files on Linux + * Support libevent and libev + * SSL SNI no enabled upstream, remove links-sni.patch + * Support keepalive on https connections + +------------------------------------------------------------------- Old: ---- links-2.9.tar.bz2 links-sni.patch New: ---- links-2.10.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ links.spec ++++++ --- /var/tmp/diff_new_pack.NQwxed/_old 2015-07-27 09:08:18.000000000 +0200 +++ /var/tmp/diff_new_pack.NQwxed/_new 2015-07-27 09:08:18.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package links # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: links -Version: 2.9 +Version: 2.10 Release: 0 Summary: Text-Based WWW Browser License: GPL-2.0+ @@ -26,7 +26,6 @@ Source: http://links.twibright.com/download/%{name}-%{version}.tar.bz2 Patch2: configure.diff Patch3: links-nosslcomp.patch -Patch4: links-sni.patch Patch5: links-no-date-time.patch BuildRequires: autoconf BuildRequires: automake @@ -37,8 +36,10 @@ BuildRequires: pkgconfig(bzip2) BuildRequires: pkgconfig(direct) BuildRequires: pkgconfig(directfb) +BuildRequires: pkgconfig(libevent) BuildRequires: pkgconfig(liblzma) BuildRequires: pkgconfig(libpng) +BuildRequires: pkgconfig(librsvg-2.0) BuildRequires: pkgconfig(libtiff-4) BuildRequires: pkgconfig(x11) BuildRequires: pkgconfig(zlib) @@ -55,7 +56,6 @@ %setup -q -n links-%{version} %patch2 -p1 %patch3 -p1 -%patch4 -p1 %patch5 -p1 %build @@ -83,6 +83,6 @@ %doc README NEWS ChangeLog BRAILLE_HOWTO AUTHORS COPYING KEYS SITES %doc doc/links_cal %{_bindir}/links -%doc %{_mandir}/man1/links.1.gz +%{_mandir}/man1/links.1.gz %changelog ++++++ links-2.9.tar.bz2 -> links-2.10.tar.bz2 ++++++ ++++ 88345 lines of diff (skipped) ++++++ links-nosslcomp.patch ++++++ --- /var/tmp/diff_new_pack.NQwxed/_old 2015-07-27 09:08:21.000000000 +0200 +++ /var/tmp/diff_new_pack.NQwxed/_new 2015-07-27 09:08:21.000000000 +0200 @@ -3,35 +3,35 @@ https.c | 18 +++++++++++++++++- 2 files changed, 17 insertions(+), 7 deletions(-) -Index: links-2.8/connect.c +Index: links-2.10/connect.c =================================================================== ---- links-2.8.orig/connect.c 2013-08-26 00:08:07.000000000 +0100 -+++ links-2.8/connect.c 2013-10-02 21:02:00.000000000 +0100 -@@ -326,9 +326,6 @@ static void ssl_want_read(struct connect +--- links-2.10.orig/connect.c 2015-07-21 22:16:55.000000000 +0200 ++++ links-2.10/connect.c 2015-07-21 22:17:34.000000000 +0200 +@@ -323,9 +323,6 @@ static void ssl_want_io(struct connectio set_connection_timeout(c); -#ifndef HAVE_NSS -- if (c->no_tsl) c->ssl->options |= SSL_OP_NO_TLSv1; +- if (c->no_tls) c->ssl->options |= SSL_OP_NO_TLSv1; -#endif switch ((ret2 = SSL_get_error(c->ssl, ret1 = SSL_connect(c->ssl)))) { case SSL_ERROR_NONE: - c->newconn = NULL; -@@ -591,9 +588,6 @@ static void connected(struct connection + connected_callback(c); +@@ -586,9 +583,6 @@ static void connected(struct connection goto ssl_error; } SSL_set_fd(c->ssl, *b->sock); -#ifndef HAVE_NSS -- if (c->no_tsl) c->ssl->options |= SSL_OP_NO_TLSv1; +- if (c->no_tls) c->ssl->options |= SSL_OP_NO_TLSv1; -#endif - switch ((ret2 = SSL_get_error(c->ssl, ret1 = SSL_connect(c->ssl)))) { - case SSL_ERROR_WANT_READ: - setcstate(c, S_SSL_NEG); -Index: links-2.8/https.c + #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME + { + unsigned char *u = remove_proxy_prefix(c->url); +Index: links-2.10/https.c =================================================================== ---- links-2.8.orig/https.c 2013-09-20 22:17:00.000000000 +0100 -+++ links-2.8/https.c 2013-10-02 21:01:08.000000000 +0100 -@@ -62,7 +62,23 @@ SSL *getSSL(void) +--- links-2.10.orig/https.c 2015-07-21 22:15:29.000000000 +0200 ++++ links-2.10/https.c 2015-07-21 22:16:55.000000000 +0200 +@@ -55,7 +55,23 @@ SSL *getSSL(void) if (!m) return NULL; context = SSL_CTX_new((void *)m); if (!context) return NULL;
