Hello community,

here is the log from the commit of package gnutls for openSUSE:Factory checked 
in at 2020-07-21 15:44:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnutls (Old)
 and      /work/SRC/openSUSE:Factory/.gnutls.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnutls"

Tue Jul 21 15:44:54 2020 rev:125 rq:821496 version:3.6.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnutls/gnutls.changes    2020-06-11 
10:01:52.746615823 +0200
+++ /work/SRC/openSUSE:Factory/.gnutls.new.3592/gnutls.changes  2020-07-21 
15:47:00.468044751 +0200
@@ -1,0 +2,6 @@
+Tue Jun  9 09:15:45 UTC 2020 - Vítězslav Čížek <vci...@suse.com>
+
+- Correctly detect gmp, nettle, and hogweed libraries (bsc#1172666)
+  * add gnutls-detect_nettle_so.patch
+
+-------------------------------------------------------------------
@@ -8 +14 @@
-  * add gnutls-temporarily_disable_broken_guile_reauth_test
+  * add gnutls-temporarily_disable_broken_guile_reauth_test.patch

Old:
----
  gnutls-temporarily_disable_broken_guile_reauth_test

New:
----
  gnutls-detect_nettle_so.patch
  gnutls-temporarily_disable_broken_guile_reauth_test.patch

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

Other differences:
------------------
++++++ gnutls.spec ++++++
--- /var/tmp/diff_new_pack.8YUgiw/_old  2020-07-21 15:47:02.064046724 +0200
+++ /var/tmp/diff_new_pack.8YUgiw/_new  2020-07-21 15:47:02.068046729 +0200
@@ -41,7 +41,8 @@
 Patch1:         gnutls-3.5.11-skip-trust-store-tests.patch
 Patch4:         gnutls-3.6.6-set_guile_site_dir.patch
 Patch5:         0001-crypto-api-always-allocate-memory-when-serializing-i.patch
-Patch6:         gnutls-temporarily_disable_broken_guile_reauth_test
+Patch6:         gnutls-temporarily_disable_broken_guile_reauth_test.patch
+Patch7:         gnutls-detect_nettle_so.patch
 BuildRequires:  autogen
 BuildRequires:  automake
 BuildRequires:  datefudge


++++++ gnutls-detect_nettle_so.patch ++++++
Index: gnutls-3.6.14/configure
===================================================================
--- gnutls-3.6.14.orig/configure        2020-06-09 11:01:15.306654318 +0200
+++ gnutls-3.6.14/configure     2020-06-09 12:40:08.262985909 +0200
@@ -66054,12 +66054,12 @@ LIBS="$LIBS $GMP_LIBS"
 $as_echo_n "checking gmp soname... " >&6; }
 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
-
+#include <gmp.h>
 int
 main ()
 {
-
-  ;
+  mpz_t n;
+  mpz_init(n);
   return 0;
 }
 _ACEOF
@@ -66088,12 +66088,12 @@ LIBS="$LIBS $NETTLE_LIBS"
 $as_echo_n "checking nettle soname... " >&6; }
 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
-
+#include <nettle/sha2.h>
 int
 main ()
 {
-
-  ;
+  struct sha256_ctx ctx;
+  sha256_init (&ctx);
   return 0;
 }
 _ACEOF
@@ -66122,12 +66122,12 @@ LIBS="$LIBS $HOGWEED_LIBS"
 $as_echo_n "checking hogweed soname... " >&6; }
 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
-
+#include <nettle/rsa.h>
 int
 main ()
 {
-
-  ;
+  struct rsa_private_key priv;
+  nettle_rsa_private_key_init(&priv);
   return 0;
 }
 _ACEOF
++++++ gnutls-temporarily_disable_broken_guile_reauth_test.patch ++++++
Index: gnutls-3.6.14/guile/Makefile.in
===================================================================
--- gnutls-3.6.14.orig/guile/Makefile.in        2020-06-03 15:05:54.000000000 
+0200
+++ gnutls-3.6.14/guile/Makefile.in     2020-06-09 09:03:17.267773380 +0200
@@ -1850,7 +1850,7 @@ CLEANFILES = modules/gnutls.scm $(am__ap
 TESTS = tests/anonymous-auth.scm tests/session-record-port.scm \
        tests/pkcs-import-export.scm tests/errors.scm \
        tests/x509-certificates.scm tests/x509-auth.scm \
-       tests/reauth.scm tests/priorities.scm $(am__append_2)
+       tests/priorities.scm $(am__append_2)
 TESTS_ENVIRONMENT = \
   GUILE_AUTO_COMPILE=0                         \
   GUILE_WARN_DEPRECATED=detailed


Reply via email to