commit gssdp for openSUSE:Factory

2020-06-29 Thread root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2020-06-29 21:14:55

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new.3060 (New)


Package is "gssdp"

Mon Jun 29 21:14:55 2020 rev:52 rq:817300 version:1.2.3

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2020-01-08 
19:32:13.876594975 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new.3060/gssdp.changes2020-06-29 
21:15:05.201175310 +0200
@@ -1,0 +2,9 @@
+Tue Jun 23 07:52:56 UTC 2020 - Paolo Stivanin 
+
+- Update to version 1.2.3:
+  + Prevent crash if client is not initialized
+  + Fix critical if network device does not exists
+  + Fix ::1 multicast
+  + client. Add getter for network mask
+
+---

Old:

  gssdp-1.2.2.tar.xz

New:

  gssdp-1.2.3.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.gOiDg3/_old  2020-06-29 21:15:07.301181808 +0200
+++ /var/tmp/diff_new_pack.gOiDg3/_new  2020-06-29 21:15:07.305181820 +0200
@@ -21,7 +21,7 @@
 %define sover 1.2
 
 Name:   gssdp
-Version:1.2.2
+Version:1.2.3
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0-or-later

++ gssdp-1.2.2.tar.xz -> gssdp-1.2.3.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.2.2/NEWS new/gssdp-1.2.3/NEWS
--- old/gssdp-1.2.2/NEWS2020-01-02 12:44:00.0 +0100
+++ new/gssdp-1.2.3/NEWS2020-06-22 23:50:39.681717900 +0200
@@ -1,3 +1,17 @@
+1.2.3
+=
+ - Prevent crash if client is not initialized
+ - Fix critical if network device does not exists
+ - Fix ::1 multicast
+ - client. Add getter for network mask
+
+Bugs fixed in this release:
+ - https://gitlab.gnome.org/GNOME/gssdp/issues/5
+ - https://gitlab.gnome.org/GNOME/gssdp/issues/6
+
+All contributors to this release:
+ - Jens Georg 
+
 1.2.2
 =
  - Fix macOS dylib versioning
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.2.2/libgssdp/gssdp-client.c 
new/gssdp-1.2.3/libgssdp/gssdp-client.c
--- old/gssdp-1.2.2/libgssdp/gssdp-client.c 2020-01-02 12:44:00.0 
+0100
+++ new/gssdp-1.2.3/libgssdp/gssdp-client.c 2020-06-22 23:50:39.681717900 
+0200
@@ -562,7 +562,7 @@
   "The IP netmask of the associated"
   "network interface",
   G_TYPE_INET_ADDRESS_MASK,
-  G_PARAM_WRITABLE |
+  G_PARAM_READWRITE |
   G_PARAM_CONSTRUCT |
   G_PARAM_STATIC_STRINGS));
 
@@ -1156,6 +1156,24 @@
 }
 
 /**
+ * gssdp_client_get_address_mask:
+ * @client: A #GSSDPClient
+ *
+ * Since: 1.2.3
+ *
+ * Returns: (transfer full): Address mask of this client
+ */
+GInetAddressMask *
+gssdp_client_get_address_mask (GSSDPClient *client)
+{
+g_return_val_if_fail (GSSDP_IS_CLIENT (client), NULL);
+
+GSSDPClientPrivate *priv = gssdp_client_get_instance_private (client);
+
+return g_object_ref (priv->device.host_mask);
+}
+
+/**
  * gssdp_client_get_uda_version:
  * @client: A #GSSDPClient
  *
@@ -1258,6 +1276,8 @@
 
 priv = gssdp_client_get_instance_private (client);
 
+g_return_if_fail (priv->initialized);
+
 if (!priv->active)
 /* We don't send messages in passive mode */
 return;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.2.2/libgssdp/gssdp-client.h 
new/gssdp-1.2.3/libgssdp/gssdp-client.h
--- old/gssdp-1.2.2/libgssdp/gssdp-client.h 2020-01-02 12:44:00.0 
+0100
+++ new/gssdp-1.2.3/libgssdp/gssdp-client.h 2020-06-22 23:50:39.685717800 
+0200
@@ -98,6 +98,9 @@
 GSocketFamily
 gssdp_client_get_family   (GSSDPClient *client);
 
+GInetAddressMask *
+gssdp_client_get_address_mask (GSSDPClient *client);
+
 void
 gssdp_client_append_header(GSSDPClient *client,
const char  *name,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.2.2/libgssdp/gssdp-net-posix.c 
new/gssdp-1.2.3/libgssdp/gssdp-net-posix.c
--- old/gssdp-1.2.2/libgssdp/gssdp-net-posix.c  2020-01-02 12:44:00.0 
+0100
+++ new/gssdp-1.2.3/libgssdp/gssdp-net-posix.c  2020-06-22 23:50:39.685717800 
+0200
@@ -544,7 +544,9 @@
 break;
 }
 
-device->address_family = 

commit gssdp for openSUSE:Factory

2020-01-08 Thread root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2020-01-08 19:32:07

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new.6675 (New)


Package is "gssdp"

Wed Jan  8 19:32:07 2020 rev:51 rq:761005 version:1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2019-06-24 
21:47:49.627848624 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new.6675/gssdp.changes2020-01-08 
19:32:13.876594975 +0100
@@ -1,0 +2,8 @@
+Thu Jan  2 13:01:55 UTC 2020 - Bjørn Lie 
+
+- Update to version 1.2.2:
+  + Fix macOS dylib versioning.
+  + Update the required glib version to 2.54.
+  + Fix setting the multicast sending interface.
+
+---

Old:

  gssdp-1.2.1.tar.xz

New:

  gssdp-1.2.2.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.Uy0VEd/_old  2020-01-08 19:32:14.296594839 +0100
+++ /var/tmp/diff_new_pack.Uy0VEd/_new  2020-01-08 19:32:14.296594839 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 %define sover 1.2
 
 Name:   gssdp
-Version:1.2.1
+Version:1.2.2
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0-or-later
@@ -33,7 +33,7 @@
 BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
-BuildRequires:  pkgconfig(glib-2.0) >= 2.44
+BuildRequires:  pkgconfig(glib-2.0) >= 2.54
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.26.1

++ gssdp-1.2.1.tar.xz -> gssdp-1.2.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.2.1/NEWS new/gssdp-1.2.2/NEWS
--- old/gssdp-1.2.1/NEWS2019-05-01 22:59:29.0 +0200
+++ new/gssdp-1.2.2/NEWS2020-01-02 12:44:00.0 +0100
@@ -1,3 +1,17 @@
+1.2.2
+=
+ - Fix macOS dylib versioning
+ - Update the required glib version to 2.54
+ - Fix setting the multicast sending interface
+
+Bugs fixed in this release:
+ - https://gitlab.gnome.org/GNOME/gssdp/issues/4
+
+All contributors to this release:
+ - Jens Georg 
+ - Niveditha Rau 
+ - Tom Schoonjans 
+
 1.2.1
 =
  - Fix portability issues with gssdp_net_get_device_list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.2.1/libgssdp/gssdp-socket-source.c 
new/gssdp-1.2.2/libgssdp/gssdp-socket-source.c
--- old/gssdp-1.2.1/libgssdp/gssdp-socket-source.c  2019-05-01 
22:59:29.0 +0200
+++ new/gssdp-1.2.2/libgssdp/gssdp-socket-source.c  2020-01-02 
12:44:00.0 +0100
@@ -257,17 +257,6 @@
 /* Enable multicast loopback */
 g_socket_set_multicast_loopback (priv->socket, TRUE);
 
