Wed Apr 19 13:28:05 2017 UTC ()
Updated libnice to 0.1.14.

libnice 0.1.14 (2017-04-03)
===========================
Improved RFC compliance
Split verbose logs into a separate option
Numerous bug fixes
Use GnuTLS for hash functions
Implement NewReno in PseudoTCP
Requires GLib 2.44 GnuTLS 2.12


(wiz)
diff -r1.44 -r1.45 pkgsrc/net/libnice/Makefile
diff -r1.1 -r1.2 pkgsrc/net/libnice/Makefile.common
diff -r1.10 -r1.11 pkgsrc/net/libnice/PLIST
diff -r1.24 -r1.25 pkgsrc/net/libnice/buildlink3.mk
diff -r1.16 -r1.17 pkgsrc/net/libnice/distinfo

cvs diff -r1.44 -r1.45 pkgsrc/net/libnice/Makefile (expand / switch to unified diff)

--- pkgsrc/net/libnice/Makefile 2016/12/04 05:17:10 1.44
+++ pkgsrc/net/libnice/Makefile 2017/04/19 13:28:05 1.45
@@ -1,16 +1,12 @@ @@ -1,16 +1,12 @@
1# $NetBSD: Makefile,v 1.44 2016/12/04 05:17:10 ryoon Exp $ 1# $NetBSD: Makefile,v 1.45 2017/04/19 13:28:05 wiz Exp $
2 2
3PKGREVISION= 4 
4.include "Makefile.common" 3.include "Makefile.common"
5 4
6# introspection Makefile uses GNUisms 5# introspection Makefile uses GNUisms
7USE_TOOLS+= gmake 6USE_TOOLS+= gmake
8# configure flag is broken in at least 0.1.13 7CONFIGURE_ARGS+= --without-gstreamer
9# http://phabricator.freedesktop.org/T127 
10#CONFIGURE_ARGS+= --without-gstreamer 
11CONFIGURE_ARGS+= have_gst_check=no 
12 8
13PKGCONFIG_OVERRIDE+= nice/nice.pc.in 9PKGCONFIG_OVERRIDE+= nice/nice.pc.in
14 10
15.include "../../devel/gobject-introspection/buildlink3.mk" 11.include "../../devel/gobject-introspection/buildlink3.mk"
16.include "../../mk/bsd.pkg.mk" 12.include "../../mk/bsd.pkg.mk"

cvs diff -r1.1 -r1.2 pkgsrc/net/libnice/Makefile.common (expand / switch to unified diff)

--- pkgsrc/net/libnice/Makefile.common 2015/07/14 09:16:47 1.1
+++ pkgsrc/net/libnice/Makefile.common 2017/04/19 13:28:05 1.2
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile.common,v 1.1 2015/07/14 09:16:47 wiz Exp $ 1# $NetBSD: Makefile.common,v 1.2 2017/04/19 13:28:05 wiz Exp $
2# 2#
3# used by net/libnice/Makefile 3# used by net/libnice/Makefile
4# used by net/gst-plugins1-libnice/Makefile 4# used by net/gst-plugins1-libnice/Makefile
5 5
6DISTNAME= libnice-0.1.13 6DISTNAME= libnice-0.1.14
7CATEGORIES= net devel 7CATEGORIES= net devel
8MASTER_SITES= http://nice.freedesktop.org/releases/ 8MASTER_SITES= http://nice.freedesktop.org/releases/
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://nice.freedesktop.org/wiki/ 11HOMEPAGE= http://nice.freedesktop.org/wiki/
12COMMENT= IETF's Interactive Connectivity Establishment standard implementation 12COMMENT= IETF's Interactive Connectivity Establishment standard implementation
13LICENSE= gnu-lgpl-v2.1 OR mpl-1.1 13LICENSE= gnu-lgpl-v2.1 OR mpl-1.1
14 14
15PATCHDIR= ${.CURDIR}/../../net/libnice/patches 15PATCHDIR= ${.CURDIR}/../../net/libnice/patches
16DISTINFO_FILE= ${.CURDIR}/../../net/libnice/distinfo 16DISTINFO_FILE= ${.CURDIR}/../../net/libnice/distinfo
17 17
18GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
19USE_LIBTOOL= yes 19USE_LIBTOOL= yes
@@ -24,15 +24,17 @@ USE_TOOLS+= pkg-config @@ -24,15 +24,17 @@ USE_TOOLS+= pkg-config
24.if ${OPSYS} == "SunOS" 24.if ${OPSYS} == "SunOS"
25USE_LANGUAGES+= c99 25USE_LANGUAGES+= c99
26.endif 26.endif
27 27
28BUILDLINK_TRANSFORM+= rm:-Werror 28BUILDLINK_TRANSFORM+= rm:-Werror
29 29
30.include "../../mk/compiler.mk" 30.include "../../mk/compiler.mk"
31 31
32.if !empty(PKGSRC_COMPILER:Mclang) 32.if !empty(PKGSRC_COMPILER:Mclang)
33_WRAP_EXTRA_ARGS.CC+= -Wunused-but-set-variable 33_WRAP_EXTRA_ARGS.CC+= -Wunused-but-set-variable
34CWRAPPERS_APPEND.cc+= -Wunused-but-set-variable 34CWRAPPERS_APPEND.cc+= -Wunused-but-set-variable
35.endif 35.endif
36 36
 37BUILDLINK_API_DEPENDS.glib2+= glib2>=2.44.0
