Accepting request 669852 from GNOME:Factory
OBS-URL: https://build.opensuse.org/request/show/669852 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gssdp?expand=0&rev=49
This commit is contained in:
commit
d1537e099c
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a1e17c09c7e1a185b0bd84fd6ff3794045a3cd729b707c23e422ff66471535dc
|
||||
size 312352
|
3
gssdp-1.0.3.tar.xz
Normal file
3
gssdp-1.0.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:211387a62bc1d99821dd0333d873a781320287f5436f91e58b2ca145b378be41
|
||||
size 316740
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 25 10:42:14 UTC 2019 - bjorn.lie@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.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 28 16:31:30 UTC 2018 - dimstar@opensuse.org
|
||||
|
||||
|
27
gssdp.spec
27
gssdp.spec
@ -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 @@ Group: Development/Libraries/C and C++
|
||||
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 @@ gssdp offers a GObject-based API for handling resource discovery and
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user