This commit is contained in:
parent
dfc067b634
commit
c634ff706f
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d4bdb2ffdae5eb66a05becb6db0509fc0e90e8a2f2107172a2c589231dbf820c
|
|
||||||
size 391803
|
|
3
libnice-0.0.5.tar.bz2
Normal file
3
libnice-0.0.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3f1ac5cceaf2136699a980e793124cac6cb40d6384c8b4540904b9fe7083c40f
|
||||||
|
size 447551
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 6 16:44:33 CET 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Update to version 0.0.5:
|
||||||
|
+ Name change from nice to libnice
|
||||||
|
+ Added support for HTTP proxies
|
||||||
|
+ Added a nice_interfaces API to query the local interfaces/ips
|
||||||
|
+ Fixed libnice when used in dribble mode
|
||||||
|
+ Fix a data corruption issue with the SHA1 algorithm
|
||||||
|
+ Endianness gets checked at runtime so libnice should compile
|
||||||
|
and work everywhere
|
||||||
|
+ Add compatiblity for WLM2009 ICE
|
||||||
|
+ Export libstun API and add documentation for libstun
|
||||||
|
+ Add connectivity checks during the connection to detect when
|
||||||
|
the peer gets disconnected
|
||||||
|
+ Bug fixes and code cleaning
|
||||||
|
- Adjust spec file for tarball rename.
|
||||||
|
- Package new include files in /usr/include/stun
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 6 12:00:28 EST 2009 - hfiguiere@novell.com
|
Fri Feb 6 12:00:28 EST 2009 - hfiguiere@novell.com
|
||||||
|
|
||||||
|
37
libnice.spec
37
libnice.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libnice (Version 0.0.4)
|
# spec file for package libnice (Version 0.0.5)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: libnice
|
Name: libnice
|
||||||
Version: 0.0.4
|
Version: 0.0.5
|
||||||
Release: 3
|
Release: 1
|
||||||
License: LGPL v2.1 or later; MOZILLA PUBLIC LICENSE (MPL/NPL)
|
License: LGPL v2.1 or later; MOZILLA PUBLIC LICENSE (MPL/NPL)
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -47,8 +47,8 @@ Summary: Interactive Connectivity Establishment implementation
|
|||||||
Recommends: gstreamer-0_10-libnice
|
Recommends: gstreamer-0_10-libnice
|
||||||
|
|
||||||
%description -n libnice0
|
%description -n libnice0
|
||||||
Nice is an implementation of the IETF's draft Interactive Connectivity
|
libnice is an implementation of the IETF's draft Interactive
|
||||||
Establishment standard (ICE).
|
Connectivity Establishment standard (ICE).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -70,8 +70,8 @@ Requires: libnice0 = %{version}
|
|||||||
Summary: Interactive Connectivity Establishment implementation - documentation files
|
Summary: Interactive Connectivity Establishment implementation - documentation files
|
||||||
|
|
||||||
%description doc
|
%description doc
|
||||||
Nice is an implementation of the IETF's draft Interactive Connectivity
|
libnice is an implementation of the IETF's draft Interactive
|
||||||
Establishment standard (ICE).
|
Connectivity Establishment standard (ICE).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -82,13 +82,13 @@ Requires: libnice0 = %{version}
|
|||||||
Summary: Interactive Connectivity Establishment implementation - development files
|
Summary: Interactive Connectivity Establishment implementation - development files
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Nice is an implementation of the IETF's draft Interactive Connectivity
|
libnice is an implementation of the IETF's draft Interactive
|
||||||
Establishment standard (ICE).
|
Connectivity Establishment standard (ICE).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n nice-%{version}
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
@ -122,6 +122,7 @@ rm -f %{buildroot}/%{_libdir}/gstreamer-0.10/*.la
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_includedir}/nice
|
%{_includedir}/nice
|
||||||
|
%{_includedir}/stun
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@ -132,6 +133,22 @@ rm -f %{buildroot}/%{_libdir}/gstreamer-0.10/*.la
|
|||||||
%{_libdir}/gstreamer-0.10/*.so
|
%{_libdir}/gstreamer-0.10/*.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Mar 06 2009 vuntz@novell.com
|
||||||
|
- Update to version 0.0.5:
|
||||||
|
+ Name change from nice to libnice
|
||||||
|
+ Added support for HTTP proxies
|
||||||
|
+ Added a nice_interfaces API to query the local interfaces/ips
|
||||||
|
+ Fixed libnice when used in dribble mode
|
||||||
|
+ Fix a data corruption issue with the SHA1 algorithm
|
||||||
|
+ Endianness gets checked at runtime so libnice should compile
|
||||||
|
and work everywhere
|
||||||
|
+ Add compatiblity for WLM2009 ICE
|
||||||
|
+ Export libstun API and add documentation for libstun
|
||||||
|
+ Add connectivity checks during the connection to detect when
|
||||||
|
the peer gets disconnected
|
||||||
|
+ Bug fixes and code cleaning
|
||||||
|
- Adjust spec file for tarball rename.
|
||||||
|
- Package new include files in /usr/include/stun
|
||||||
* Fri Feb 06 2009 hfiguiere@novell.com
|
* Fri Feb 06 2009 hfiguiere@novell.com
|
||||||
- Don't require itself.
|
- Don't require itself.
|
||||||
- The -doc don't require the library.
|
- The -doc don't require the library.
|
||||||
|
Loading…
Reference in New Issue
Block a user