37.include "../../devel/glib2/buildlink3.mk" 38.include "../../devel/glib2/buildlink3.mk"
 39.include "../../security/gnutls/buildlink3.mk"
38.include "../../net/gupnp-igd/buildlink3.mk" 40.include "../../net/gupnp-igd/buildlink3.mk"

cvs diff -r1.10 -r1.11 pkgsrc/net/libnice/PLIST (expand / switch to unified diff)

--- pkgsrc/net/libnice/PLIST 2015/06/08 14:50:09 1.10
+++ pkgsrc/net/libnice/PLIST 2017/04/19 13:28:05 1.11
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.10 2015/06/08 14:50:09 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.11 2017/04/19 13:28:05 wiz Exp $
2bin/sdp-example 2bin/sdp-example
3bin/simple-example 3bin/simple-example
4bin/stunbdc 4bin/stunbdc
5bin/stund 5bin/stund
6bin/threaded-example 6bin/threaded-example
7include/nice/address.h 7include/nice/address.h
8include/nice/agent.h 8include/nice/agent.h
9include/nice/candidate.h 9include/nice/candidate.h
10include/nice/debug.h 10include/nice/debug.h
11include/nice/interfaces.h 11include/nice/interfaces.h
12include/nice/nice.h 12include/nice/nice.h
13include/nice/pseudotcp.h 13include/nice/pseudotcp.h
14include/stun/constants.h 14include/stun/constants.h
@@ -26,47 +26,48 @@ lib/pkgconfig/nice.pc @@ -26,47 +26,48 @@ lib/pkgconfig/nice.pc
26share/gir-1.0/Nice-0.1.gir 26share/gir-1.0/Nice-0.1.gir
27share/gtk-doc/html/libnice/NiceAgent.html 27share/gtk-doc/html/libnice/NiceAgent.html
28share/gtk-doc/html/libnice/NiceCandidate.html 28share/gtk-doc/html/libnice/NiceCandidate.html
29share/gtk-doc/html/libnice/annotation-glossary.html 29share/gtk-doc/html/libnice/annotation-glossary.html
30share/gtk-doc/html/libnice/api-index-deprecated.html 30share/gtk-doc/html/libnice/api-index-deprecated.html
31share/gtk-doc/html/libnice/api-index-full.html 31share/gtk-doc/html/libnice/api-index-full.html
32share/gtk-doc/html/libnice/ch01.html 32share/gtk-doc/html/libnice/ch01.html
33share/gtk-doc/html/libnice/ch02.html 33share/gtk-doc/html/libnice/ch02.html
34share/gtk-doc/html/libnice/ch03.html 34share/gtk-doc/html/libnice/ch03.html
35share/gtk-doc/html/libnice/ch04.html 35share/gtk-doc/html/libnice/ch04.html
36share/gtk-doc/html/libnice/ch05.html 36share/gtk-doc/html/libnice/ch05.html
37share/gtk-doc/html/libnice/home.png 37share/gtk-doc/html/libnice/home.png
38share/gtk-doc/html/libnice/index.html 38share/gtk-doc/html/libnice/index.html
39share/gtk-doc/html/libnice/index.sgml 
40share/gtk-doc/html/libnice/ix03.html 39share/gtk-doc/html/libnice/ix03.html
41share/gtk-doc/html/libnice/ix04.html 40share/gtk-doc/html/libnice/ix04.html
42share/gtk-doc/html/libnice/ix05.html 41share/gtk-doc/html/libnice/ix05.html
43share/gtk-doc/html/libnice/ix06.html 42share/gtk-doc/html/libnice/ix06.html
44share/gtk-doc/html/libnice/ix07.html 43share/gtk-doc/html/libnice/ix07.html
45share/gtk-doc/html/libnice/ix08.html 44share/gtk-doc/html/libnice/ix08.html
46share/gtk-doc/html/libnice/ix09.html 45share/gtk-doc/html/libnice/ix09.html
47share/gtk-doc/html/libnice/ix10.html 46share/gtk-doc/html/libnice/ix10.html
48share/gtk-doc/html/libnice/ix11.html 47share/gtk-doc/html/libnice/ix11.html
49share/gtk-doc/html/libnice/ix12.html 48share/gtk-doc/html/libnice/ix12.html
 49share/gtk-doc/html/libnice/ix13.html
