commit gnutls for openSUSE:Factory
Hello community, here is the log from the commit of package gnutls for openSUSE:Factory checked in at 2013-09-04 13:48:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnutls (Old) and /work/SRC/openSUSE:Factory/.gnutls.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "gnutls" Changes: -------- --- /work/SRC/openSUSE:Factory/gnutls/gnutls.changes 2013-09-02 14:56:16.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gnutls.new/gnutls.changes 2013-09-04 13:48:47.000000000 +0200 @@ -1,0 +2,31 @@ +Mon Sep 2 16:23:59 UTC 2013 - schwab@linux-m68k.org + +- Don't run install-info on images + +------------------------------------------------------------------- +Mon Sep 2 07:43:21 UTC 2013 - shchang@suse.com + +- Update to 3.2.4 +** libgnutls: Fixes when session tickets and session DB are used. +Report and initial patch by Stefan Buehler. + +** libgnutls: Added the RSA-PSK key exchange. Patch by by Frank Morgner, +based on previous patch by Bardenheuer GmbH and Bundesdruckerei GmbH. + +** libgnutls: Added ciphersuites that use ARCFOUR with ECDHE. Patch +by Stefan Buehler. + +** libgnutls: Added the PFS priority string option. + +** libgnutls: Gnulib included files are strictly LGPLv2. + +** libgnutls: Corrected gnutls_certificate_server_set_request(). +Reported by Petr Pisar. + +** API and ABI modifications: +gnutls_record_set_timeout: Exported + +Add files:gnutls-3.2.4.tar.xz.sig, gnutls-3.2.4.tar.xz, gnutls-3.2.4-noecc.patch +Delete file: gnutls-3.2.3-noecc.patch + +------------------------------------------------------------------- Old: ---- gnutls-3.2.3-noecc.patch gnutls-3.2.3.tar.xz gnutls-3.2.3.tar.xz.sig New: ---- gnutls-3.2.4-noecc.patch gnutls-3.2.4.tar.xz gnutls-3.2.4.tar.xz.sig make-obs-happy-with-gnutls_3.2.4.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnutls.spec ++++++ --- /var/tmp/diff_new_pack.tTyUAL/_old 2013-09-04 13:48:49.000000000 +0200 +++ /var/tmp/diff_new_pack.tTyUAL/_new 2013-09-04 13:48:49.000000000 +0200 @@ -21,7 +21,7 @@ %define gnutls_ossl_sover 27 Name: gnutls -Version: 3.2.3 +Version: 3.2.4 Release: 0 Summary: The GNU Transport Layer Security Library License: LGPL-2.1+ and GPL-3.0+ @@ -37,8 +37,9 @@ Patch3: gnutls-3.0.26-skip-test-fwrite.patch # Disable elliptic curves for reasons. - meissner&cfarrell -Patch5: gnutls-3.2.3-noecc.patch +Patch5: gnutls-3.2.4-noecc.patch Patch6: gnutls-implement-trust-store-dir.diff +Patch7: make-obs-happy-with-gnutls_3.2.4.patch BuildRequires: automake BuildRequires: gcc-c++ @@ -140,6 +141,7 @@ %patch3 %patch5 -p1 %patch6 -p1 +%patch7 -p1 %build autoreconf -if @@ -194,11 +196,9 @@ %post -n libgnutls-devel %install_info --info-dir=%{_infodir} %{_infodir}/gnutls.info.gz -%install_info --info-dir=%{_infodir} %{_infodir}/pkcs11-vision.png.gz %postun -n libgnutls-devel %install_info_delete --info-dir=%{_infodir} %{_infodir}/gnutls.info.gz -%install_info_delete --info-dir=%{_infodir} %{_infodir}/pkcs11-vision.png.gz %files -f libgnutls.lang %defattr(-, root, root) ++++++ gnutls-3.2.3-noecc.patch -> gnutls-3.2.4-noecc.patch ++++++ ++++ 601 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/gnutls/gnutls-3.2.3-noecc.patch ++++ and /work/SRC/openSUSE:Factory/.gnutls.new/gnutls-3.2.4-noecc.patch ++++++ gnutls-3.2.3.tar.xz -> gnutls-3.2.4.tar.xz ++++++ ++++ 177388 lines of diff (skipped) ++++++ make-obs-happy-with-gnutls_3.2.4.patch ++++++ Index: gnutls-3.2.4/doc/examples/ex-client-xssl1.c =================================================================== --- gnutls-3.2.4.orig/doc/examples/ex-client-xssl1.c +++ gnutls-3.2.4/doc/examples/ex-client-xssl1.c @@ -80,6 +80,8 @@ int main (void) xssl_cred_deinit (cred); gnutls_global_deinit (); + + return 0; } Index: gnutls-3.2.4/doc/examples/ex-client-xssl2.c =================================================================== --- gnutls-3.2.4.orig/doc/examples/ex-client-xssl2.c +++ gnutls-3.2.4/doc/examples/ex-client-xssl2.c @@ -95,4 +95,6 @@ int main (void) xssl_cred_deinit (cred); gnutls_global_deinit (); + + return 0; } Index: gnutls-3.2.4/doc/examples/print-ciphersuites.c =================================================================== --- gnutls-3.2.4.orig/doc/examples/print-ciphersuites.c +++ gnutls-3.2.4/doc/examples/print-ciphersuites.c @@ -51,4 +51,5 @@ int main(int argc, char** argv) { if (argc > 1) print_cipher_suite_list (argv[1]); + return 0; } Index: gnutls-3.2.4/src/serv.c =================================================================== --- gnutls-3.2.4.orig/src/serv.c +++ gnutls-3.2.4/src/serv.c @@ -1216,6 +1216,8 @@ main (int argc, char **argv) udp_server (name, port, mtu); else tcp_server (name, port); + + return 0; } static void -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de