Hello community, here is the log from the commit of package libsoup for openSUSE:Factory checked in at 2020-04-23 18:27:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libsoup (Old) and /work/SRC/openSUSE:Factory/.libsoup.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libsoup" Thu Apr 23 18:27:47 2020 rev:123 rq:795238 version:2.70.0 Changes: -------- --- /work/SRC/openSUSE:Factory/libsoup/libsoup.changes 2020-03-03 10:14:29.978434276 +0100 +++ /work/SRC/openSUSE:Factory/.libsoup.new.2738/libsoup.changes 2020-04-23 18:27:49.995788740 +0200 @@ -1,0 +2,34 @@ +Thu Apr 16 18:23:07 UTC 2020 - Bjørn Lie <[email protected]> + +- Add libsoup-disable-ssl-tests.patch: Disable ssl tests, as they + randomly fail for all arches (glgo#GNOME/libsoup#188). +- Rebase/refresh patches. + +------------------------------------------------------------------- +Tue Mar 24 13:09:03 UTC 2020 - Bjørn Lie <[email protected]> + +- Add libsoup-test-utils-fix.patch: test-utils: Clarify meaning of + an environment variable. + +------------------------------------------------------------------- +Sat Mar 7 17:51:57 UTC 2020 - [email protected] + +- Update to version 2.70.0: + + Deprecate SoupSession:proxy-uri. + + Updated translations. + +------------------------------------------------------------------- +Wed Feb 26 08:57:51 UTC 2020 - [email protected] + +- Update to version 2.69.90: + + Add new API to expose support for same-site cookies. + + Fix TRACE method not being considered safe and idempotent + internally. + + WebSockets: ensure a new connection is created for WebSocket + requests. + + WebSockets: do not start the input source when IO is closing. + + Deprecate soup_date_to_timeval(). + + build: Update glib requirement to 2.58. + + Updated translations. + +------------------------------------------------------------------- Old: ---- libsoup-2.68.4.tar.xz New: ---- libsoup-2.70.0.tar.xz libsoup-disable-ssl-tests.patch libsoup-test-utils-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libsoup.spec ++++++ --- /var/tmp/diff_new_pack.0oqro1/_old 2020-04-23 18:27:50.731790149 +0200 +++ /var/tmp/diff_new_pack.0oqro1/_new 2020-04-23 18:27:50.735790156 +0200 @@ -17,16 +17,21 @@ Name: libsoup -Version: 2.68.4 +Version: 2.70.0 Release: 0 Summary: HTTP client/server library for GNOME License: LGPL-2.1-or-later Group: Development/Libraries/GNOME URL: https://wiki.gnome.org/Projects/libsoup -Source0: https://download.gnome.org/sources/libsoup/2.68/%{name}-%{version}.tar.xz +Source0: https://download.gnome.org/sources/libsoup/2.70/%{name}-%{version}.tar.xz Source99: baselibs.conf + # PATCH-FIX-OPENSUSE libsoup-disable-hsts-tests.patch [email protected] -- disable hsts tests. Patch0: libsoup-disable-hsts-tests.patch +# PATCH-FIX-UPSTREAM libsoup-test-utils-fix.patch -- test-utils: Clarify meaning of an environment variable +Patch1: libsoup-test-utils-fix.patch +# PATCH-FIX-OPENSUSE libsoup-disable-ssl-tests.patch glgo#GNOME/libsoup#188 -- Disable ssl tests +Patch2: libsoup-disable-ssl-tests.patch BuildRequires: glib-networking BuildRequires: meson >= 0.50 ++++++ libsoup-2.68.4.tar.xz -> libsoup-2.70.0.tar.xz ++++++ ++++ 1889 lines of diff (skipped) ++++++ libsoup-disable-hsts-tests.patch ++++++ --- /var/tmp/diff_new_pack.0oqro1/_old 2020-04-23 18:27:51.207791060 +0200 +++ /var/tmp/diff_new_pack.0oqro1/_new 2020-04-23 18:27:51.211791068 +0200 @@ -1,7 +1,8 @@ -diff -urp libsoup-2.67.92.orig/tests/meson.build libsoup-2.67.92/tests/meson.build ---- libsoup-2.67.92.orig/tests/meson.build 2019-08-20 08:06:39.000000000 -0500 -+++ libsoup-2.67.92/tests/meson.build 2019-08-30 20:06:14.780598736 -0500 -@@ -24,8 +24,6 @@ tests = [ +Index: libsoup-2.70.0/tests/meson.build +=================================================================== +--- libsoup-2.70.0.orig/tests/meson.build ++++ libsoup-2.70.0/tests/meson.build +@@ -35,8 +35,6 @@ tests = [ ['date', true, []], ['forms', true, []], ['header-parsing', true, []], ++++++ libsoup-disable-ssl-tests.patch ++++++ Index: libsoup-2.70.0/tests/meson.build =================================================================== --- libsoup-2.70.0.orig/tests/meson.build +++ libsoup-2.70.0/tests/meson.build @@ -48,7 +48,6 @@ tests = [ ['server', true, []], ['sniffing', true, []], ['socket', true, []], - ['ssl', true, []], ['streaming', true, []], ['timeout', true, []], ['tld', true, []], ++++++ libsoup-test-utils-fix.patch ++++++ >From 3058a0ed3aaf0a54058a96f884b0a73b0cc578a8 Mon Sep 17 00:00:00 2001 From: Simon McVittie <[email protected]> Date: Wed, 11 Mar 2020 09:16:50 +0000 Subject: [PATCH] test-utils: Clarify meaning of an environment variable SOUP_TESTS_IN_MAKE_CHECK used to be used for the Autotools build system. I mistakenly thought it was a way to skip the Apache-dependent tests during `make check`, but in fact the Autotools build system used to start a single instance of Apache, then run all the tests against that single instance, and finally shut it down. This mechanism is currently unused, but resurrecting it might be one way to avoid GNOME/libsoup#175. --- tests/test-utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Index: libsoup-2.70.0/tests/test-utils.c =================================================================== --- libsoup-2.70.0.orig/tests/test-utils.c +++ libsoup-2.70.0/tests/test-utils.c @@ -189,7 +189,9 @@ apache_cmd (const char *cmd) void apache_init (void) { - if (g_getenv ("SOUP_TESTS_IN_MAKE_CHECK")) + /* Set this environment variable if you are already running a + * suitably-configured Apache server */ + if (g_getenv ("SOUP_TESTS_ALREADY_RUNNING_APACHE")) return; if (!apache_cmd ("start")) {