50share/gtk-doc/html/libnice/left-insensitive.png 50share/gtk-doc/html/libnice/left-insensitive.png
51share/gtk-doc/html/libnice/left.png 51share/gtk-doc/html/libnice/left.png
52share/gtk-doc/html/libnice/libnice-Bind.html 52share/gtk-doc/html/libnice/libnice-Bind.html
53share/gtk-doc/html/libnice/libnice-Debug-messages.html 53share/gtk-doc/html/libnice/libnice-Debug-messages.html
54share/gtk-doc/html/libnice/libnice-ICE.html 54share/gtk-doc/html/libnice/libnice-ICE.html
55share/gtk-doc/html/libnice/libnice-Network-interfaces-discovery.html 55share/gtk-doc/html/libnice/libnice-Network-interfaces-discovery.html
56share/gtk-doc/html/libnice/libnice-NiceAddress.html 56share/gtk-doc/html/libnice/libnice-NiceAddress.html
57share/gtk-doc/html/libnice/libnice-Pseudo-TCP-Socket.html 57share/gtk-doc/html/libnice/libnice-Pseudo-TCP-Socket.html
58share/gtk-doc/html/libnice/libnice-STUN-Constants.html 58share/gtk-doc/html/libnice/libnice-STUN-Constants.html
59share/gtk-doc/html/libnice/libnice-StunAgent.html 59share/gtk-doc/html/libnice/libnice-StunAgent.html
60share/gtk-doc/html/libnice/libnice-StunMessage.html 60share/gtk-doc/html/libnice/libnice-StunMessage.html
61share/gtk-doc/html/libnice/libnice-TURN.html 61share/gtk-doc/html/libnice/libnice-TURN.html
62share/gtk-doc/html/libnice/libnice-Timer.html 62share/gtk-doc/html/libnice/libnice-Timer.html
63share/gtk-doc/html/libnice/libnice.devhelp2 63share/gtk-doc/html/libnice/libnice.devhelp2
64share/gtk-doc/html/libnice/pt01.html 64share/gtk-doc/html/libnice/pt01.html
65share/gtk-doc/html/libnice/pt02.html 65share/gtk-doc/html/libnice/pt02.html
66share/gtk-doc/html/libnice/pt03.html 66share/gtk-doc/html/libnice/pt03.html
67share/gtk-doc/html/libnice/pt04.html 67share/gtk-doc/html/libnice/pt04.html
68share/gtk-doc/html/libnice/right-insensitive.png 68share/gtk-doc/html/libnice/right-insensitive.png
69share/gtk-doc/html/libnice/right.png 69share/gtk-doc/html/libnice/right.png
 70share/gtk-doc/html/libnice/states.png
