Accepting request 68892 from home:dimstar:branches:GNOME:Factory
Update to 0.1.0 OBS-URL: https://build.opensuse.org/request/show/68892 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libnice?expand=0&rev=23
This commit is contained in:
parent
7f889d3e2f
commit
11e019d5bf
12
_service
Normal file
12
_service
Normal file
@ -0,0 +1,12 @@
|
||||
<services>
|
||||
<service name="download_url">
|
||||
<param name="protocol">http</param>
|
||||
<param name="host">nice.freedesktop.org</param>
|
||||
<param name="path">/releases/libnice-0.1.0.tar.gz</param>
|
||||
</service>
|
||||
<service name="recompress">
|
||||
<param name="file">_service:download_url:*.tar.gz</param>
|
||||
<param name="compression">bz2</param>
|
||||
</service>
|
||||
<service name="set_version" />
|
||||
</services>
|
3
_service:recompress:download_url:libnice-0.1.0.tar.bz2
Normal file
3
_service:recompress:download_url:libnice-0.1.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:81ee8527b8be8a4b9ad609df087950b528c229d422f5eb9a3007f8948153eee7
|
||||
size 508038
|
124
_service:set_version:libnice.spec
Normal file
124
_service:set_version:libnice.spec
Normal file
@ -0,0 +1,124 @@
|
||||
#
|
||||
# spec file for package libnice (Version 0.0.13)
|
||||
#
|
||||
# Copyright (c) 2010 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/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: libnice
|
||||
Version: 0.1.0
|
||||
Release: 0
|
||||
License: LGPLv2.1+
|
||||
Group: System/Libraries
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if 0%{?suse_version} > 1030
|
||||
BuildRequires: gstreamer-0_10-devel
|
||||
%else
|
||||
BuildRequires: gstreamer010-devel
|
||||
%endif
|
||||
BuildRequires: glib2-devel openssl-devel
|
||||
BuildRequires: libgupnp-igd-devel
|
||||
Url: http://nice.freedesktop.org/
|
||||
Source: http://nice.freedesktop.org/releases/%{name}-%{version}.tar.bz2
|
||||
Summary: Interactive Connectivity Establishment implementation
|
||||
|
||||
%description
|
||||
libnice is an implementation of the IETF's draft Interactive
|
||||
Connectivity Establishment standard (ICE).
|
||||
|
||||
|
||||
|
||||
%package -n libnice10
|
||||
License: LGPLv2.1+
|
||||
Group: System/Libraries
|
||||
Summary: Interactive Connectivity Establishment implementation
|
||||
Recommends: gstreamer-0_10-libnice
|
||||
|
||||
%description -n libnice10
|
||||
libnice is an implementation of the IETF's draft Interactive
|
||||
Connectivity Establishment standard (ICE).
|
||||
|
||||
|
||||
|
||||
%package -n gstreamer-0_10-libnice
|
||||
License: LGPLv2.1+ ; MPL ..
|
||||
Group: System/Libraries
|
||||
Summary: Interactive Connectivity Establishment implementation - GStreamer plug-in
|
||||
|
||||
%description -n gstreamer-0_10-libnice
|
||||
libnice is an implementation of the IETF's draft Interactive
|
||||
Connectivity Establishment standard (ICE).
|
||||
|
||||
|
||||
|
||||
%package devel
|
||||
License: LGPLv2.1+
|
||||
Group: Development/Libraries/C and C++
|
||||
Summary: Interactive Connectivity Establishment implementation - development files
|
||||
Requires: libnice10 = %{version}
|
||||
Requires: glib2-devel
|
||||
Provides: libnice-doc = %{version}
|
||||
Obsoletes: libnice-doc < %{version}
|
||||
|
||||
%description devel
|
||||
libnice is an implementation of the IETF's draft Interactive
|
||||
Connectivity Establishment standard (ICE).
|
||||
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
%{__make}
|
||||
|
||||
%check
|
||||
%{__make} check
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
rm -f %{buildroot}/%{_libdir}/*.la
|
||||
rm -f %{buildroot}/%{_libdir}/gstreamer-0.10/*.la
|
||||
|
||||
%post -n libnice10 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libnice10 -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/*
|
||||
|
||||
%files -n libnice10
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_libdir}/*.so
|
||||
%{_includedir}/nice
|
||||
%{_includedir}/stun
|
||||
%{_datadir}/gtk-doc
|
||||
|
||||
%files -n gstreamer-0_10-libnice
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/gstreamer-0.10/*.so
|
||||
|
||||
%changelog
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:29f7a78253970a48b2aae9e46cad9e5c1c40e7d4cc72f48b35097541f8da77c9
|
||||
size 466595
|
@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 30 11:38:14 UTC 2011 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 0.1.0:
|
||||
+ Added nice_candidate_copy to the public API
|
||||
+ Make stun_timer timeouts configurable (Break API and ABI)
|
||||
+ Add compatibility support for MSOC 2007 and MSOC 2007 R2
|
||||
+ Add MS-TURN support for MSOC
|
||||
+ Added and completed TURN RFC 5766 support
|
||||
+ Add a nice_agent_set_port_range API to force a component to use
|
||||
a specific port
|
||||
+ Fix various bugs and memory leaks
|
||||
+ Improve documentation.
|
||||
- Use source services: download_url, recompress and set_version.
|
||||
- Change Obsoletes libnice-doc from <= to <: fix rpmlint warning.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 23 08:45:36 CEST 2010 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 0.0.13:
|
||||
+ Add support for IPv6
|
||||
+ Fix crc32 function conflict with libz.so
|
||||
+ Various bug fixing and code cleaning
|
||||
+ Validate the remote candidate address before adding it
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 21 12:48:09 CEST 2010 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 0.0.12:
|
||||
+ Update compatibility to RFC5245
|
||||
+ Fix a memory corruption bug
|
||||
+ Fix a possible buffer overflow with socks5 proxies
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 19 09:01:42 CET 2010 - dimstar@opensuse.org
|
||||
|
||||
|
22
libnice.spec
22
libnice.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package libnice (Version 0.0.11)
|
||||
# spec file for package libnice (Version 0.0.13)
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -19,9 +19,9 @@
|
||||
|
||||
|
||||
Name: libnice
|
||||
Version: 0.0.11
|
||||
Version: 0.0.13
|
||||
Release: 1
|
||||
License: LGPLv2.1+ ; MPL ..
|
||||
License: LGPLv2.1+
|
||||
Group: System/Libraries
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if 0%{?suse_version} > 1030
|
||||
@ -41,13 +41,13 @@ Connectivity Establishment standard (ICE).
|
||||
|
||||
|
||||
|
||||
%package -n libnice0
|
||||
%package -n libnice10
|
||||
License: LGPLv2.1+
|
||||
Group: System/Libraries
|
||||
Summary: Interactive Connectivity Establishment implementation
|
||||
Recommends: gstreamer-0_10-libnice
|
||||
|
||||
%description -n libnice0
|
||||
%description -n libnice10
|
||||
libnice is an implementation of the IETF's draft Interactive
|
||||
Connectivity Establishment standard (ICE).
|
||||
|
||||
@ -68,10 +68,10 @@ Connectivity Establishment standard (ICE).
|
||||
License: LGPLv2.1+
|
||||
Group: Development/Libraries/C and C++
|
||||
Summary: Interactive Connectivity Establishment implementation - development files
|
||||
Requires: libnice0 = %{version}
|
||||
Requires: libnice10 = %{version}
|
||||
Requires: glib2-devel
|
||||
Provides: libnice-doc = %{version}
|
||||
Obsoletes: libnice-doc <= %{version}
|
||||
Obsoletes: libnice-doc < %{version}
|
||||
|
||||
%description devel
|
||||
libnice is an implementation of the IETF's draft Interactive
|
||||
@ -87,16 +87,16 @@ Connectivity Establishment standard (ICE).
|
||||
%{__make}
|
||||
|
||||
%check
|
||||
#%{__make} check
|
||||
%{__make} check
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
rm -f %{buildroot}/%{_libdir}/*.la
|
||||
rm -f %{buildroot}/%{_libdir}/gstreamer-0.10/*.la
|
||||
|
||||
%post -n libnice0 -p /sbin/ldconfig
|
||||
%post -n libnice10 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libnice0 -p /sbin/ldconfig
|
||||
%postun -n libnice10 -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
@ -105,7 +105,7 @@ rm -f %{buildroot}/%{_libdir}/gstreamer-0.10/*.la
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/*
|
||||
|
||||
%files -n libnice0
|
||||
%files -n libnice10
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user