[Pkg-voip-commits] r8928 - in /asterisk/trunk/debian: README.Debian changelog control patches/refix_bashism patches/series

tzafrir at alioth.debian.org tzafrir at alioth.debian.org
Tue May 3 14:18:26 UTC 2011


Author: tzafrir
Date: Tue May  3 14:18:08 2011
New Revision: 8928

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=8928
Log:
* NOT RELEASED YET
* Patch refix_bashism: bashism crept bact into the configure script
  (Jilles Tjoelker).

Added:
    asterisk/trunk/debian/patches/refix_bashism
Modified:
    asterisk/trunk/debian/README.Debian
    asterisk/trunk/debian/changelog
    asterisk/trunk/debian/control
    asterisk/trunk/debian/patches/series

Modified: asterisk/trunk/debian/README.Debian
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/README.Debian?rev=8928&op=diff
==============================================================================
--- asterisk/trunk/debian/README.Debian (original)
+++ asterisk/trunk/debian/README.Debian Tue May  3 14:18:08 2011
@@ -146,6 +146,73 @@
 Also note that the debug information for the IMAP and ODBC voicemail
 modules has an incorrect name. This may mean that traces using them may
 have invalid information.
+
+
+Recommended and Suggested
+=========================
+Asterisk includes various optional modules. The package asterisk-modules
+includes most of them (you can disable their load using noload in
+/etc/asterisk/modules.conf) yet some are still in their own
+sub-packages.
+
+Recommended
+-----------
+* sox:
+Recommended as it is used by MoxMonitor - the default command for mixing
+the two recorded streams to a single audio file, and by
+app_voicemail/app_minivm to change gains of a mail message.
+
+* asterisk-voicemail:
+Seprated out to sub-packages as there are several implementations of
+app_voicemail (plain files storage, ODBC-interfaced database storage,
+IMAP-interfaced mail storage). Only one of those three could be
+installed. app_voicemail is normally expected to exist on an
+installation of Asterisk and hence it is recommended to include one of
+them. The simple file-based stoorage requires no extra setup, and hence
+is the defaulr.
+
+* asterisk-moh-opsound-gsm:
+Some relatively long and not too annoying music files in a format
+readable to Asterisk should reside in /usr/share/asterisk/moh . Asterisk
+will then play them when putting a call on hold for whatever reason
+(extra tuning: musiconhold.conf). This package is one such example
+sounds set. It is recommended in order for Asterisk to properly function
+as an elevator.
+
+Suggested
+---------
+* asterisk-doc:
+Extra documentation. Including the sample config files.
+
+* asterisk-dev:
+Can be used to build external modules.
+
+* asterisk-ooh323:
+chan_ooh323c.so. A module for support of the H.323 protocol. An
+alternative to chan_h323.so. Seems to be in better shape and has a much
+smaller dependency set.
+
+* asterisk-dahdi:
+chan_dahdi.so and anything else that depends on DAHDI (MeetMe,
+res_timing_dahdi, codec_dahdi, and such). You should install this if you
+have DAHDI support (kernel-level) on your system.
+
+
+Others
+------
+* asterisk-h323:
+chan_h323.so. Maybe consider this instead of asterisk-ooh323, which
+upstream seems to prefer.
+
+* asterisk-mysql:
+Direct (non-ODBC) support for MySQL.
+
+* asterisk-mp3:
+Support for playing mp3 files
+
+* asterisk-mobile:
+chan_mobile: support for interfacing with bluetooth headsets/phones. Has
+its limitations.
 
 
 Missing Modules

Modified: asterisk/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/changelog?rev=8928&op=diff
==============================================================================
--- asterisk/trunk/debian/changelog (original)
+++ asterisk/trunk/debian/changelog Tue May  3 14:18:08 2011
@@ -1,3 +1,11 @@
+asterisk (1:1.8.3.3-2) UNRELEASED; urgency=low
+
+  * NOT RELEASED YET
+  * Patch refix_bashism: bashism crept bact into the configure script
+    (Jilles Tjoelker).
+
+ -- Tzafrir Cohen <tzafrir at debian.org>  Tue, 03 May 2011 16:48:41 +0300
+
 asterisk (1:1.8.3.3-1) unstable; urgency=high
 
   [ Tzafrir Cohen ]

