Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Feb 2015 00:09:36 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378571 - in head/net: asterisk11 asterisk11/files asterisk13 asterisk13/files
Message-ID:  <201502070009.t1709aIZ022194@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: madpilot
Date: Sat Feb  7 00:09:35 2015
New Revision: 378571
URL: https://svnweb.freebsd.org/changeset/ports/378571
QAT: https://qat.redports.org/buildarchive/r378571/

Log:
  - Update net/asterisk11 to 11.16.0
  - Update net/asterisk13 to 13.2.0

Deleted:
  head/net/asterisk13/files/patch-channels_sip_include_route.h
Modified:
  head/net/asterisk11/Makefile
  head/net/asterisk11/distinfo
  head/net/asterisk11/files/patch-main__lock.c
  head/net/asterisk13/Makefile
  head/net/asterisk13/distinfo
  head/net/asterisk13/files/patch-main__lock.c
  head/net/asterisk13/pkg-plist

Modified: head/net/asterisk11/Makefile
==============================================================================
--- head/net/asterisk11/Makefile	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk11/Makefile	Sat Feb  7 00:09:35 2015	(r378571)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	asterisk
-PORTVERSION=	11.15.1
+PORTVERSION=	11.16.0
 CATEGORIES=	net
 MASTER_SITES=	http://downloads.asterisk.org/pub/telephony/asterisk/ \
 		http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/

Modified: head/net/asterisk11/distinfo
==============================================================================
--- head/net/asterisk11/distinfo	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk11/distinfo	Sat Feb  7 00:09:35 2015	(r378571)
@@ -1,2 +1,2 @@
-SHA256 (asterisk-11.15.1.tar.gz) = 54f02df8a8e40b05a338f686705a28349175f31e5c6b2ec9f44bef1042b78fca
-SIZE (asterisk-11.15.1.tar.gz) = 34974674
+SHA256 (asterisk-11.16.0.tar.gz) = f98da93ed0ffbdddfbc301351ea32e5a63d2dbecf05a4f97fb794a68a3bdbe4d
+SIZE (asterisk-11.16.0.tar.gz) = 34995495

Modified: head/net/asterisk11/files/patch-main__lock.c
==============================================================================
--- head/net/asterisk11/files/patch-main__lock.c	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk11/files/patch-main__lock.c	Sat Feb  7 00:09:35 2015	(r378571)
@@ -1,13 +1,12 @@
---- ./main/lock.c.orig	2010-11-06 15:00:15.000000000 +0100
-+++ ./main/lock.c	2010-11-06 15:00:23.000000000 +0100
-@@ -679,10 +679,6 @@
+--- main/lock.c.orig	2014-12-12 23:31:38 UTC
++++ main/lock.c
+@@ -701,9 +701,6 @@ int __ast_rwlock_init(int tracking, cons
+ #endif /* DEBUG_THREADS */
  
  	pthread_rwlockattr_init(&attr);
- 
 -#ifdef HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP
 -	pthread_rwlockattr_setkind_np(&attr, PTHREAD_RWLOCK_PREFER_WRITER_NP);
 -#endif
--
  	res = pthread_rwlock_init(&t->lock, &attr);
  	pthread_rwlockattr_destroy(&attr);
- 	return res;
+ 

Modified: head/net/asterisk13/Makefile
==============================================================================
--- head/net/asterisk13/Makefile	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk13/Makefile	Sat Feb  7 00:09:35 2015	(r378571)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	asterisk
-PORTVERSION=	13.1.1
+PORTVERSION=	13.2.0
 CATEGORIES=	net
 MASTER_SITES=	http://downloads.asterisk.org/pub/telephony/asterisk/ \
 		http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/

Modified: head/net/asterisk13/distinfo
==============================================================================
--- head/net/asterisk13/distinfo	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk13/distinfo	Sat Feb  7 00:09:35 2015	(r378571)
@@ -1,2 +1,2 @@
-SHA256 (asterisk-13.1.1.tar.gz) = 070b68238734117c0b9c1018ba192ff29964a115a71620e648d4286c92f2f02b
-SIZE (asterisk-13.1.1.tar.gz) = 31869064
+SHA256 (asterisk-13.2.0.tar.gz) = bcef6b30cf7bb1943b12939a4dc98a53f837a8f7ef564fe44cf73ea87e114a9b
+SIZE (asterisk-13.2.0.tar.gz) = 31951737

Modified: head/net/asterisk13/files/patch-main__lock.c
==============================================================================
--- head/net/asterisk13/files/patch-main__lock.c	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk13/files/patch-main__lock.c	Sat Feb  7 00:09:35 2015	(r378571)
@@ -1,13 +1,12 @@
---- main/lock.c.orig	2014-03-25 15:47:17 UTC
+--- main/lock.c.orig	2014-12-12 23:40:50 UTC
 +++ main/lock.c
-@@ -691,10 +691,6 @@ int __ast_rwlock_init(int tracking, cons
+@@ -701,9 +701,6 @@ int __ast_rwlock_init(int tracking, cons
+ #endif /* DEBUG_THREADS */
  
  	pthread_rwlockattr_init(&attr);
- 
 -#ifdef HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP
 -	pthread_rwlockattr_setkind_np(&attr, PTHREAD_RWLOCK_PREFER_WRITER_NP);
 -#endif
--
  	res = pthread_rwlock_init(&t->lock, &attr);
  	pthread_rwlockattr_destroy(&attr);
- 	return res;
+ 

Modified: head/net/asterisk13/pkg-plist
==============================================================================
--- head/net/asterisk13/pkg-plist	Fri Feb  6 23:27:41 2015	(r378570)
+++ head/net/asterisk13/pkg-plist	Sat Feb  7 00:09:35 2015	(r378571)
@@ -72,6 +72,7 @@
 @sample %%ETCDIR%%/phoneprov.conf.sample
 @sample %%ETCDIR%%/pjsip.conf.sample
 @sample %%ETCDIR%%/pjsip_notify.conf.sample
+@sample %%ETCDIR%%/pjsip_wizard.conf.sample
 @sample %%ETCDIR%%/queuerules.conf.sample
 @sample %%ETCDIR%%/queues.conf.sample
 @sample %%ETCDIR%%/res_config_mysql.conf.sample
@@ -354,6 +355,11 @@ lib/asterisk/modules/func_lock.so
 lib/asterisk/modules/func_module.so
 lib/asterisk/modules/func_periodic_hook.so
 %%PJSIP%%lib/asterisk/modules/func_pjsip_endpoint.so
+%%PJSIP%%lib/asterisk/modules/func_pjsip_aor.so
+%%PJSIP%%lib/asterisk/modules/func_pjsip_contact.so
+%%PJSIP%%lib/asterisk/modules/res_pjsip_config_wizard.so
+%%PJSIP%%lib/asterisk/modules/res_pjsip_keepalive.so
+%%PJSIP%%lib/asterisk/modules/res_pjsip_sips_contact.so
 lib/asterisk/modules/func_presencestate.so
 lib/asterisk/modules/func_shell.so
 lib/asterisk/modules/func_sorcery.so



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502070009.t1709aIZ022194>