[1/1] package/gupnp-av: bump to version 0.14.4

Message ID 20251012152040.2484426-1-dario.binacchi@amarulasolutions.com
State New
Headers show
Series
  • [1/1] package/gupnp-av: bump to version 0.14.4
Related show

Commit Message

Dario Binacchi Oct. 12, 2025, 3:20 p.m. UTC
The removed patch has been merged in version 0.14.2.

Release notes:
https://gitlab.gnome.org/GNOME/gupnp-av/-/blob/gupnp-av-0.14.2/NEWS
https://gitlab.gnome.org/GNOME/gupnp-av/-/blob/gupnp-av-0.14.3/NEWS
https://gitlab.gnome.org/GNOME/gupnp-av/-/blob/gupnp-av-0.14.4/NEWS

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
 .../gupnp-av/0001-libxml2.11-support.patch    | 41 -------------------
 ...ix-compatibility-with-libxml2-2-12-x.patch | 26 ------------
 package/gupnp-av/gupnp-av.hash                |  4 +-
 package/gupnp-av/gupnp-av.mk                  |  2 +-
 4 files changed, 3 insertions(+), 70 deletions(-)
 delete mode 100644 package/gupnp-av/0001-libxml2.11-support.patch
 delete mode 100644 package/gupnp-av/0002-xml-Fix-compatibility-with-libxml2-2-12-x.patch

Comments

'Julien Olivain' via Amarula Linux Oct. 12, 2025, 4:37 p.m. UTC | #1
On 12/10/2025 17:20, Dario Binacchi wrote:
> The removed patch has been merged in version 0.14.2.
> 
> Release notes:
> https://gitlab.gnome.org/GNOME/gupnp-av/-/blob/gupnp-av-0.14.2/NEWS
> https://gitlab.gnome.org/GNOME/gupnp-av/-/blob/gupnp-av-0.14.3/NEWS
> https://gitlab.gnome.org/GNOME/gupnp-av/-/blob/gupnp-av-0.14.4/NEWS
> 
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>

Applied to master, thanks.

To unsubscribe from this group and stop receiving emails from it, send an email to linux-amarula+unsubscribe@amarulasolutions.com.

Patch

