Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package dleyna-server for openSUSE:Factory 
checked in at 2022-01-09 22:49:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dleyna-server (Old)
 and      /work/SRC/openSUSE:Factory/.dleyna-server.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dleyna-server"

Sun Jan  9 22:49:50 2022 rev:10 rq:945019 version:0.7.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/dleyna-server/dleyna-server.changes      
2021-09-29 20:18:48.174957063 +0200
+++ /work/SRC/openSUSE:Factory/.dleyna-server.new.1892/dleyna-server.changes    
2022-01-09 22:49:52.995268476 +0100
@@ -1,0 +2,7 @@
+Sat Jan  8 12:24:53 UTC 2022 - Bj??rn Lie <[email protected]>
+
+- Update to version 0.7.2:
+  + Replace another SoupSessionAsync.
+  + Fix unnecessary error logging on empty server responses.
+
+-------------------------------------------------------------------

Old:
----
  dleyna-server-0.7.1.tar.gz

New:
----
  dleyna-server-0.7.2.tar.gz

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

Other differences:
------------------
++++++ dleyna-server.spec ++++++
--- /var/tmp/diff_new_pack.vpwaia/_old  2022-01-09 22:49:53.435268868 +0100
+++ /var/tmp/diff_new_pack.vpwaia/_new  2022-01-09 22:49:53.439268872 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package dleyna-server
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 # Copyright (c) 2014 Dominique Leuenberger, Amsterdam, The Netherlands
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:           dleyna-server
-Version:        0.7.1
+Version:        0.7.2
 Release:        0
 Summary:        A DLNA media server
 License:        LGPL-2.1-only
@@ -33,7 +33,7 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.36
 BuildRequires:  pkgconfig(gssdp-1.2) >= 0.13.2
 BuildRequires:  pkgconfig(gupnp-1.2) >= 0.20.3
-BuildRequires:  pkgconfig(gupnp-av-1.0) >= 0.11.5
+BuildRequires:  pkgconfig(gupnp-av-1.0) >= 0.12.9
 BuildRequires:  pkgconfig(gupnp-dlna-2.0) >= 0.9.4
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.28.2
 BuildRequires:  pkgconfig(libxml-2.0)

++++++ dleyna-server-0.7.1.tar.gz -> dleyna-server-0.7.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dleyna-server-0.7.1/ChangeLog 
new/dleyna-server-0.7.2/ChangeLog
--- old/dleyna-server-0.7.1/ChangeLog   2021-09-18 20:07:01.000000000 +0200
+++ new/dleyna-server-0.7.2/ChangeLog   2021-10-26 17:17:55.000000000 +0200
@@ -1,3 +1,7 @@
+version 0.7.2
+       - Replace another SoupSessionAsync
+       - Fix unnecessary error logging on empty server responses
+
 version 0.7.1
        - Build fixes
        - Fix service file generation for non-default service name
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dleyna-server-0.7.1/libdleyna/server/device.c 
new/dleyna-server-0.7.2/libdleyna/server/device.c
--- old/dleyna-server-0.7.1/libdleyna/server/device.c   2021-09-18 
20:07:01.000000000 +0200
+++ new/dleyna-server-0.7.2/libdleyna/server/device.c   2021-10-26 
17:17:55.000000000 +0200
@@ -1925,7 +1925,7 @@
                prv_object_builder_delete);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error) &&
-           error->code != GUPNP_XML_ERROR_EMPTY_NODE) {
+           error->code != G_MARKUP_ERROR_EMPTY) {
                DLEYNA_LOG_WARNING("Unable to parse results of browse: %s",
                                   error->message);
 
@@ -2814,7 +2814,7 @@
                         cb_data);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error)) {
-               if (error->code == GUPNP_XML_ERROR_EMPTY_NODE) {
+               if (error->code == G_MARKUP_ERROR_EMPTY) {
                        DLEYNA_LOG_WARNING("Property not defined for object");
 
                        cb_data->error =
@@ -3216,7 +3216,7 @@
                         cb_data);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error)) {
-               if (error->code == GUPNP_XML_ERROR_EMPTY_NODE) {
+        if (error->code == G_MARKUP_ERROR_EMPTY) {
                        DLEYNA_LOG_WARNING("Property not defined for object");
 
                        cb_data->error =
@@ -3597,7 +3597,7 @@
        DLEYNA_LOG_DEBUG("Server Search result: %s", result);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error) &&
-           error->code != GUPNP_XML_ERROR_EMPTY_NODE) {
+           !g_error_matches(error, G_MARKUP_ERROR, G_MARKUP_ERROR_EMPTY)) {
                DLEYNA_LOG_WARNING("Unable to parse results of search: %s",
                                   error->message);
 
@@ -3899,7 +3899,7 @@
                         cb_data);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error)) {
-               if (error->code == GUPNP_XML_ERROR_EMPTY_NODE) {
+               if (error->code == G_MARKUP_ERROR_EMPTY) {
                        DLEYNA_LOG_WARNING("Property not defined for object");
 
                        cb_data->error = g_error_new(
@@ -4738,7 +4738,7 @@
                         G_CALLBACK(prv_extract_import_uri), &import_uri);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error) &&
-           error->code != GUPNP_XML_ERROR_EMPTY_NODE) {
+           error->code != G_MARKUP_ERROR_EMPTY) {
                DLEYNA_LOG_WARNING(
                                "Unable to parse results of CreateObject: %s",
                                error->message);
@@ -5345,7 +5345,7 @@
                         cb_data);
 
        if (!gupnp_didl_lite_parser_parse_didl(parser, result, &error)) {
-               if (error->code == GUPNP_XML_ERROR_EMPTY_NODE) {
+               if (error->code == G_MARKUP_ERROR_EMPTY) {
                        DLEYNA_LOG_WARNING("Property not defined for object");
 
                        cb_data->error =
@@ -5711,7 +5711,7 @@
        }
 
        download = g_new0(dls_device_download_t, 1);
-       download->session = soup_session_async_new();
+       download->session = soup_session_new();
        download->msg = soup_message_new(SOUP_METHOD_GET, url);
        download->task = cb_data;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dleyna-server-0.7.1/meson.build 
new/dleyna-server-0.7.2/meson.build
--- old/dleyna-server-0.7.1/meson.build 2021-09-18 20:07:01.000000000 +0200
+++ new/dleyna-server-0.7.2/meson.build 2021-10-26 17:17:55.000000000 +0200
@@ -1,4 +1,4 @@
-project('dleyna-server', 'c', version: '0.7.1')
+project('dleyna-server', 'c', version: '0.7.2')
 
 pkg = import('pkgconfig')
 
@@ -69,7 +69,7 @@
 gio = dependency('gio-2.0', version: '>=2.28')
 gssdp = dependency('gssdp-1.2', version: '>= 1.2.0')
 gupnp = dependency('gupnp-1.2', version: '>= 1.2.0')
-gupnp_av = dependency('gupnp-av-1.0', version: '>= 0.11.5')
+gupnp_av = dependency('gupnp-av-1.0', version: '>= 0.12.9')
 gupnp_dlna = dependency('gupnp-dlna-2.0', version: '>= 0.9.4')
 soup = dependency('libsoup-2.4', version: '>= 2.28.2')
 dleyna_core = dependency('dleyna-core-1.0', version: '>= 0.6.0', fallback: 
'dleyna-core-1.0')

Reply via email to