Hello community,

here is the log from the commit of package tls for openSUSE:Factory checked in 
at 2014-11-26 10:33:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tls (Old)
 and      /work/SRC/openSUSE:Factory/.tls.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tls"

Changes:
--------
--- /work/SRC/openSUSE:Factory/tls/tls.changes  2011-09-23 12:48:19.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.tls.new/tls.changes     2014-11-26 
10:33:53.000000000 +0100
@@ -1,0 +2,13 @@
+Wed Nov 19 12:56:09 UTC 2014 - [email protected]
+
+- disable test tlsIO-2.10, reading from a closed socket raises an
+  exception with tcl >= 8.6.2 resulting in a timeout and failed
+  test
+
+-------------------------------------------------------------------
+Wed Jun 25 18:51:04 UTC 2014 - [email protected]
+
+- Enable TLS1 by default to avoid problems with servers that
+  reject anything else (tls-enable-tls1.patch).
+
+-------------------------------------------------------------------

New:
----
  tls-enable-tls1.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ tls.spec ++++++
--- /var/tmp/diff_new_pack.nsPgxF/_old  2014-11-26 10:33:55.000000000 +0100
+++ /var/tmp/diff_new_pack.nsPgxF/_new  2014-11-26 10:33:55.000000000 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package tls (Version 1.6)
+# spec file for package tls
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,19 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:           tls
-BuildRequires:  openssl openssl-devel tcl-devel
+BuildRequires:  openssl
+BuildRequires:  openssl-devel
+BuildRequires:  tcl-devel
 Summary:        Tcl Binding for the OpenSSL Library
-Version:        1.6
-Release:        43
 License:        BSD-3-Clause
 Group:          Development/Libraries/Tcl
+Version:        1.6
+Release:        0
 Url:            http://tls.sourceforge.net
 Source0:        %name%version-src.tar.bz2
 Patch1:         tls-ciphers.patch
+Patch2:         tls-enable-tls1.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -46,6 +47,7 @@
 %prep
 %setup -q -n %name%version
 %patch1
+%patch2
 
 %build
 CFLAGS="$RPM_OPT_FLAGS" \
@@ -58,6 +60,7 @@
 
 %check
 cat > known-failures <<EOF
+tlsIO-2.10
 tlsIO-12.3
 EOF
 make test 2>&1 | tee testresults

++++++ tls-enable-tls1.patch ++++++
Index: tls.c
===================================================================
--- tls.c       2008-03-19 23:06:13.000000000 +0100
+++ tls.c       2014-06-25 18:38:15.981235622 +0200
@@ -683,10 +683,10 @@
 #else
     int ssl3 = 1;
 #endif
-#if defined(NO_SSL2) && defined(NO_SSL3)
-    int tls1 = 1;
-#else
+#if defined(NO_TLS1)
     int tls1 = 0;
+#else
+    int tls1 = 1;
 #endif
     int proto = 0;
     int verify = 0, require = 0, request = 1;
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to