-if (!gssdp_socket_mcast_interface_set (priv->socket,
-   priv->address,
-   (guint32) priv->index,
-   _error)) {
-g_propagate_prefixed_error (
-error,
-inner_error,
-"Failed to set multicast interface");
-
-goto error;
-}
 
 #ifdef G_OS_WIN32
 bind_address = g_inet_socket_address_new (priv->address,
@@ -282,6 +271,18 @@
 } else {
 guint port = SSDP_PORT;
 
+if (!gssdp_socket_mcast_interface_set (priv->socket,
+   priv->address,
+   (guint32) priv->index,
+   _error)) {
+g_propagate_prefixed_error (
+error,
+inner_error,
+"Failed to set multicast interface");
+
+goto error;
+}
+
 /* Use user-supplied or random port for the socket source used
  * by M-SEARCH */
 if (priv->type == GSSDP_SOCKET_SOURCE_TYPE_SEARCH)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit gssdp for openSUSE:Factory

2019-06-24 Thread root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2019-06-24 21:47:48

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new.4615 (New)


Package is "gssdp"

Mon Jun 24 21:47:48 2019 rev:50 rq:709079 version:1.2.1

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2019-02-13 
10:16:33.753376433 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new.4615/gssdp.changes2019-06-24 
21:47:49.627848624 +0200
@@ -1,0 +2,77 @@
+Wed May  1 21:29:50 UTC 2019 - Bjørn Lie 
+
+- Update to version 1.2.1:
+  + Fix portability issues with gssdp_net_get_device_list.
+  + Fix a local vs. global include in public header.
+
+---
+Tue Mar 12 06:54:30 UTC 2019 - Bjørn Lie 
+
+- Update to version 1.2.0:
+  + Stable release version bump.
+
+---
+Wed Feb 13 19:29:05 UTC 2019 - bjorn@gmail.com
+
+- Update to version 1.1.3:
+  + Fix a memory leak in sniffer.
+  + Minor other improvements to sniffer.
+  + Fix address fall-back to IP v4 for GSSDP client.
+  + Bump minimum GLib version to 2.44.
+  + Fix a crash due to a dangling pointer in GSSDP client.
+  + Fix a memory leak in pktinfo handler.
+  + Use g_type_ensure instead of custom solution.
+  + Implement UDA 1.1 boot-id and config-id.
+  + Implement UDA 1.1 ssdp:update messages.
+  + Documentation updates.
+  + Style fixes.
+- Disable tests for now, as it currently fails, but this is the
+  unstable branch so it's ok for the time beeing.
+
+---
+Sat Jan 26 01:01:02 UTC 2019 - bjorn@gmail.com
+
+- Update to version 1.1.2:
+  + Use a proper type for the message-received signal's parameter.
+  + Fix OS name in version string.
+  + Fix version string to include UPnP version.
+  + Fall-back to UDA 1.0 if UDA version is unspecified.
+
+---
+Sat Jan 26 01:01:01 UTC 2019 - bjorn@gmail.com
+
+- Update to version 1.1.1:
+  + Fix a crash with sniffer.
+  + Fix pktinfo handling on OS X.
+  + Fix mssing network mask in GSSDPClient.
+  + Several build test simplifications.
+  + Add property for address family in GSSDPClient.
+  + Remove address family hack in sniffer.
+  + Add property for UDA version in GSSDPClient.
+- Changes from version 1.1.0.1:
+  + Re-release of 1.1.0 because of meson tarball naming.
+- Changes from version 1.1.0:
+  + Bump API and ABI versions.
+  + Port to new GLib type macros.
+  + Remove the custom marshaller.
+  + Make error enum a type.
+  + Drop deprecated properties and functions.
+  + Clean up Sniffer UI.
+  + Refactor get_host_ip into separate files.
+  + Use several GLib helper functions like g_clear_object etc.
+  + Fix deprecations with GTK 3.22 in sniffer.
+  + Port build system to Meson.
+  + Drop meta-data file and custom vala for vapi.
+  + Port sniffer to use UI from GResource.
+  + Make sniffer UI more GNOME 3 hig-ish.
+  + Some usability improvements for sniffer.
+  + Add rescan for sniffer.
+  + Introduce more debug logging while creating the GSSDP client.
+  + Recreate the socket sources on errors.
+  + Fix a memory leak in sniffer.
+  + Add IPv6 support.
+  + Have sniffer show the network interface.
+- Add soname and sover defines and set them to 1_2-0 and 1.2, make
+  future API and ABI bumps easier.
+
+---

Old:

  gssdp-1.0.3.tar.xz

New:

  gssdp-1.2.1.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.64tI30/_old  2019-06-24 21:47:50.227849088 +0200
+++ /var/tmp/diff_new_pack.64tI30/_new  2019-06-24 21:47:50.231849091 +0200
@@ -16,20 +16,24 @@
 #
 
 
+# When bumping soname, do not forget to bump in baselibs.conf too.
+%define soname 1_2-0
+%define sover 1.2
+
 Name:   gssdp
-Version:1.0.3
+Version:1.2.1
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0-or-later
 Group:  Development/Libraries/C and C++
 URL:http://www.gupnp.org/
-Source: 
http://download.gnome.org/sources/gssdp/1.0/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gssdp/1.2/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 
 BuildRequires:  gtk-doc
 BuildRequires:  meson
 BuildRequires:  pkgconfig
-BuildRequires:  pkgconfig(glib-2.0) >= 2.32
+BuildRequires:  pkgconfig(glib-2.0) >= 2.44
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0
 BuildRequires:  

commit gssdp for openSUSE:Factory

2019-02-13 Thread root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2019-02-13 10:16:32

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new.28833 (New)


Package is "gssdp"

Wed Feb 13 10:16:32 2019 rev:49 rq:669852 version:1.0.3

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2018-03-08 
10:44:52.908591929 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new.28833/gssdp.changes   2019-02-13 
10:16:33.753376433 +0100
@@ -1,0 +2,15 @@
+Fri Jan 25 10:42:14 UTC 2019 - bjorn@gmail.com
+
+- Update to version 1.0.3:
+  + Meson build fixes.
+  + Fix running sniffer from meson build.
+  + Fix issue on OS X when socket is destroyed after suspend.
+  + Fix a memory leak in the device sniffer.
+  + Fix a crash when sending a SSDP message after clearing the
+custom headers.
+  + Use utsname.release for Server: header.
+  + Bugs fixed in this release: glgo#GNOME/gssdp#1, bgo#794340.
+- Switch to meson buildsystem, add meson and gtk-doc BuildRequires
+  and macros. Also run tests in new check section.
+
+---

Old:

  gssdp-1.0.2.tar.xz

New:

  gssdp-1.0.3.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.1xAgYC/_old  2019-02-13 10:16:34.157376279 +0100
+++ /var/tmp/diff_new_pack.1xAgYC/_new  2019-02-13 10:16:34.161376277 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   gssdp
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0-or-later
@@ -25,6 +25,9 @@
 URL:http://www.gupnp.org/
 Source: 
http://download.gnome.org/sources/gssdp/1.0/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+
+BuildRequires:  gtk-doc
+BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(glib-2.0) >= 2.32
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
@@ -75,15 +78,23 @@
 announcement over SSDP.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
-%configure --disable-static
-make %{?_smp_mflags}
+%meson \
+   -Dgtk_doc=true \
+   -Dsniffer=true \
+   -Dintrospection=true \
+   -Dvapi=true \
+   -Dexamples=false \
+   %{nil}
+%meson_build
 
 %install
-%make_install
-find %{buildroot} -type f -name "*.la" -delete -print
+%meson_install
+
+%check
+%meson_test
 
 %post -n libgssdp-1_0-3 -p /sbin/ldconfig
 %postun -n libgssdp-1_0-3 -p /sbin/ldconfig

++ gssdp-1.0.2.tar.xz -> gssdp-1.0.3.tar.xz ++
 7698 lines of diff (skipped)




commit gssdp for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2018-03-08 10:44:51

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Thu Mar  8 10:44:51 2018 rev:48 rq:582761 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2017-03-22 
23:07:24.952132149 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2018-03-08 
10:44:52.908591929 +0100
@@ -1,0 +2,5 @@
+Wed Feb 28 16:31:30 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.1g3mQ1/_old  2018-03-08 10:44:53.448572488 +0100
+++ /var/tmp/diff_new_pack.1g3mQ1/_new  2018-03-08 10:44:53.452572344 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,17 +20,17 @@
 Version:1.0.2
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
-License:LGPL-2.0+
+License:LGPL-2.0-or-later
 Group:  Development/Libraries/C and C++
-Url:http://www.gupnp.org/
+URL:http://www.gupnp.org/
 Source: 
http://download.gnome.org/sources/gssdp/1.0/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(glib-2.0) >= 2.32
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.0
 BuildRequires:  pkgconfig(libsoup-2.4) >= 2.26.1
 BuildRequires:  pkgconfig(vapigen)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 gssdp offers a GObject-based API for handling resource discovery and
@@ -79,35 +79,28 @@
 
 %build
 %configure --disable-static
-%__make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 
-%clean
-rm -rf %{buildroot}
-
 %post -n libgssdp-1_0-3 -p /sbin/ldconfig
-
 %postun -n libgssdp-1_0-3 -p /sbin/ldconfig
 
 %files utils
-%defattr(-,root,root)
 %{_bindir}/*
 %{_datadir}/%{name}
 
 %files -n libgssdp-1_0-3
-%defattr(-,root,root)
-%doc AUTHORS COPYING NEWS README
+%license COPYING
+%doc AUTHORS NEWS README
 %{_libdir}/*.so.*
 
 %files -n typelib-1_0-GSSDP-1_0
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/GSSDP-1.0.typelib
 
 %files -n libgssdp-devel
-%defattr(-,root,root)
 %{_includedir}/%{name}-1.0
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/*.pc




commit gssdp for openSUSE:Factory

2017-03-22 Thread root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2017-03-22 23:07:23

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Wed Mar 22 23:07:23 2017 rev:47 rq:481388 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-11-25 
12:26:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2017-03-22 
23:07:24.952132149 +0100
@@ -1,0 +2,7 @@
+Mon Mar 20 14:31:30 UTC 2017 - dims...@opensuse.org
+
+- Update to version 1.0.2:
+  + Small documentation fixes.
+  + Fix deprecation warning with GTK+-3.22.
+
+---

Old:

  gssdp-1.0.1.tar.xz

New:

  gssdp-1.0.2.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.XtjrWM/_old  2017-03-22 23:07:25.604039768 +0100
+++ /var/tmp/diff_new_pack.XtjrWM/_new  2017-03-22 23:07:25.604039768 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:1.0.1
+Version:1.0.2
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-1.0.1.tar.xz -> gssdp-1.0.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.0.1/NEWS new/gssdp-1.0.2/NEWS
--- old/gssdp-1.0.1/NEWS2016-10-15 08:48:23.0 +0200
+++ new/gssdp-1.0.2/NEWS2017-03-20 12:43:04.0 +0100
@@ -1,3 +1,11 @@
+1.0.2
+=
+- Small documentation fixes
+- Fix deprecation warning with GTK+-3.22
+
+All contributors to this release:
+ - Jens Georg 
+
 1.0.1
 =
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.0.1/configure new/gssdp-1.0.2/configure
--- old/gssdp-1.0.1/configure   2016-10-15 14:24:33.0 +0200
+++ new/gssdp-1.0.2/configure   2017-03-20 12:48:53.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gssdp 1.0.1.
+# Generated by GNU Autoconf 2.69 for gssdp 1.0.2.
 #
 # Report bugs to 
.
 #
@@ -651,8 +651,8 @@
 # Identity of this package.
 PACKAGE_NAME='gssdp'
 PACKAGE_TARNAME='gssdp'
-PACKAGE_VERSION='1.0.1'
-PACKAGE_STRING='gssdp 1.0.1'
+PACKAGE_VERSION='1.0.2'
+PACKAGE_STRING='gssdp 1.0.2'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gupnp=gssdp'
 PACKAGE_URL='http://www.gupnp.org/'
 
@@ -1463,7 +1463,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gssdp 1.0.1 to adapt to many kinds of systems.
+\`configure' configures gssdp 1.0.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1535,7 +1535,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of gssdp 1.0.1:";;
+ short | recursive ) echo "Configuration of gssdp 1.0.2:";;
esac
   cat <<\_ACEOF
 
@@ -1677,7 +1677,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gssdp configure 1.0.1
+gssdp configure 1.0.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2009,7 +2009,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gssdp $as_me 1.0.1, which was
+It was created by gssdp $as_me 1.0.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2989,7 +2989,7 @@
 
 # Define the identity of the package.
  PACKAGE='gssdp'
- VERSION='1.0.1'
+ VERSION='1.0.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15833,7 +15833,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by gssdp $as_me 1.0.1, which was
+This file was extended by gssdp $as_me 1.0.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -15900,7 +15900,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ 

commit gssdp for openSUSE:Factory

2016-11-25 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-11-25 12:26:43

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-09-21 
18:37:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-11-25 
12:26:45.0 +0100
@@ -1,0 +2,9 @@
+Sat Oct 15 13:13:56 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.0.1:
+  + Fix some compiler/c89 issues with recent mingw.
+  + Use proper ssize_t modifier in printf.
+  + Make documentation point to itself by declaring it stable.
+  + Use correct FSF address in documentation text.
+
+---

Old:

  gssdp-1.0.0.tar.xz

New:

  gssdp-1.0.1.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.z3Vie7/_old  2016-11-25 12:26:46.0 +0100
+++ /var/tmp/diff_new_pack.z3Vie7/_new  2016-11-25 12:26:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-1.0.0.tar.xz -> gssdp-1.0.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.0.0/NEWS new/gssdp-1.0.1/NEWS
--- old/gssdp-1.0.0/NEWS2016-08-15 19:02:24.0 +0200
+++ new/gssdp-1.0.1/NEWS2016-10-15 08:48:23.0 +0200
@@ -1,3 +1,19 @@
+1.0.1
+=
+
+- Fix some compiler/c89 issues with recent mingw
+- Use proper ssize_t modifier in printf
+- Make documentation point to itself by declaring it stable
+- Use correct FSF address in documentation text
+
+All contributors to this release:
+ - Jens Georg 
+
+1.0.0
+=
+
+- No difference to 0.99.0
+
 0.99.0
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-1.0.0/build-aux/config.guess 
new/gssdp-1.0.1/build-aux/config.guess
--- old/gssdp-1.0.0/build-aux/config.guess  2016-09-19 20:20:59.0 
+0200
+++ new/gssdp-1.0.1/build-aux/config.guess  2016-10-15 14:24:36.0 
+0200
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
-#   Copyright 1992-2015 Free Software Foundation, Inc.
+#   Copyright 1992-2016 Free Software Foundation, Inc.
 
-timestamp='2015-08-20'
+timestamp='2016-04-02'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@
 # Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
 #
 # You can get the latest version of this script from:
-# 
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
+# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
 #
 # Please send patches to .
 
@@ -50,7 +50,7 @@
 GNU config.guess ($timestamp)
 
 Originally written by Per Bothner.
-Copyright 1992-2015 Free Software Foundation, Inc.
+Copyright 1992-2016 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -237,6 +237,10 @@
UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
exit ;;
+*:LibertyBSD:*:*)
+   UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
+   echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}
+   exit ;;
 *:ekkoBSD:*:*)
echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
exit ;;
@@ -268,42 +272,42 @@
ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) 
processor.*$/\1/p' | head -n 1`
case "$ALPHA_CPU_TYPE" in
"EV4 (21064)")
-   UNAME_MACHINE="alpha" ;;
+   UNAME_MACHINE=alpha ;;
"EV4.5 (21064)")
-   UNAME_MACHINE="alpha" ;;
+   UNAME_MACHINE=alpha ;;
"LCA4 (21066/21068)")
-   UNAME_MACHINE="alpha" ;;
+   UNAME_MACHINE=alpha ;;
"EV5 (21164)")
-   UNAME_MACHINE="alphaev5" ;;
+   UNAME_MACHINE=alphaev5 ;;
"EV5.6 (21164A)")
-   UNAME_MACHINE="alphaev56" ;;
+   UNAME_MACHINE=alphaev56 ;;
"EV5.6 (21164PC)")
-   UNAME_MACHINE="alphapca56" ;;
+   UNAME_MACHINE=alphapca56 ;;
"EV5.7 (21164PC)")
-  

commit gssdp for openSUSE:Factory

2016-09-21 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-09-21 18:37:43

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-07-01 
09:53:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-09-21 
18:37:45.0 +0200
@@ -1,0 +2,13 @@
+Mon Sep 19 18:43:12 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.0.0:
+  + No changes.
+
+---
+Tue Aug 16 17:00:28 UTC 2016 - zai...@opensuse.org
+
+- Update to version 0.99.0:
+  + Don't leak arp lookup symbol.
+  + Minor documentation updates.
+
+---

Old:

  gssdp-0.14.16.tar.xz

New:

  gssdp-1.0.0.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.11GUjT/_old  2016-09-21 18:37:46.0 +0200
+++ /var/tmp/diff_new_pack.11GUjT/_new  2016-09-21 18:37:46.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   gssdp
-Version:0.14.16
+Version:1.0.0
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
-Source: 
http://download.gnome.org/sources/gssdp/0.14/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gssdp/1.0/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  pkgconfig(glib-2.0) >= 2.32
 BuildRequires:  pkgconfig(gobject-introspection-1.0)

++ gssdp-0.14.16.tar.xz -> gssdp-1.0.0.tar.xz ++
 21214 lines of diff (skipped)




commit gssdp for openSUSE:Factory

2016-07-01 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-07-01 09:53:21

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-06-03 
16:30:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-07-01 
09:53:22.0 +0200
@@ -1,0 +2,9 @@
+Tue Jun 21 17:15:24 UTC 2016 - zai...@opensuse.org
+
+- Update to version 0.14.16:
+  + Fill the interface index for bionic.
+  + Remove unused include.
+  + Fix interface lookup on Win32.
+  + Bugs fixed: bgo#762455, bgo#765688, bgo#765709.
+
+---

Old:

  gssdp-0.14.15.tar.xz

New:

  gssdp-0.14.16.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.fd50Ju/_old  2016-07-01 09:53:22.0 +0200
+++ /var/tmp/diff_new_pack.fd50Ju/_new  2016-07-01 09:53:22.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.15
+Version:0.14.16
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+
@@ -55,7 +55,7 @@
 announcement over SSDP.
 
 %package -n typelib-1_0-GSSDP-1_0
-Summary:Library for resource discovery and announcement over SSDP -- 
Introspection bindings
+Summary:Lib for resource discovery and announcement over SSDP - 
Introspection bindings
 Group:  System/Libraries
 
 %description -n typelib-1_0-GSSDP-1_0

++ gssdp-0.14.15.tar.xz -> gssdp-0.14.16.tar.xz ++
 21214 lines of diff (skipped)




commit gssdp for openSUSE:Factory

2016-06-03 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-06-03 16:30:31

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-05-05 
12:11:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-06-03 
16:30:33.0 +0200
@@ -1,0 +2,5 @@
+Thu May 19 05:24:43 UTC 2016 - ty...@suse.com
+
+- Update to GNOME 3.20.2  Fate#318572
+
+---



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.J82DOp/_old  2016-06-03 16:30:34.0 +0200
+++ /var/tmp/diff_new_pack.J82DOp/_new  2016-06-03 16:30:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed




commit gssdp for openSUSE:Factory

2016-05-05 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-05-05 12:11:16

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-02-18 
12:35:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-05-05 
12:11:18.0 +0200
@@ -1,0 +2,13 @@
+Tue Apr 26 16:28:00 UTC 2016 - zai...@opensuse.org
+
+- Update to version 0.14.15:
+  + Actually use the TTL that was set by the user.
+  + Use if_nametoindex instead of IOCTL when available.
+  + Implement a User Agent cache based on SSDP packages.
+  + Fix potential strncpy overflow.
+  + Add missing m4 macros.
+  + Disable PKTINFO on OS X.
+  + Do not leak host_addr in clients.
+  + Bugs fixed: bgo#653894, bgo#762324, bgo#764677.
+
+---

Old:

  gssdp-0.14.14.tar.xz

New:

  gssdp-0.14.15.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.M8l5YD/_old  2016-05-05 12:11:18.0 +0200
+++ /var/tmp/diff_new_pack.M8l5YD/_new  2016-05-05 12:11:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.14
+Version:0.14.15
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.14.tar.xz -> gssdp-0.14.15.tar.xz ++
 22972 lines of diff (skipped)




commit gssdp for openSUSE:Factory

2016-02-18 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-02-18 11:06:01

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2016-01-09 
23:11:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-02-18 
12:35:35.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb  9 08:40:10 UTC 2016 - dims...@opensuse.org
+
+- Update to version 0.14.14:
+  + Fix warning if the IP address is not known.
+  + Fix issue with discovery.
+  + Bugs fixed: bgo#760702.
+
+---

Old:

  gssdp-0.14.13.tar.xz

New:

  gssdp-0.14.14.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.d6N5cP/_old  2016-02-18 12:35:35.0 +0100
+++ /var/tmp/diff_new_pack.d6N5cP/_new  2016-02-18 12:35:36.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.13
+Version:0.14.14
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.13.tar.xz -> gssdp-0.14.14.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-0.14.13/NEWS new/gssdp-0.14.14/NEWS
--- old/gssdp-0.14.13/NEWS  2015-12-31 10:54:47.0 +0100
+++ new/gssdp-0.14.14/NEWS  2016-02-08 22:41:25.0 +0100
@@ -1,3 +1,17 @@
+0.14.14
+===
+
+- Fix warning if the IP address is not known.
+- Fix issue with discovery.
+
+
+Bugs fixed in this release:
+ - https://bugzilla.gnome.org/show_bug.cgi?id=760702
+
+All contributors to this release:
+ - Jens Georg 
+ - Philip Withnall 
+
 0.14.13
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-0.14.13/configure new/gssdp-0.14.14/configure
--- old/gssdp-0.14.13/configure 2015-12-31 10:56:42.0 +0100
+++ new/gssdp-0.14.14/configure 2016-02-08 22:43:49.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gssdp 0.14.13.
+# Generated by GNU Autoconf 2.69 for gssdp 0.14.14.
 #
 # Report bugs to 
.
 #
@@ -651,8 +651,8 @@
 # Identity of this package.
 PACKAGE_NAME='gssdp'
 PACKAGE_TARNAME='gssdp'
-PACKAGE_VERSION='0.14.13'
-PACKAGE_STRING='gssdp 0.14.13'
+PACKAGE_VERSION='0.14.14'
+PACKAGE_STRING='gssdp 0.14.14'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gupnp=gssdp'
 PACKAGE_URL='http://www.gupnp.org/'
 
@@ -1449,7 +1449,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gssdp 0.14.13 to adapt to many kinds of systems.
+\`configure' configures gssdp 0.14.14 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1520,7 +1520,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of gssdp 0.14.13:";;
+ short | recursive ) echo "Configuration of gssdp 0.14.14:";;
esac
   cat <<\_ACEOF
 
@@ -1657,7 +1657,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gssdp configure 0.14.13
+gssdp configure 0.14.14
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1989,7 +1989,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gssdp $as_me 0.14.13, which was
+It was created by gssdp $as_me 0.14.14, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2969,7 +2969,7 @@
 
 # Define the identity of the package.
  PACKAGE='gssdp'
- VERSION='0.14.13'
+ VERSION='0.14.14'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15282,7 +15282,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by gssdp $as_me 0.14.13, which was
+This file was extended by gssdp $as_me 0.14.14, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -15349,7 +15349,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/&/g'`"
 ac_cs_version="\\
-gssdp config.status 0.14.13
+gssdp config.status 0.14.14
 configured by $0, generated by GNU 

commit gssdp for openSUSE:Factory

2016-01-09 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2016-01-09 23:11:55

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2015-12-17 
15:54:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2016-01-09 
23:11:56.0 +0100
@@ -1,0 +2,8 @@
+Sun Jan  3 14:34:47 UTC 2016 - zai...@opensuse.org
+
+- Update to version 0.14.13:
+  + Make "host-ip" of GSSDPClient a construction property to give
+the caller the chance to bypass the IP autodetection during
+client creation.
+
+---

Old:

  gssdp-0.14.12.1.tar.xz

New:

  gssdp-0.14.13.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.bz7YgP/_old  2016-01-09 23:11:57.0 +0100
+++ /var/tmp/diff_new_pack.bz7YgP/_new  2016-01-09 23:11:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.12.1
+Version:0.14.13
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.12.1.tar.xz -> gssdp-0.14.13.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-0.14.12.1/NEWS new/gssdp-0.14.13/NEWS
--- old/gssdp-0.14.12.1/NEWS2015-12-01 22:24:27.0 +0100
+++ new/gssdp-0.14.13/NEWS  2015-12-31 10:54:47.0 +0100
@@ -1,9 +1,17 @@
+0.14.13
+===
+
+- Make "host-ip" of GSSDPClient a construction property to give the caller the
+  chance to bypass the IP autodetection during client creation.
+
+All contributors to this release:
+ - Jens Georg 
+
 0.14.12.1
 =
 
 - Update m4 macros from autoconf-archive.
 
-
 Bugs fixed in this release:
  - https://bugzilla.gnome.org/show_bug.cgi?id=758778
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-0.14.12.1/configure new/gssdp-0.14.13/configure
--- old/gssdp-0.14.12.1/configure   2015-12-01 22:25:35.0 +0100
+++ new/gssdp-0.14.13/configure 2015-12-31 10:56:42.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gssdp 0.14.12.1.
+# Generated by GNU Autoconf 2.69 for gssdp 0.14.13.
 #
 # Report bugs to 
.
 #
@@ -651,8 +651,8 @@
 # Identity of this package.
 PACKAGE_NAME='gssdp'
 PACKAGE_TARNAME='gssdp'
-PACKAGE_VERSION='0.14.12.1'
-PACKAGE_STRING='gssdp 0.14.12.1'
+PACKAGE_VERSION='0.14.13'
+PACKAGE_STRING='gssdp 0.14.13'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gupnp=gssdp'
 PACKAGE_URL='http://www.gupnp.org/'
 
@@ -1449,7 +1449,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gssdp 0.14.12.1 to adapt to many kinds of systems.
+\`configure' configures gssdp 0.14.13 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1520,7 +1520,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of gssdp 0.14.12.1:";;
+ short | recursive ) echo "Configuration of gssdp 0.14.13:";;
esac
   cat <<\_ACEOF
 
@@ -1657,7 +1657,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gssdp configure 0.14.12.1
+gssdp configure 0.14.13
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1989,7 +1989,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gssdp $as_me 0.14.12.1, which was
+It was created by gssdp $as_me 0.14.13, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2969,7 +2969,7 @@
 
 # Define the identity of the package.
  PACKAGE='gssdp'
- VERSION='0.14.12.1'
+ VERSION='0.14.13'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15282,7 +15282,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was 

commit gssdp for openSUSE:Factory

2015-12-17 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2015-12-17 15:54:27

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2015-12-01 
09:17:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2015-12-17 
15:54:28.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec  8 11:28:45 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.14.12.1:
+  + Update m4 macros from autoconf-archive (bgo#758778).
+
+---

Old:

  gssdp-0.14.12.tar.xz

New:

  gssdp-0.14.12.1.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.oeAfoW/_old  2015-12-17 15:54:29.0 +0100
+++ /var/tmp/diff_new_pack.oeAfoW/_new  2015-12-17 15:54:29.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.12
+Version:0.14.12.1
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.12.tar.xz -> gssdp-0.14.12.1.tar.xz ++
 2366 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.12/NEWS new/gssdp-0.14.12.1/NEWS
--- old/gssdp-0.14.12/NEWS  2015-11-21 19:12:50.0 +0100
+++ new/gssdp-0.14.12.1/NEWS2015-12-01 22:24:27.0 +0100
@@ -1,3 +1,15 @@
+0.14.12.1
+=
+
+- Update m4 macros from autoconf-archive.
+
+
+Bugs fixed in this release:
+ - https://bugzilla.gnome.org/show_bug.cgi?id=758778
+
+All contributors to this release:
+ - Jens Georg 
+
 0.14.12
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.12/configure.ac new/gssdp-0.14.12.1/configure.ac
--- old/gssdp-0.14.12/configure.ac  2015-11-21 19:05:00.0 +0100
+++ new/gssdp-0.14.12.1/configure.ac2015-12-01 22:23:34.0 +0100
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([gssdp],
-[0.14.12],
+[0.14.12.1],
 
[http://bugzilla.gnome.org/enter_bug.cgi?product=gupnp=gssdp],
 [gssdp],
 [http://www.gupnp.org/])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.12/doc/html/GSSDPClient.html 
new/gssdp-0.14.12.1/doc/html/GSSDPClient.html
--- old/gssdp-0.14.12/doc/html/GSSDPClient.html 2015-11-21 19:15:40.0 
+0100
+++ new/gssdp-0.14.12.1/doc/html/GSSDPClient.html   2015-12-01 
22:27:49.0 +0100
@@ -8,7 +8,7 @@
 
 
 
-
+
 
 
 
@@ -61,7 +61,7 @@
 
 
 
-https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext;>GMainContext *
+GMainContext *
 
 
 gssdp_client_get_main_context 
()
@@ -113,7 +113,7 @@
 
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean;>gboolean
+gboolean
 
 
 gssdp_client_get_active ()
@@ -156,46 +156,46 @@
 
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean;>gboolean
+gboolean
 active
 Read / Write
 
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar;>gchar *
+gchar *
 host-ip
 Read
 
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar;>gchar *
+gchar *
 interface
 Read / Write / Construct Only
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer;>gpointer
+gpointer
 main-context
 Read / Write / Construct Only
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint;>guint
+guint
 msearch-port
 Read / Write / Construct Only
 
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar;>gchar *
+gchar *
 network
 Read / Write / Construct
 
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar;>gchar *
+gchar *
 server-id
 Read / Write
 
 
-https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint;>guint
+guint
 socket-ttl
 Read / Write 

commit gssdp for openSUSE:Factory

2015-12-01 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2015-12-01 09:17:44

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is "gssdp"

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2015-01-08 
23:05:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2015-12-01 
09:17:45.0 +0100
@@ -1,0 +2,10 @@
+Sun Nov 22 15:22:47 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.14.12:
+  + Fix issues with names of loopback device on *BSD.
+  + Move gtest code one level up and examples to their own folder.
+  + Fix a possible NULL derefence in gssdp-device-sniffer.
+  + Remove use of gnome-common for building.
+  + Bugs fixed: bgo#743070.
+
+---

Old:

  gssdp-0.14.11.tar.xz

New:

  gssdp-0.14.12.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.4tcB1J/_old  2015-12-01 09:17:46.0 +0100
+++ /var/tmp/diff_new_pack.4tcB1J/_new  2015-12-01 09:17:46.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.11
+Version:0.14.12
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.11.tar.xz -> gssdp-0.14.12.tar.xz ++
 11150 lines of diff (skipped)




commit gssdp for openSUSE:Factory

2015-01-08 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2015-01-08 23:05:46

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2014-10-19 
19:27:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2015-01-08 
23:05:48.0 +0100
@@ -1,0 +2,9 @@
+Mon Jan  5 15:27:49 UTC 2015 - dims...@opensuse.org
+
+- Update to version 0.14.11:
+  + Don't use inet_netof to filter for correct source networks.
+  + Add gssdp_resource_browser_rescan() function.
+  + Allow custom TTL values for GSSDPClient.
+  + Bugs fixed: bgo#656406, bgo#668922, bgo#692516.
+
+---

Old:

  gssdp-0.14.10.tar.xz

New:

  gssdp-0.14.11.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.AkJPBw/_old  2015-01-08 23:05:49.0 +0100
+++ /var/tmp/diff_new_pack.AkJPBw/_new  2015-01-08 23:05:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.10
+Version:0.14.11
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.10.tar.xz - gssdp-0.14.11.tar.xz ++
 1681 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.10/NEWS new/gssdp-0.14.11/NEWS
--- old/gssdp-0.14.10/NEWS  2014-08-15 22:33:10.0 +0200
+++ new/gssdp-0.14.11/NEWS  2015-01-04 13:39:41.0 +0100
@@ -1,3 +1,15 @@
+0.14.11
+===
+
+- Fix memory leak in GSSDPClient.
+
+Bugs fixed in this release:
+ - https://bugzilla.gnome.org/show_bug.cgi?id=737870
+
+All contributors to this release:
+ - Richard Röjfors rich...@puffinpack.se
+ - Jens Georg m...@jensge.org
+
 0.14.10
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.10/configure.ac new/gssdp-0.14.11/configure.ac
--- old/gssdp-0.14.10/configure.ac  2014-08-06 00:50:01.0 +0200
+++ new/gssdp-0.14.11/configure.ac  2014-08-15 22:47:56.0 +0200
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([gssdp],
-[0.14.10],
+[0.14.11],
 
[http://bugzilla.gnome.org/enter_bug.cgi?product=gupnpcomponent=gssdp],
 [gssdp],
 [http://www.gupnp.org/])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.10/doc/html/GSSDPClient.html 
new/gssdp-0.14.11/doc/html/GSSDPClient.html
--- old/gssdp-0.14.10/doc/html/GSSDPClient.html 2014-08-15 22:45:38.0 
+0200
+++ new/gssdp-0.14.11/doc/html/GSSDPClient.html 2015-01-04 13:53:05.0 
+0100
@@ -8,17 +8,17 @@
 link rel=up href=ch01.html title=GSSDP
 link rel=prev href=ch01.html title=GSSDP
 link rel=next href=GSSDPResourceBrowser.html title=GSSDPResourceBrowser
-meta name=generator content=GTK-Doc V1.20 (XML mode)
+meta name=generator content=GTK-Doc V1.21.1 (XML mode)
 link rel=stylesheet href=style.css type=text/css
 /head
 body bgcolor=white text=black link=#FF vlink=#840084 
alink=#FF
-table class=navigation id=top width=100% summary=Navigation header 
cellpadding=2 cellspacing=10tr valign=middle
+table class=navigation id=top width=100% summary=Navigation header 
cellpadding=2 cellspacing=5tr valign=middle
 td width=100% align=left class=shortcuts
-a href=# class=shortcutTop/aspan id=nav_description span 
class=dim|/span 
-  a href=#GSSDPClient.description 
class=shortcutDescription/a/spanspan id=nav_hierarchy span 
class=dim|/span 
-  

commit gssdp for openSUSE:Factory

2014-10-19 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2014-10-19 19:27:35

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2014-08-20 
17:53:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2014-10-19 
19:27:36.0 +0200
@@ -1,0 +2,5 @@
+Thu Oct 16 19:53:02 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Add baselibs.conf: provide multi-arch packages.
+
+---

New:

  baselibs.conf



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.4Hyufy/_old  2014-10-19 19:27:37.0 +0200
+++ /var/tmp/diff_new_pack.4Hyufy/_new  2014-10-19 19:27:37.0 +0200
@@ -24,6 +24,7 @@
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
 Source: 
http://download.gnome.org/sources/gssdp/0.14/%{name}-%{version}.tar.xz
+Source1:baselibs.conf
 BuildRequires:  pkgconfig(glib-2.0) = 2.32
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(gtk+-3.0) = 3.0

++ baselibs.conf ++
libgssdp-1_0-3--
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2014-08-20 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2014-08-20 17:53:06

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2014-07-31 
07:41:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2014-08-20 
17:53:23.0 +0200
@@ -1,0 +2,8 @@
+Fri Aug 15 21:32:17 UTC 2014 - dims...@opensuse.org
+
+- Update to version 0.14.10:
+  + DOAP fixes.
+  + Fix SSDP when running on the same host.
+  + Bug fixed: bgo#733851.
+
+---

Old:

  gssdp-0.14.9.tar.xz

New:

  gssdp-0.14.10.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.DISlTz/_old  2014-08-20 17:53:25.0 +0200
+++ /var/tmp/diff_new_pack.DISlTz/_new  2014-08-20 17:53:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.9
+Version:0.14.10
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.9.tar.xz - gssdp-0.14.10.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-0.14.9/NEWS new/gssdp-0.14.10/NEWS
--- old/gssdp-0.14.9/NEWS   2014-07-25 20:51:28.0 +0200
+++ new/gssdp-0.14.10/NEWS  2014-08-15 22:33:10.0 +0200
@@ -1,3 +1,18 @@
+0.14.10
+===
+
+- DOAP fixes
+- Fix SSDP when running on the same host.
+
+Bugs fixed in this release:
+ - https://bugzilla.gnome.org/show_bug.cgi?id=733851
+
+All contributors to this release:
+ - Olav Vitters o...@vitters.nl
+ - Jussi Kukkonen j...@goto.fi
+ - Jens Georg m...@jensge.org
+ - Andre Klapper a9016...@gmx.de
+
 0.14.9
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gssdp-0.14.9/configure new/gssdp-0.14.10/configure
--- old/gssdp-0.14.9/configure  2014-07-25 20:51:47.0 +0200
+++ new/gssdp-0.14.10/configure 2014-08-15 22:45:07.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gssdp 0.14.9.
+# Generated by GNU Autoconf 2.69 for gssdp 0.14.10.
 #
 # Report bugs to 
http://bugzilla.gnome.org/enter_bug.cgi?product=gupnpcomponent=gssdp.
 #
@@ -651,8 +651,8 @@
 # Identity of this package.
 PACKAGE_NAME='gssdp'
 PACKAGE_TARNAME='gssdp'
-PACKAGE_VERSION='0.14.9'
-PACKAGE_STRING='gssdp 0.14.9'
+PACKAGE_VERSION='0.14.10'
+PACKAGE_STRING='gssdp 0.14.10'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gupnpcomponent=gssdp'
 PACKAGE_URL='http://www.gupnp.org/'
 
@@ -1448,7 +1448,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures gssdp 0.14.9 to adapt to many kinds of systems.
+\`configure' configures gssdp 0.14.10 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1519,7 +1519,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of gssdp 0.14.9:;;
+ short | recursive ) echo Configuration of gssdp 0.14.10:;;
esac
   cat \_ACEOF
 
@@ -1656,7 +1656,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-gssdp configure 0.14.9
+gssdp configure 0.14.10
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1988,7 +1988,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gssdp $as_me 0.14.9, which was
+It was created by gssdp $as_me 0.14.10, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2968,7 +2968,7 @@
 
 # Define the identity of the package.
  PACKAGE='gssdp'
- VERSION='0.14.9'
+ VERSION='0.14.10'
 
 
 cat confdefs.h _ACEOF
@@ -14351,7 +14351,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by gssdp $as_me 0.14.9, which was
+This file was extended by gssdp $as_me 0.14.10, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -14418,7 +14418,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-gssdp config.status 0.14.9
+gssdp config.status 0.14.10
 configured by $0, generated by GNU Autoconf 2.69,
   with 

commit gssdp for openSUSE:Factory

2014-07-30 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2014-07-31 07:41:21

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2014-07-04 
17:18:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2014-07-31 
07:41:22.0 +0200
@@ -1,0 +2,11 @@
+Fri Jul 25 19:17:44 UTC 2014 - dims...@opensuse.org
+
+- Update to version 0.14.9:
+  + Properly set max age property.
+  + Some gtk-doc fixes.
+  + Only consider 200 OK a proper response for SSDP requests.
+  + Remove a scary warning.
+  + Fix source packet filtering.
+  + Bugs fixed: bgo#697084, bgo#730946, bgo#733651.
+
+---

Old:

  gssdp-0.14.8.tar.xz

New:

  gssdp-0.14.9.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.bf27DE/_old  2014-07-31 07:41:23.0 +0200
+++ /var/tmp/diff_new_pack.bf27DE/_new  2014-07-31 07:41:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.8
+Version:0.14.9
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.8.tar.xz - gssdp-0.14.9.tar.xz ++
 21613 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2014-07-04 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2014-07-04 17:18:36

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2014-02-17 
12:53:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2014-07-04 
17:18:47.0 +0200
@@ -1,0 +2,20 @@
+Tue Jul  1 17:34:02 UTC 2014 - dims...@opensuse.org
+
+- Update to version 0.14.8:
+  + Recover from lost BYEBYE packets.
+  + Some code clean-up.
+  + Use GLib's multicast socket functions.
+  + Fix compiling on mingw.
+  + Don't abort if get_host_ip fails.
+  + Fix an issue with unreffing GSources.
+  + Fix build on some BSDs.
+  + Use pktinfo on Linux to determine the source interface instead
+of relying on netmasks.
+  + Use strncpy() on interface names to not exceed ifrn_name
+length.
+  + Documentation fixes.
+  + Add support for vendor-specific headers in SSDP messages.
+  + Bugs fixed: bgo#678660, bgo#711320, bgo#724030, bgo#728871,
+bgo#72, bgo#729613, bgo#730358.
+
+---

Old:

  gssdp-0.14.7.tar.xz

New:

  gssdp-0.14.8.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.xHHYg6/_old  2014-07-04 17:18:48.0 +0200
+++ /var/tmp/diff_new_pack.xHHYg6/_new  2014-07-04 17:18:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.7
+Version:0.14.8
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.7.tar.xz - gssdp-0.14.8.tar.xz ++
 27594 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2014-02-17 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2014-02-17 12:53:42

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2013-11-24 
11:56:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2014-02-17 
12:53:42.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb  3 17:51:11 UTC 2014 - zai...@opensuse.org
+
+- Update to version 0.14.7:
+  + Add mising function declaration.
+
+---

Old:

  gssdp-0.14.6.tar.xz

New:

  gssdp-0.14.7.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.PtlXwB/_old  2014-02-17 12:53:43.0 +0100
+++ /var/tmp/diff_new_pack.PtlXwB/_new  2014-02-17 12:53:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.6
+Version:0.14.7
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.6.tar.xz - gssdp-0.14.7.tar.xz ++
 20708 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2013-11-24 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2013-11-24 11:56:44

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2013-11-07 
09:53:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2013-11-24 
11:56:45.0 +0100
@@ -4 +4 @@
-- Update to version 0.14.6:
+- Update to version 0.14.6 (bnc#849913):



Other differences:
--
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2013-09-11 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2013-09-11 12:00:28

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2013-08-16 
12:23:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2013-09-11 
12:00:29.0 +0200
@@ -1,0 +2,9 @@
+Tue Sep  3 13:53:37 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.14.5:
+  + Port get_host_ip() to Android/Bionic.
+  + Some more gtk-doc updates.
+  + Fix some autoconf warnings.
+  + Bugs fixed: bgo#707161.
+
+---

Old:

  gssdp-0.14.4.tar.xz

New:

  gssdp-0.14.5.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.ubmYUz/_old  2013-09-11 12:00:29.0 +0200
+++ /var/tmp/diff_new_pack.ubmYUz/_new  2013-09-11 12:00:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.4
+Version:0.14.5
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+

++ gssdp-0.14.4.tar.xz - gssdp-0.14.5.tar.xz ++
 1803 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.4/NEWS new/gssdp-0.14.5/NEWS
--- old/gssdp-0.14.4/NEWS   2013-07-30 09:10:10.0 +0200
+++ new/gssdp-0.14.5/NEWS   2013-09-03 13:38:04.0 +0200
@@ -1,3 +1,17 @@
+0.14.5
+==
+
+- Port get_host_ip() to Android/Bionic.
+- Some more gtk-doc updates.
+- Fix some autoconf warnings.
+
+Bugs fixed in this release:
+ - https://bugzilla.gnome.org/show_bug.cgi?id=707161
+
+All contributors to this release:
+ - Jens Georg je...@openismus.com
+ - Reynaldo H. Verdejo Pinochet reyna...@collabora.com
+
 0.14.4
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.4/configure.ac new/gssdp-0.14.5/configure.ac
--- old/gssdp-0.14.4/configure.ac   2013-07-30 08:54:39.0 +0200
+++ new/gssdp-0.14.5/configure.ac   2013-09-03 13:38:48.0 +0200
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([gssdp],
-[0.14.4],
+[0.14.5],
 
[http://bugzilla.gnome.org/enter_bug.cgi?product=gupnpcomponent=gssdp],
 [gssdp],
 [http://www.gupnp.org/])
@@ -10,6 +10,9 @@
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([build-aux])
 
+AC_CANONICAL_HOST
+AC_CANONICAL_TARGET
+
 AM_INIT_AUTOMAKE([1.11 tar-ustar no-dist-gzip dist-xz])
 AM_MAINTAINER_MODE([enable])
 
@@ -114,7 +117,21 @@
 AC_MSG_RESULT([$os_win32])
 AM_CONDITIONAL(OS_WIN32, [test $os_win32 = yes])
 
-GTK_DOC_CHECK([1.0])
+dnl Check for Android
+AC_MSG_CHECKING([for Android as target OS])
+target_android=no
+case $target_os in
+linux-android*)
+target_android=yes
+;;
+*)
+target_android=no
+;;
+esac
+AC_MSG_RESULT([$target_android])
+AM_CONDITIONAL(TARGET_ANDROID, [test $target_android = yes])
+
+GTK_DOC_CHECK([1.14], [--flavour no-tmpl])
 
 AC_CONFIG_FILES([
 Makefile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.14.4/doc/Makefile.am new/gssdp-0.14.5/doc/Makefile.am
--- old/gssdp-0.14.4/doc/Makefile.am2013-07-30 08:54:39.0 +0200
+++ new/gssdp-0.14.5/doc/Makefile.am2013-09-03 12:36:29.0 +0200
@@ -29,7 +29,7 @@
 
 # Extra options to supply to gtkdoc-mkdb.
 # e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
-MKDB_OPTIONS=--sgml-mode --output-format=xml
+MKDB_OPTIONS=--xml-mode --output-format=xml
 
 # Extra options to supply to gtkdoc-mktmpl
 # e.g. MKTMPL_OPTIONS=--only-section-tmpl
@@ -70,7 +70,7 @@
 # signals and properties.
 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
-AM_CPPFLAGS=-I$(top_srcdir) $(LIBGSSDP_CFLAGS)
+GTKDOC_CFLAGS=-I$(top_srcdir) 

commit gssdp for openSUSE:Factory

2013-06-29 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2013-06-29 19:42:08

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2013-04-02 
11:49:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2013-06-29 
19:42:10.0 +0200
@@ -1,0 +2,14 @@
+Tue May 28 11:50:35 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.14.3:
+  + Add --interface, -i commandline option to gssdp-device-sniffer
+to specify a network interface for it to run on.
+  + Update the GSSDP device sniffer to GTK+3.
+  + Depend on vapigen = 0.20 if gobject-introspection is 1.36 or
+newer.
+  + Some minor UI fixes in gssdp-device-sniffer.
+  + Make it compile with -Wall -Wextra.
+- Replace pkgconfig(gtk+-2.0) BuildRequires with
+  pkgconfig(gtk+-3.0), following upstreams port to GTK+ 3.0.
+
+---

Old:

  gssdp-0.14.2.tar.xz

New:

  gssdp-0.14.3.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.7GAfgj/_old  2013-06-29 19:42:11.0 +0200
+++ /var/tmp/diff_new_pack.7GAfgj/_new  2013-06-29 19:42:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gssdp
-Version:0.14.2
+Version:0.14.3
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+
@@ -26,7 +26,7 @@
 Source: 
http://download.gnome.org/sources/gssdp/0.14/%{name}-%{version}.tar.xz
 BuildRequires:  pkgconfig(glib-2.0) = 2.32
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
-BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(gtk+-3.0) = 3.0
 BuildRequires:  pkgconfig(libsoup-2.4) = 2.26.1
 BuildRequires:  pkgconfig(vapigen)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ gssdp-0.14.2.tar.xz - gssdp-0.14.3.tar.xz ++
 20878 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2013-04-02 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2013-04-02 11:49:48

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2012-10-04 
18:40:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2013-04-02 
11:49:50.0 +0200
@@ -1,0 +2,57 @@
+Wed Mar  6 12:28:04 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.14.2:
+  + Fix memory leaks on initial interface search.
+  + Make default interface detection a little bit smarter.
+
+---
+Fri Feb 22 19:07:36 UTC 2013 - zai...@opensuse.org
+
+- Update to version 0.14.1:
+  + Fix a crash on network announcements (bgo#694418).
+
+---
+Wed Feb 20 18:56:56 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.14.0:
+  + Don't use inet_netof to filter for correct source networks.
+  + Add gssdp_resource_browser_rescan() function.
+  + Allow custom TTL values for GSSDPClient.
+  + Bugs fixed: bgo#656406, bgo#668922, bgo#692516.
+
+---
+Tue Jan  8 20:12:45 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.13.2:
+  + Fix implementation of GInitable such that _init() is callable
+multiple times without breaking.
+  + Really ignore invalid MAN headers.
+  + Fix port reuse on NetBSD.
+  + Allow non-sourcedir build from git.
+  + Don't use -Werror by default.
+  + Silence some deprecation warning.
+  + Bugs fixed: bgo#685949, bgo#682576, bgo#682308 and
+https://github.com/01org/media-service-upnp/issues/54.
+
+---
+Wed Oct 24 22:31:27 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.13.1:
+  + Run introspection in make distcheck.
+  + Don't fail configure if vapigen could not be found
+  + Bugs fixed: bgo#686039.
+
+---
+Sun Oct  7 08:56:51 UTC 2012 - zai...@opensuse.org
+
+- Update to version 0.13.0:
+  + Add/update license headers.
+  + Fix pkg-config files to not leak libraries.
+  + Add pkg-config name to GIR.
+  + Bugs fixed: bgo#685477.
+- Replace glib2-devel, gobject-introspection-devel, gtk2-devel,
+  libsoup-devel, vala BuildRequires, for their pkgconfig
+  counterparts: glib-2.0, gobject-introspection-1.0, gtk+-2.0,
+  libsoup-2.4, vapigen.
+
+---

Old:

  gssdp-0.12.2.1.tar.xz

New:

  gssdp-0.14.2.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.rvDBc0/_old  2013-04-02 11:49:51.0 +0200
+++ /var/tmp/diff_new_pack.rvDBc0/_new  2013-04-02 11:49:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,18 +17,18 @@
 
 
 Name:   gssdp
-Version:0.12.2.1
+Version:0.14.2
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
-Source: 
http://download.gnome.org/sources/gssdp/0.12/%{name}-%{version}.tar.xz
-BuildRequires:  glib2-devel
-BuildRequires:  gobject-introspection-devel
-BuildRequires:  gtk2-devel
-BuildRequires:  libsoup-devel
-BuildRequires:  vala
+Source: 
http://download.gnome.org/sources/gssdp/0.14/%{name}-%{version}.tar.xz
+BuildRequires:  pkgconfig(glib-2.0) = 2.32
+BuildRequires:  pkgconfig(gobject-introspection-1.0)
+BuildRequires:  pkgconfig(gtk+-2.0)
+BuildRequires:  pkgconfig(libsoup-2.4) = 2.26.1
+BuildRequires:  pkgconfig(vapigen)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ gssdp-0.12.2.1.tar.xz - gssdp-0.14.2.tar.xz ++
 3686 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2012-10-04 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2012-10-04 18:40:39

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2012-01-09 
15:42:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2012-10-04 
18:40:41.0 +0200
@@ -1,0 +2,23 @@
+Mon Aug 20 21:04:14 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.12.2.1:
+  + Add missing gssdp-1.0.deps file to tarball (bgo#682228).
+
+---
+Sun Aug 19 21:50:06 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.12.2:
+  + Functional tests.
+  + Regression tests.
+  + Ignore announcements from services with a lower version.
+  + Make internal resource cache version-independant.
+  + Update gtk-doc annotations.
+  + Update pkg-config files.
+  + Create Vala bindings from GIR
+  + Bugs fixed: bgo#675355, bgo#673150, bgo#678744, bgo#679781,
+bgo#682099,
+- Add vala BuildRequires: needed to build the new vala bindings.
+- Drop xz BuildRequires as it now comes for free in the build
+  system.
+
+---

Old:

  gssdp-0.12.1.tar.xz

New:

  gssdp-0.12.2.1.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.s4uUhP/_old  2012-10-04 18:40:42.0 +0200
+++ /var/tmp/diff_new_pack.s4uUhP/_new  2012-10-04 18:40:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gssdp
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   gssdp
-Version:0.12.1
+Version:0.12.2.1
 Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+
@@ -27,8 +28,7 @@
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk2-devel
 BuildRequires:  libsoup-devel
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
+BuildRequires:  vala
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -114,5 +114,8 @@
 %dir %{_datadir}/gtk-doc
 %dir %{_datadir}/gtk-doc/html
 %{_datadir}/gtk-doc/html/%{name}
+%dir %{_datadir}/vala/vapi
+%{_datadir}/vala/vapi/gssdp-1.0.deps
+%{_datadir}/vala/vapi/gssdp-1.0.vapi
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2012-01-09 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2012-01-09 15:41:59

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gssdp/gssdp.changes  2011-09-23 
02:02:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.gssdp.new/gssdp.changes 2012-01-09 
15:42:00.0 +0100
@@ -1,0 +2,24 @@
+Wed Dec 21 00:20:28 UTC 2011 - vu...@opensuse.org
+
+- Remove glib2-devel Requires from devel subpackage: it will
+  automatically be added the pkgconfig() way.
+
+---
+Sat Dec 10 18:54:59 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.12.1:
+  + Increase UDP buffer size
+  + Fix searching for UDN that started with [a-f]
+  + Bugs fixed: bgo#664177.
+- Do not package ChangeLog: it's an empty file.
+- Add xz BuildRequires because we can't build a package for a
+  xz-compressed tarball without explicitly specifying that...
+  See bnc#697467 for more details.
+
+---
+Fri Dec  9 09:18:56 UTC 2011 - dims...@opensuse.org
+
+- Split typelib file into typelib-1_0-GSSDP-1_0 subpackage.
+- Add typelib-1_0-GSSDP-1_0 Requires to devel subpackage.
+
+---

Old:

  gssdp-0.12.0.tar.bz2

New:

  gssdp-0.12.1.tar.xz



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.a6AWdB/_old  2012-01-09 15:42:01.0 +0100
+++ /var/tmp/diff_new_pack.a6AWdB/_new  2012-01-09 15:42:01.0 +0100
@@ -15,20 +15,20 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   gssdp
-Version:0.12.0
-Release:1
+Version:0.12.1
+Release:0
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
-Source: 
http://download.gnome.org/sources/gssdp/0.12/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gssdp/0.12/%{name}-%{version}.tar.xz
 BuildRequires:  glib2-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk2-devel
 BuildRequires:  libsoup-devel
+# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
+BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -36,7 +36,6 @@
 announcement over SSDP.
 
 %package utils
-License:LGPL-2.0+
 Summary:Utilities for resource discovery and announcement over SSDP
 Group:  Productivity/Networking/Other
 
@@ -47,7 +46,6 @@
 This package contains a device sniffer.
 
 %package -n libgssdp-1_0-3
-License:LGPL-2.0+
 Summary:Library for resource discovery and announcement over SSDP
 Group:  Development/Libraries/C and C++
 
@@ -55,12 +53,21 @@
 gssdp offers a GObject-based API for handling resource discovery and
 announcement over SSDP.
 
+%package -n typelib-1_0-GSSDP-1_0
+Summary:Library for resource discovery and announcement over SSDP -- 
Introspection bindings
+Group:  System/Libraries
+
+%description -n typelib-1_0-GSSDP-1_0
+gssdp offers a GObject-based API for handling resource discovery and
+announcement over SSDP.
+
+This package provides the GObject Introspection bindings for gssdp.
+
 %package -n libgssdp-devel
-License:LGPL-2.0+
 Summary:Library for resource discovery and announcement over SSDP - 
Development Files
 Group:  Development/Libraries/C and C++
 Requires:   libgssdp-1_0-3 = %{version}
-Requires:   glib2-devel
+Requires:   typelib-1_0-GSSDP-1_0 = %{version}
 
 %description -n libgssdp-devel
 gssdp offers a GObject-based API for handling resource discovery and
@@ -91,8 +98,11 @@
 
 %files -n libgssdp-1_0-3
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING NEWS README
+%doc AUTHORS COPYING NEWS README
 %{_libdir}/*.so.*
+
+%files -n typelib-1_0-GSSDP-1_0
+%defattr(-,root,root)
 %{_libdir}/girepository-1.0/GSSDP-1.0.typelib
 
 %files -n libgssdp-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory checked 
in at 2011-12-06 18:16:29

Comparing /work/SRC/openSUSE:Factory/gssdp (Old)
 and  /work/SRC/openSUSE:Factory/.gssdp.new (New)


Package is gssdp, Maintainer is gnome-maintain...@suse.de

Changes:




Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.eGFf8M/_old  2011-12-06 18:25:26.0 +0100
+++ /var/tmp/diff_new_pack.eGFf8M/_new  2011-12-06 18:25:26.0 +0100
@@ -21,7 +21,7 @@
 Version:0.12.0
 Release:1
 Summary:Library for resource discovery and announcement over SSDP
-License:LGPL v2 or later
+License:LGPL-2.0+
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
 Source: 
http://download.gnome.org/sources/gssdp/0.12/%{name}-%{version}.tar.bz2
@@ -36,7 +36,7 @@
 announcement over SSDP.
 
 %package utils
-License:LGPL v2 or later
+License:LGPL-2.0+
 Summary:Utilities for resource discovery and announcement over SSDP
 Group:  Productivity/Networking/Other
 
@@ -47,7 +47,7 @@
 This package contains a device sniffer.
 
 %package -n libgssdp-1_0-3
-License:LGPL v2 or later
+License:LGPL-2.0+
 Summary:Library for resource discovery and announcement over SSDP
 Group:  Development/Libraries/C and C++
 
@@ -56,7 +56,7 @@
 announcement over SSDP.
 
 %package -n libgssdp-devel
-License:LGPL v2 or later
+License:LGPL-2.0+
 Summary:Library for resource discovery and announcement over SSDP - 
Development Files
 Group:  Development/Libraries/C and C++
 Requires:   libgssdp-1_0-3 = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2011-09-09 Thread h_root

Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory
checked in at Fri Sep 9 11:23:40 CEST 2011.




--- GNOME/gssdp/gssdp.changes   2011-07-20 22:31:12.0 +0200
+++ /mounts/work_src_done/STABLE/gssdp/gssdp.changes2011-08-30 
17:03:39.0 +0200
@@ -1,0 +2,9 @@
+Tue Aug 30 17:02:56 CEST 2011 - vu...@opensuse.org
+
+- Update to version 0.12.0:
+  + Remove unnecessary and annoying deprecation warnings.
+  + When sending duplicate announcement packets, always repeat
+complete sets.
+  + Bugs fixed: bgo#655900.
+
+---

calling whatdependson for head-i586


Old:

  gssdp-0.11.2.tar.bz2

New:

  gssdp-0.12.0.tar.bz2



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.kC4fbp/_old  2011-09-09 11:23:35.0 +0200
+++ /var/tmp/diff_new_pack.kC4fbp/_new  2011-09-09 11:23:35.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   gssdp
-Version:0.11.2
+Version:0.12.0
 Release:1
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL v2 or later
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
-Source: 
http://download.gnome.org/sources/gssdp/0.11/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gssdp/0.12/%{name}-%{version}.tar.bz2
 BuildRequires:  glib2-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk2-devel

++ gssdp-0.11.2.tar.bz2 - gssdp-0.12.0.tar.bz2 ++
 13497 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.11.2/NEWS new/gssdp-0.12.0/NEWS
--- old/gssdp-0.11.2/NEWS   2011-07-20 20:57:06.0 +0200
+++ new/gssdp-0.12.0/NEWS   2011-08-29 17:04:25.0 +0200
@@ -1,3 +1,19 @@
+0.12.0
+==
+- Remove unnecessary and annoying deprecation warnings.
+- When sending duplicate announcement packets, always repeat complete sets.
+
+All contributors to this release:
+
+Jens Georg m...@jensge.org
+
+Bugs fixed:
+- bgo#655900
+
+DLNA requirements addressed:
+- 7.2.4.3
+- 7.2.4.5
+
 0.11.2
 ==
 - Modernize autotools.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.11.2/configure.ac new/gssdp-0.12.0/configure.ac
--- old/gssdp-0.11.2/configure.ac   2011-07-20 20:57:06.0 +0200
+++ new/gssdp-0.12.0/configure.ac   2011-08-29 13:20:33.0 +0200
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([gssdp],
-[0.11.2],
+[0.12.0],
 
[http://bugzilla.gnome.org/enter_bug.cgi?product=gupnpcomponent=gssdp],
 [gssdp],
 [http://www.gupnp.org/])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.11.2/doc/html/ch01.html new/gssdp-0.12.0/doc/html/ch01.html
--- old/gssdp-0.11.2/doc/html/ch01.html 2011-07-20 20:58:14.0 +0200
+++ new/gssdp-0.12.0/doc/html/ch01.html 2011-08-29 17:13:07.0 +0200
@@ -21,7 +21,7 @@
 /tr/table
 div class=chapter
 div class=titlepagedivdivh2 class=title
-a name=id489801/aGSSDP/h2/div/div/div
+a name=id546565/aGSSDP/h2/div/div/div
 div class=tocdl
 dt
 span class=refentrytitlea 
href=GSSDPClient.htmlGSSDPClient/a/spanspan class=refpurpose — SSDP 
bus wrapper./span
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gssdp-0.11.2/doc/html/index.html new/gssdp-0.12.0/doc/html/index.html
--- old/gssdp-0.11.2/doc/html/index.html2011-07-20 20:58:14.0 
+0200
+++ new/gssdp-0.12.0/doc/html/index.html2011-08-29 17:13:07.0 
+0200
@@ -14,14 +14,14 @@
 div class=titlepage
 div
 divtable class=navigation id=top width=100% cellpadding=2 
cellspacing=0trth valign=middlep class=titleGSSDP Reference 
Manual/p/th/tr/table/div
-divp class=releaseinfoVersion 0.11.2
+divp class=releaseinfoVersion 0.12.0
 
   

commit gssdp for openSUSE:Factory

2011-07-21 Thread h_root

Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory
checked in at Thu Jul 21 14:03:11 CEST 2011.




--- GNOME/gssdp/gssdp.changes   2011-07-07 13:41:04.0 +0200
+++ /mounts/work_src_done/STABLE/gssdp/gssdp.changes2011-07-20 
22:31:12.0 +0200
@@ -1,0 +2,11 @@
+Wed Jul 20 22:20:47 CEST 2011 - dims...@opensuse.org
+
+- Update to version 0.11.2:
+  + Modernize autotools.
+  + Create .xz dist tarballs only.
+  + Deprecate main_context argument and property. Use
+g_main_context_push_thread_default() instead.
+  + Fix warnings from gtk-doc.
+  + Bugs fixed: bgo#654733, bgo#654178, bgo#654177.
+
+---

calling whatdependson for head-i586


Old:

  gssdp-0.11.1.tar.bz2

New:

  gssdp-0.11.2.tar.bz2



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.QbrQUx/_old  2011-07-21 14:02:53.0 +0200
+++ /var/tmp/diff_new_pack.QbrQUx/_new  2011-07-21 14:02:53.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   gssdp
-Version:0.11.1
+Version:0.11.2
 Release:1
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL v2 or later

++ gssdp-0.11.1.tar.bz2 - gssdp-0.11.2.tar.bz2 ++
 32229 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2011-07-08 Thread h_root

Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory
checked in at Fri Jul 8 12:46:14 CEST 2011.




--- GNOME/gssdp/gssdp.changes   2011-04-29 14:19:17.0 +0200
+++ /mounts/work_src_done/STABLE/gssdp/gssdp.changes2011-07-07 
13:41:04.0 +0200
@@ -1,0 +2,25 @@
+Thu Jul  7 13:39:25 CEST 2011 - vu...@opensuse.org
+
+- Update to version 0.11.1:
+  + Fullfill restrictions imposed by UPnP CTT 1.5.
+  + Initial OpenBSD support.
+  + Fix a crash on socket creation.
+  + Implement DLNA guideline 7.2.3.4.
+  + Copyright header clean-up.
+
+---
+Thu Jun 16 16:10:18 UTC 2011 - dims...@opensuse.org
+
+- Update to version 0.11.0:
+  + Many fixes to discovery, discoverability and announcement.
+  + Many introspection improvements such as:
+- Classes that can throw an error on construction now implement
+  GInitable.
+- Updated introspection annotations.
+  + Code cleanup.
+- Rename the library packages to libgssdp-1_0-3, following the
+  soname change.
+- Remove source service usage, following the new consensus on
+  Factory packaging.
+
+---

calling whatdependson for head-i586


Old:

  _service
  _service:recompress:download_url:gssdp-0.10.0.tar.bz2
  _service:set_version:gssdp.spec

New:

  gssdp-0.11.1.tar.bz2



Other differences:
--
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.Gq2tpR/_old  2011-07-08 12:43:37.0 +0200
+++ /var/tmp/diff_new_pack.Gq2tpR/_new  2011-07-08 12:43:37.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   gssdp
-Version:0.8.2
-Release:5
+Version:0.11.1
+Release:1
 Summary:Library for resource discovery and announcement over SSDP
 License:LGPL v2 or later
 Group:  Development/Libraries/C and C++
 Url:http://www.gupnp.org/
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gssdp/0.11/%{name}-%{version}.tar.bz2
 BuildRequires:  glib2-devel
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk2-devel
@@ -46,12 +46,12 @@
 
 This package contains a device sniffer.
 
-%package -n libgssdp-1_0-2
+%package -n libgssdp-1_0-3
 License:LGPL v2 or later
 Summary:Library for resource discovery and announcement over SSDP
 Group:  Development/Libraries/C and C++
 
-%description -n libgssdp-1_0-2
+%description -n libgssdp-1_0-3
 gssdp offers a GObject-based API for handling resource discovery and
 announcement over SSDP.
 
@@ -59,7 +59,7 @@
 License:LGPL v2 or later
 Summary:Library for resource discovery and announcement over SSDP - 
Development Files
 Group:  Development/Libraries/C and C++
-Requires:   libgssdp-1_0-2 = %{version}
+Requires:   libgssdp-1_0-3 = %{version}
 Requires:   glib2-devel
 
 %description -n libgssdp-devel
@@ -80,16 +80,16 @@
 %clean
 rm -rf %{buildroot}
 
-%post -n libgssdp-1_0-2 -p /sbin/ldconfig
+%post -n libgssdp-1_0-3 -p /sbin/ldconfig
 
-%postun -n libgssdp-1_0-2 -p /sbin/ldconfig
+%postun -n libgssdp-1_0-3 -p /sbin/ldconfig
 
 %files utils
 %defattr(-,root,root)
 %{_bindir}/*
 %{_datadir}/%{name}
 
-%files -n libgssdp-1_0-2
+%files -n libgssdp-1_0-3
 %defattr(-,root,root)
 %doc AUTHORS ChangeLog COPYING NEWS README
 %{_libdir}/*.so.*






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gssdp for openSUSE:Factory

2011-05-03 Thread h_root

Hello community,

here is the log from the commit of package gssdp for openSUSE:Factory
checked in at Tue May 3 09:14:47 CEST 2011.




--- GNOME/gssdp/gssdp.changes   2010-12-07 12:57:21.0 +0100
+++ /mounts/work_src_done/STABLE/gssdp/gssdp.changes2011-04-29 
14:19:17.0 +0200
@@ -1,0 +2,24 @@
+Fri Apr 29 13:44:55 UTC 2011 - dims...@opensuse.org
+
+- Update to 0.10.0:
+  + Improve interoperability by also announcing lower versions of
+the service.
+  + More reliable announcements by announcing at least 3 times.
+  + Drop ChangeLog in favour of git history.
+  + Fix IPv6 network calculation.
+- Changes from version 0.9.2:
+  + Fix a critical issue in event handling code introduced in last
+release.
+  + Add 'network' property to GSSDPClient. By default its set to
+network IP address of the interface the client is associated
+with.
+  + Plug some leaks.
+- Changes from version 0.9.1:
+  + Fix some potential crashes.
+- Changes from version 0.9.0:
+  + Port to GIO/GSocket.
+  + Port to Windows.
+  + Don't print the whole packet on failure to send it.
+  + Some other non-functional improvements and fixes.
+
+---

calling whatdependson for head-i586


Old:

  gssdp-0.8.2.tar.bz2

New:

  _service
  _service:recompress:download_url:gssdp-0.10.0.tar.bz2
  _service:set_version:gssdp.spec



Other differences:
--
++ _service:set_version:gssdp.spec ++
#
# spec file for package gssdp
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   gssdp
Version:0.10.0
Release:1
Summary:Library for resource discovery and announcement over SSDP
License:LGPL v2 or later
Group:  Development/Libraries/C and C++
Url:http://www.gupnp.org/
Source: %{name}-%{version}.tar.bz2
BuildRequires:  glib2-devel
BuildRequires:  gobject-introspection-devel
BuildRequires:  gtk2-devel
BuildRequires:  libsoup-devel
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
gssdp offers a GObject-based API for handling resource discovery and
announcement over SSDP.

%package utils
License:LGPL v2 or later
Summary:Utilities for resource discovery and announcement over SSDP
Group:  Productivity/Networking/Other

%description utils
gssdp offers a GObject-based API for handling resource discovery and
announcement over SSDP.

This package contains a device sniffer.

%package -n libgssdp-1_0-2
License:LGPL v2 or later
Summary:Library for resource discovery and announcement over SSDP
Group:  Development/Libraries/C and C++

%description -n libgssdp-1_0-2
gssdp offers a GObject-based API for handling resource discovery and
announcement over SSDP.

%package -n libgssdp-devel
License:LGPL v2 or later
Summary:Library for resource discovery and announcement over SSDP - 
Development Files
Group:  Development/Libraries/C and C++
Requires:   libgssdp-1_0-2 = %{version}
Requires:   glib2-devel

%description -n libgssdp-devel
gssdp offers a GObject-based API for handling resource discovery and
announcement over SSDP.

%prep
%setup -q

%build
%configure --disable-static
%__make %{?jobs:-j%jobs}

%install
%makeinstall
find %{buildroot} -type f -name *.la -delete -print

%clean
rm -rf %{buildroot}

%post -n libgssdp-1_0-2 -p /sbin/ldconfig

%postun -n libgssdp-1_0-2 -p /sbin/ldconfig

%files utils
%defattr(-,root,root)
%{_bindir}/*
%{_datadir}/%{name}

%files -n libgssdp-1_0-2
%defattr(-,root,root)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_libdir}/*.so.*
%{_libdir}/girepository-1.0/GSSDP-1.0.typelib

%files -n libgssdp-devel
%defattr(-,root,root)
%{_includedir}/%{name}-1.0
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%{_datadir}/gir-1.0/GSSDP-1.0.gir
%dir %{_datadir}/gtk-doc
%dir %{_datadir}/gtk-doc/html
%{_datadir}/gtk-doc/html/%{name}

%changelog
++ gssdp.spec ++
--- /var/tmp/diff_new_pack.rtuVkE/_old  2011-05-03 09:11:54.0 +0200
+++ /var/tmp/diff_new_pack.rtuVkE/_new  2011-05-03 09:11:54.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package gssdp (Version 0.8.2)
+# spec file for package gssdp
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH,