Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gupnp for openSUSE:Factory checked 
in at 2023-12-15 21:46:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gupnp (Old)
 and      /work/SRC/openSUSE:Factory/.gupnp.new.25432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gupnp"

Fri Dec 15 21:46:59 2023 rev:82 rq:1133103 version:1.6.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/gupnp/gupnp.changes      2023-11-07 
21:25:30.713643118 +0100
+++ /work/SRC/openSUSE:Factory/.gupnp.new.25432/gupnp.changes   2023-12-15 
21:47:06.949791709 +0100
@@ -1,0 +2,5 @@
+Thu Dec 14 12:47:50 UTC 2023 - Dominique Leuenberger <dims...@opensuse.org>
+
+- Add 00514fb6.patch: Fix compatibility with libxml2 2.12.x.
+
+-------------------------------------------------------------------

New:
----
  00514fb6.patch

BETA DEBUG BEGIN:
  New:
- Add 00514fb6.patch: Fix compatibility with libxml2 2.12.x.
BETA DEBUG END:

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

Other differences:
------------------
++++++ gupnp.spec ++++++
--- /var/tmp/diff_new_pack.lGqgYN/_old  2023-12-15 21:47:07.537813203 +0100
+++ /var/tmp/diff_new_pack.lGqgYN/_new  2023-12-15 21:47:07.537813203 +0100
@@ -29,6 +29,8 @@
 URL:            http://www.gupnp.org/
 Source0:        
https://download.gnome.org/sources/gupnp/1.6/%{name}-%{version}.tar.xz
 Source1:        baselibs.conf
+# PATCH-FIX-UPSTREAM 00514fb6.patch -- Fix compatibility with libxml2 2.12.x
+Patch0:         https://gitlab.gnome.org/GNOME/gupnp/-/commit/00514fb6.patch
 
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  meson >= 0.54.0
@@ -61,7 +63,7 @@
 Obsoletes:      libgupnp-1_2-0
 
 %description -n libgupnp-%{soname}
-GUPnP implements the UPnP specification: resource announcement and
+       GUPnP implements the UPnP specification: resource announcement and
 discovery, description, control, event notification, and presentation
 (GUPnP includes basic web server functionality through libsoup). GUPnP
 does not include helpers for construction or control of specific

++++++ 00514fb6.patch ++++++
>From 00514fb62ebd341803fa44e26a6482a8c25dbd34 Mon Sep 17 00:00:00 2001
From: Jens Georg <m...@jensge.org>
Date: Sat, 25 Nov 2023 17:56:02 +0100
Subject: [PATCH] all: Fix compatibility with libxml2 2.12.x

---
 libgupnp/gupnp-control-point.c        | 2 ++
 libgupnp/gupnp-service-proxy-action.c | 2 ++
 libgupnp/gupnp-service-proxy.c        | 2 ++
 libgupnp/gupnp-xml-doc.c              | 3 +++
 libgupnp/xml-util.h                   | 2 ++
 5 files changed, 11 insertions(+)

diff --git a/libgupnp/gupnp-control-point.c b/libgupnp/gupnp-control-point.c
index d4b44721..4374f726 100644
--- a/libgupnp/gupnp-control-point.c
+++ b/libgupnp/gupnp-control-point.c
@@ -27,6 +27,8 @@
 #include <config.h>
 #include <string.h>
 
+#include <libxml/parser.h>
+
 #include "gupnp-control-point.h"
 #include "gupnp-context-private.h"
 #include "gupnp-resource-factory-private.h"
diff --git a/libgupnp/gupnp-service-proxy-action.c 
b/libgupnp/gupnp-service-proxy-action.c
index b241d86c..6ea241ad 100644
--- a/libgupnp/gupnp-service-proxy-action.c
+++ b/libgupnp/gupnp-service-proxy-action.c
@@ -9,6 +9,8 @@
 
 #include <config.h>
 
+#include <libxml/parser.h>
+
 #include "gupnp-error.h"
 #include "gupnp-service-proxy.h"
 #include "gvalue-util.h"
diff --git a/libgupnp/gupnp-service-proxy.c b/libgupnp/gupnp-service-proxy.c
index adba5ab0..3f1a4454 100644
--- a/libgupnp/gupnp-service-proxy.c
+++ b/libgupnp/gupnp-service-proxy.c
@@ -16,6 +16,8 @@
 #include <locale.h>
 #include <errno.h>
 
+#include <libxml/globals.h>
+
 #include "gena-protocol.h"
 #include "gupnp-context-private.h"
 #include "gupnp-error-private.h"
diff --git a/libgupnp/gupnp-xml-doc.c b/libgupnp/gupnp-xml-doc.c
index 627f1a28..66f9b3dd 100644
--- a/libgupnp/gupnp-xml-doc.c
+++ b/libgupnp/gupnp-xml-doc.c
@@ -15,6 +15,9 @@
 #include <config.h>
 #include <string.h>
 #include <gio/gio.h>
+
+#include <libxml/parser.h>
+
 #include "gupnp-xml-doc.h"
 #include "gupnp-error.h"
 
diff --git a/libgupnp/xml-util.h b/libgupnp/xml-util.h
index a02eb3d4..d0dcaeba 100644
--- a/libgupnp/xml-util.h
+++ b/libgupnp/xml-util.h
@@ -10,6 +10,8 @@
 #define GUPNP_XML_UTIL_H
 
 #include <libxml/tree.h>
+#include <libxml/parser.h>
+
 #include <stdarg.h>
 #include <glib-object.h>
 
-- 
GitLab

Reply via email to