pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/libnice
Module Name: pkgsrc
Committed By: wiz
Date: Wed Apr 19 13:28:05 UTC 2017
Modified Files:
pkgsrc/net/libnice: Makefile Makefile.common PLIST buildlink3.mk
distinfo
Log Message:
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
To generate a diff of this commit:
cvs rdiff -u -r1.44 -r1.45 pkgsrc/net/libnice/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/net/libnice/Makefile.common
cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/libnice/PLIST
cvs rdiff -u -r1.24 -r1.25 pkgsrc/net/libnice/buildlink3.mk
cvs rdiff -u -r1.16 -r1.17 pkgsrc/net/libnice/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/libnice/Makefile
diff -u pkgsrc/net/libnice/Makefile:1.44 pkgsrc/net/libnice/Makefile:1.45
--- pkgsrc/net/libnice/Makefile:1.44 Sun Dec 4 05:17:10 2016
+++ pkgsrc/net/libnice/Makefile Wed Apr 19 13:28:05 2017
@@ -1,14 +1,10 @@
-# $NetBSD: Makefile,v 1.44 2016/12/04 05:17:10 ryoon Exp $
+# $NetBSD: Makefile,v 1.45 2017/04/19 13:28:05 wiz Exp $
-PKGREVISION= 4
.include "Makefile.common"
# introspection Makefile uses GNUisms
USE_TOOLS+= gmake
-# configure flag is broken in at least 0.1.13
-# http://phabricator.freedesktop.org/T127
-#CONFIGURE_ARGS+= --without-gstreamer
-CONFIGURE_ARGS+= have_gst_check=no
+CONFIGURE_ARGS+= --without-gstreamer
PKGCONFIG_OVERRIDE+= nice/nice.pc.in
Index: pkgsrc/net/libnice/Makefile.common
diff -u pkgsrc/net/libnice/Makefile.common:1.1 pkgsrc/net/libnice/Makefile.common:1.2
--- pkgsrc/net/libnice/Makefile.common:1.1 Tue Jul 14 09:16:47 2015
+++ pkgsrc/net/libnice/Makefile.common Wed Apr 19 13:28:05 2017
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.1 2015/07/14 09:16:47 wiz Exp $
+# $NetBSD: Makefile.common,v 1.2 2017/04/19 13:28:05 wiz Exp $
#
# used by net/libnice/Makefile
# used by net/gst-plugins1-libnice/Makefile
-DISTNAME= libnice-0.1.13
+DISTNAME= libnice-0.1.14
CATEGORIES= net devel
MASTER_SITES= http://nice.freedesktop.org/releases/
@@ -34,5 +34,7 @@ _WRAP_EXTRA_ARGS.CC+= -Wunused-but-set-v
CWRAPPERS_APPEND.cc+= -Wunused-but-set-variable
.endif
+BUILDLINK_API_DEPENDS.glib2+= glib2>=2.44.0
.include "../../devel/glib2/buildlink3.mk"
+.include "../../security/gnutls/buildlink3.mk"
.include "../../net/gupnp-igd/buildlink3.mk"
Index: pkgsrc/net/libnice/PLIST
diff -u pkgsrc/net/libnice/PLIST:1.10 pkgsrc/net/libnice/PLIST:1.11
--- pkgsrc/net/libnice/PLIST:1.10 Mon Jun 8 14:50:09 2015
+++ pkgsrc/net/libnice/PLIST Wed Apr 19 13:28:05 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2015/06/08 14:50:09 wiz Exp $
+@comment $NetBSD: PLIST,v 1.11 2017/04/19 13:28:05 wiz Exp $
bin/sdp-example
bin/simple-example
bin/stunbdc
@@ -36,7 +36,6 @@ share/gtk-doc/html/libnice/ch04.html
share/gtk-doc/html/libnice/ch05.html
share/gtk-doc/html/libnice/home.png
share/gtk-doc/html/libnice/index.html
-share/gtk-doc/html/libnice/index.sgml
share/gtk-doc/html/libnice/ix03.html
share/gtk-doc/html/libnice/ix04.html
share/gtk-doc/html/libnice/ix05.html
@@ -47,6 +46,7 @@ share/gtk-doc/html/libnice/ix09.html
share/gtk-doc/html/libnice/ix10.html
share/gtk-doc/html/libnice/ix11.html
share/gtk-doc/html/libnice/ix12.html
+share/gtk-doc/html/libnice/ix13.html
share/gtk-doc/html/libnice/left-insensitive.png
share/gtk-doc/html/libnice/left.png
share/gtk-doc/html/libnice/libnice-Bind.html
@@ -67,6 +67,7 @@ share/gtk-doc/html/libnice/pt03.html
share/gtk-doc/html/libnice/pt04.html
share/gtk-doc/html/libnice/right-insensitive.png
share/gtk-doc/html/libnice/right.png
+share/gtk-doc/html/libnice/states.png
share/gtk-doc/html/libnice/style.css
share/gtk-doc/html/libnice/up-insensitive.png
share/gtk-doc/html/libnice/up.png
Index: pkgsrc/net/libnice/buildlink3.mk
diff -u pkgsrc/net/libnice/buildlink3.mk:1.24 pkgsrc/net/libnice/buildlink3.mk:1.25
--- pkgsrc/net/libnice/buildlink3.mk:1.24 Sun Dec 4 05:17:10 2016
+++ pkgsrc/net/libnice/buildlink3.mk Wed Apr 19 13:28:05 2017
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.24 2016/12/04 05:17:10 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.25 2017/04/19 13:28:05 wiz Exp $
BUILDLINK_TREE+= libnice
@@ -6,10 +6,11 @@ BUILDLINK_TREE+= libnice
LIBNICE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libnice+= libnice>=0.0.9
-BUILDLINK_ABI_DEPENDS.libnice+= libnice>=0.1.13nb4
+BUILDLINK_ABI_DEPENDS.libnice+= libnice>=0.1.14
BUILDLINK_PKGSRCDIR.libnice?= ../../net/libnice
.include "../../devel/glib2/buildlink3.mk"
+.include "../../security/gnutls/buildlink3.mk"
.include "../../net/gupnp-igd/buildlink3.mk"
.endif # LIBNICE_BUILDLINK3_MK
Index: pkgsrc/net/libnice/distinfo
diff -u pkgsrc/net/libnice/distinfo:1.16 pkgsrc/net/libnice/distinfo:1.17
--- pkgsrc/net/libnice/distinfo:1.16 Wed Nov 4 00:35:09 2015
+++ pkgsrc/net/libnice/distinfo Wed Apr 19 13:28:05 2017
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.16 2015/11/04 00:35:09 agc Exp $
+$NetBSD: distinfo,v 1.17 2017/04/19 13:28:05 wiz Exp $
-SHA1 (libnice-0.1.13.tar.gz) = 6be9a2293651e273d82c0e97be38ec832b69a84c
-RMD160 (libnice-0.1.13.tar.gz) = 6294317aebb0fb7e5a5f76448172a2cc3ad97ac6
-SHA512 (libnice-0.1.13.tar.gz) = c9bb81e8cd0b4e3673dba07ce08a16dd8821831339b44f1006510cdc09f9ae4c6eb7d43230711a2509867acb8d7df71821c411830dbf71c5a5d7e802f14a32c1
-Size (libnice-0.1.13.tar.gz) = 912374 bytes
+SHA1 (libnice-0.1.14.tar.gz) = bc33999b547c14d40be42e67aa813b0d87bbd98f
+RMD160 (libnice-0.1.14.tar.gz) = e1e0bd020518852fbd78c2bd32dccb11592ed585
+SHA512 (libnice-0.1.14.tar.gz) = 58bd0e0f630f4f14fe4765f2dab24215d71d61a4e7dc260cdb34eb0254b3dcdc9ce3b6fb010800250fb85f91e06b1c48cfcdd6e18867324609ead17a9106d4dd
+Size (libnice-0.1.14.tar.gz) = 1024116 bytes
SHA1 (patch-ad) = abf11727342cbf5a48cdd394355ec2f93ce471f2
Home |
Main Index |
Thread Index |
Old Index