Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package gupnp-igd for openSUSE:Factory 
checked in at 2023-03-24 15:17:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gupnp-igd (Old)
 and      /work/SRC/openSUSE:Factory/.gupnp-igd.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gupnp-igd"

Fri Mar 24 15:17:49 2023 rev:34 rq:1073228 version:1.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/gupnp-igd/gupnp-igd.changes      2022-09-21 
14:39:41.817299771 +0200
+++ /work/SRC/openSUSE:Factory/.gupnp-igd.new.31432/gupnp-igd.changes   
2023-03-24 15:18:02.438143220 +0100
@@ -1,0 +2,6 @@
+Fri Mar  3 09:06:37 UTC 2023 - Bjørn Lie <bjorn....@gmail.com>
+
+- Add fa1546614190942ab266832e7470a6debf8c32cb.patch: test: Port to
+  g_inet_address_new_loopback.
+
+-------------------------------------------------------------------

New:
----
  fa1546614190942ab266832e7470a6debf8c32cb.patch

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

Other differences:
------------------
++++++ gupnp-igd.spec ++++++
--- /var/tmp/diff_new_pack.yOtg6f/_old  2023-03-24 15:18:02.922145743 +0100
+++ /var/tmp/diff_new_pack.yOtg6f/_new  2023-03-24 15:18:02.926145764 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gupnp-igd
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,6 +27,8 @@
 Source1:        baselibs.conf
 # PATCH-FIX-UPSTREAM 79a1e4cf8c256132978a1d8ab718c8ad132386de.patch -- Port to 
GUPnP 1.6 API
 Patch0:         79a1e4cf8c256132978a1d8ab718c8ad132386de.patch
+# PATCH-FIX-UPSTREAM fa1546614190942ab266832e7470a6debf8c32cb.patch -- test: 
Port to g_inet_address_new_loopback
+Patch1:         fa1546614190942ab266832e7470a6debf8c32cb.patch
 
 BuildRequires:  gtk-doc
 BuildRequires:  meson

++++++ fa1546614190942ab266832e7470a6debf8c32cb.patch ++++++
>From fa1546614190942ab266832e7470a6debf8c32cb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= <olivier.cr...@collabora.com>
Date: Sun, 6 Nov 2022 16:12:29 -0500
Subject: [PATCH] test: Port to g_inet_address_new_loopback

---
 tests/gtest/gupnp-simple-igd.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/gtest/gupnp-simple-igd.c b/tests/gtest/gupnp-simple-igd.c
index ec770ca..1f30b27 100644
--- a/tests/gtest/gupnp-simple-igd.c
+++ b/tests/gtest/gupnp-simple-igd.c
@@ -290,13 +290,16 @@ run_gupnp_simple_igd_test (GMainContext *mainctx, 
GUPnPSimpleIgd *igd,
   GUPnPDeviceInfo *subdev2;
   const gchar *xml_path = ".";
   GError *error = NULL;
+  GInetAddress *loopback = NULL;
 
   g_signal_connect (igd, "context-available",
         G_CALLBACK (ignore_non_localhost), NULL);
 
   if (mainctx)
     g_main_context_push_thread_default (mainctx);
-  context = gupnp_context_new ("lo", 0, NULL);
+  loopback = g_inet_address_new_loopback (G_SOCKET_FAMILY_IPV4);
+  context = gupnp_context_new_for_address (loopback, 0, GSSDP_UDA_VERSION_1_0, 
NULL);
+  g_object_unref (loopback);
   g_assert (context);
 
   if (g_getenv ("XML_PATH"))
-- 
GitLab

Reply via email to