Modified: asterisk/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/control?rev=8928&op=diff
==============================================================================
--- asterisk/trunk/debian/control (original)
+++ asterisk/trunk/debian/control Tue May  3 14:18:08 2011
@@ -56,7 +56,7 @@
 
 Package: asterisk
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, asterisk-config (= ${source:Version}) | asterisk-config-custom, asterisk-modules (= ${binary:Version}), adduser, asterisk-core-sounds-en-gsm | asterisk-prompt-en, asterisk-voicemail | asterisk-voicemail-odbcstorage | asterisk-voicemail-imapstorage 
+Depends: ${shlibs:Depends}, ${misc:Depends}, asterisk-config (= ${source:Version}) | asterisk-config-custom, asterisk-modules (= ${binary:Version}), adduser, asterisk-core-sounds-en-gsm | asterisk-prompt-en
 Provides: asterisk-1.8
 Recommends: sox, asterisk-voicemail | asterisk-voicemail-storage, asterisk-moh-opsound-gsm
 Suggests: asterisk-doc, asterisk-dev, asterisk-ooh323, asterisk-dahdi

Added: asterisk/trunk/debian/patches/refix_bashism
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/patches/refix_bashism?rev=8928&op=file
==============================================================================
--- asterisk/trunk/debian/patches/refix_bashism (added)
+++ asterisk/trunk/debian/patches/refix_bashism Tue May  3 14:18:08 2011
@@ -1,0 +1,35 @@
+From: Tzafrir Cohen <tzafrir.cohen at xorcom.com>
+Date: Tue, 3 May 2011 10:57:16 +0000
+Subject: Re-fix bashism in ./configure: s/let/$(( ))/
+Origin: http://svnview.digium.com/svn/asterisk?view=rev&rev=316193
+Bug: https://issues.asterisk.org/view.php?id=17485
+
+A forward-port in r278985 accidentally re-introduced issue 17485. Fixing
+it. Thanks to Jilles Tjoelker for the good report.
+
+Already applied in the upstream 1.8 branch. Will probably be included in
+1.8.5.
+
+---
+ autoconf/ast_check_pwlib.m4 |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/autoconf/ast_check_pwlib.m4 b/autoconf/ast_check_pwlib.m4
+index 98f3eb7..ecacddb 100644
+--- a/autoconf/ast_check_pwlib.m4
++++ b/autoconf/ast_check_pwlib.m4
+@@ -205,9 +205,9 @@ AC_DEFUN([AST_CHECK_PWLIB_VERSION], [
+ 		$2_VER=$((${$2_MAJOR_VERSION}*10000+${$2_MINOR_VERSION}*100+${$2_BUILD_NUMBER}))
+ 		$2_REQ=$(($4*10000+$5*100+$6))
+ 		if test "x$10" = "x"; then
+-			let $2_MAX=9999999
++			$2_MAX=9999999
+ 		else
+-			let $2_MAX=$8*10000+$9*100+$10
++			$2_MAX=$(($8*10000+$9*100+$10))
+ 		fi
+ 
+ 		AC_MSG_CHECKING(if $1 version ${$2_VERSION} is compatible with chan_h323)
+-- 
+1.7.4.4
+

Modified: asterisk/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/patches/series?rev=8928&op=diff
==============================================================================
--- asterisk/trunk/debian/patches/series (original)
+++ asterisk/trunk/debian/patches/series Tue May  3 14:18:08 2011
@@ -21,3 +21,4 @@
 gmime-2.4
 openssl10
 no_ssl2
+refix_bashism




More information about the Pkg-voip-commits mailing list