70share/gtk-doc/html/libnice/style.css 71share/gtk-doc/html/libnice/style.css
71share/gtk-doc/html/libnice/up-insensitive.png 72share/gtk-doc/html/libnice/up-insensitive.png
72share/gtk-doc/html/libnice/up.png 73share/gtk-doc/html/libnice/up.png

cvs diff -r1.24 -r1.25 pkgsrc/net/libnice/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/net/libnice/buildlink3.mk 2016/12/04 05:17:10 1.24
+++ pkgsrc/net/libnice/buildlink3.mk 2017/04/19 13:28:05 1.25
@@ -1,16 +1,17 @@ @@ -1,16 +1,17 @@
1# $NetBSD: buildlink3.mk,v 1.24 2016/12/04 05:17:10 ryoon Exp $ 1# $NetBSD: buildlink3.mk,v 1.25 2017/04/19 13:28:05 wiz Exp $
2 2
3BUILDLINK_TREE+= libnice 3BUILDLINK_TREE+= libnice
4 4
5.if !defined(LIBNICE_BUILDLINK3_MK) 5.if !defined(LIBNICE_BUILDLINK3_MK)
6LIBNICE_BUILDLINK3_MK:= 6LIBNICE_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.libnice+= libnice>=0.0.9 8BUILDLINK_API_DEPENDS.libnice+= libnice>=0.0.9
9BUILDLINK_ABI_DEPENDS.libnice+= libnice>=0.1.13nb4 9BUILDLINK_ABI_DEPENDS.libnice+= libnice>=0.1.14
10BUILDLINK_PKGSRCDIR.libnice?= ../../net/libnice 10BUILDLINK_PKGSRCDIR.libnice?= ../../net/libnice
11 11
12.include "../../devel/glib2/buildlink3.mk" 12.include "../../devel/glib2/buildlink3.mk"
 13.include "../../security/gnutls/buildlink3.mk"
13.include "../../net/gupnp-igd/buildlink3.mk" 14.include "../../net/gupnp-igd/buildlink3.mk"
14.endif # LIBNICE_BUILDLINK3_MK 15.endif # LIBNICE_BUILDLINK3_MK
15 16
16BUILDLINK_TREE+= -libnice 17BUILDLINK_TREE+= -libnice

cvs diff -r1.16 -r1.17 pkgsrc/net/libnice/distinfo (expand / switch to unified diff)

--- pkgsrc/net/libnice/distinfo 2015/11/04 00:35:09 1.16
+++ pkgsrc/net/libnice/distinfo 2017/04/19 13:28:05 1.17
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.16 2015/11/04 00:35:09 agc Exp $ 1$NetBSD: distinfo,v 1.17 2017/04/19 13:28:05 wiz Exp $
2 2
3SHA1 (libnice-0.1.13.tar.gz) = 6be9a2293651e273d82c0e97be38ec832b69a84c 3SHA1 (libnice-0.1.14.tar.gz) = bc33999b547c14d40be42e67aa813b0d87bbd98f
4RMD160 (libnice-0.1.13.tar.gz) = 6294317aebb0fb7e5a5f76448172a2cc3ad97ac6 4RMD160 (libnice-0.1.14.tar.gz) = e1e0bd020518852fbd78c2bd32dccb11592ed585
5SHA512 (libnice-0.1.13.tar.gz) = c9bb81e8cd0b4e3673dba07ce08a16dd8821831339b44f1006510cdc09f9ae4c6eb7d43230711a2509867acb8d7df71821c411830dbf71c5a5d7e802f14a32c1 5SHA512 (libnice-0.1.14.tar.gz) = 58bd0e0f630f4f14fe4765f2dab24215d71d61a4e7dc260cdb34eb0254b3dcdc9ce3b6fb010800250fb85f91e06b1c48cfcdd6e18867324609ead17a9106d4dd
6Size (libnice-0.1.13.tar.gz) = 912374 bytes 6Size (libnice-0.1.14.tar.gz) = 1024116 bytes
7SHA1 (patch-ad) = abf11727342cbf5a48cdd394355ec2f93ce471f2 7SHA1 (patch-ad) = abf11727342cbf5a48cdd394355ec2f93ce471f2