diff --git a/package/gupnp-av/0001-libxml2.11-support.patch b/package/gupnp-av/0001-libxml2.11-support.patch
deleted file mode 100644
index 739a8d774bda..000000000000
--- a/package/gupnp-av/0001-libxml2.11-support.patch
+++ /dev/null
@@ -1,41 +0,0 @@ 
-From 4dbc4c1da2a033c497d84a1291c46f416a9cac51 Mon Sep 17 00:00:00 2001
-From: David Anes <david.anes@suse.com>
-Date: Thu, 4 May 2023 11:54:02 +0200
-Subject: use xmlReadMemory instead of xmlRecoverMemory, as it's been
- deprecated in libxml2 2.11.0
-
-Since version 2.11.0, some private symbols have been removed.
-
-Downloaded from
-https://code.opensuse.org/package/gupnp-av/blob/master/f/gupnp-av-libxml2.11-support.patch
-
-Upstream: https://gitlab.gnome.org/GNOME/gupnp-av/-/issues/10
-
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
----
-Index: gupnp-av-0.14.1/libgupnp-av/gupnp-didl-lite-parser.c
-===================================================================
---- gupnp-av-0.14.1.orig/libgupnp-av/gupnp-didl-lite-parser.c
-+++ gupnp-av-0.14.1/libgupnp-av/gupnp-didl-lite-parser.c
-@@ -230,7 +230,7 @@ gupnp_didl_lite_parser_parse_didl_recurs
-         GUPnPAVXMLDoc *xml_doc = NULL;
-         gboolean       result;
- 
--        doc = xmlRecoverMemory (didl, strlen (didl));
-+        doc = xmlReadMemory (didl, strlen (didl), NULL, NULL, XML_PARSE_RECOVER);
-         if (doc == NULL) {
-                 g_set_error (error,
-                              G_MARKUP_ERROR,
-Index: gupnp-av-0.14.1/libgupnp-av/gupnp-feature-list-parser.c
-===================================================================
---- gupnp-av-0.14.1.orig/libgupnp-av/gupnp-feature-list-parser.c
-+++ gupnp-av-0.14.1/libgupnp-av/gupnp-feature-list-parser.c
-@@ -114,7 +114,7 @@ gupnp_feature_list_parser_parse_text
-         xmlNode      *element;
-         GList        *feature_list = NULL;
- 
--        doc = xmlRecoverMemory (text, strlen (text));
-+        doc = xmlReadMemory (text, strlen (text), NULL, NULL, XML_PARSE_RECOVER);
-         if (doc == NULL) {
-                 g_set_error (error,
-                              G_MARKUP_ERROR,
diff --git a/package/gupnp-av/0002-xml-Fix-compatibility-with-libxml2-2-12-x.patch b/package/gupnp-av/0002-xml-Fix-compatibility-with-libxml2-2-12-x.patch
deleted file mode 100644
index 358098fbc480..000000000000
--- a/package/gupnp-av/0002-xml-Fix-compatibility-with-libxml2-2-12-x.patch
+++ /dev/null
@@ -1,26 +0,0 @@ 
-From 1e10a41fcef6ae0d3e89958db89bc22398f3b4f1 Mon Sep 17 00:00:00 2001
-From: Jens Georg <mail@jensge.org>
-Date: Sat, 25 Nov 2023 17:58:49 +0100
-Subject: [PATCH] xml: Fix compatibility with libxml2 2.12.x
-
-Upstream: https://gitlab.gnome.org/GNOME/gupnp-av/-/commit/1e10a41fcef6ae0d3e89958db89bc22398f3b4f1
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- libgupnp-av/xml-util.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/libgupnp-av/xml-util.h b/libgupnp-av/xml-util.h
-index e0e49f7..0bbe0f8 100644
---- a/libgupnp-av/xml-util.h
-+++ b/libgupnp-av/xml-util.h
-@@ -16,6 +16,7 @@
- 
- #include <glib.h>
- #include <libxml/tree.h>
-+#include <libxml/parser.h>
- #include <stdarg.h>
- #include <glib-object.h>
- 
--- 
-GitLab
-
diff --git a/package/gupnp-av/gupnp-av.hash b/package/gupnp-av/gupnp-av.hash
index c8ed0db2a485..27f974165ae2 100644
--- a/package/gupnp-av/gupnp-av.hash
+++ b/package/gupnp-av/gupnp-av.hash
@@ -1,5 +1,5 @@ 
-# Hash from: https://download.gnome.org/sources/gupnp-av/0.14/gupnp-av-0.14.1.sha256sum:
-sha256  b79ce0cc4b0c66d9c54bc22183a10e5709a0011d2af272025948efcab33a3e4f  gupnp-av-0.14.1.tar.xz
+# Hash from: https://download.gnome.org/sources/gupnp-av/0.14/gupnp-av-0.14.4.sha256sum:
+sha256  21d974b3275cb5dcf5b8aa1d9a3fc80e7edca706935f6fbd004c79787138f8c7  gupnp-av-0.14.4.tar.xz
 
 # Hash for license file:
 sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING
diff --git a/package/gupnp-av/gupnp-av.mk b/package/gupnp-av/gupnp-av.mk
index 3821c4e170c3..fdc4d7034321 100644
--- a/package/gupnp-av/gupnp-av.mk
+++ b/package/gupnp-av/gupnp-av.mk
@@ -5,7 +5,7 @@ 
 ################################################################################
 
 GUPNP_AV_VERSION_MAJOR = 0.14
-GUPNP_AV_VERSION = $(GUPNP_AV_VERSION_MAJOR).1
+GUPNP_AV_VERSION = $(GUPNP_AV_VERSION_MAJOR).4
 GUPNP_AV_SOURCE = gupnp-av-$(GUPNP_AV_VERSION).tar.xz
 GUPNP_AV_SITE = https://download.gnome.org/sources/gupnp-av/$(GUPNP_AV_VERSION_MAJOR)
 GUPNP_AV_LICENSE = LGPL-2.1+