[asterisk/f14/master] * Wed Aug 11 2010 Jeffrey C. Ollie <jeff at ocjtech.us> - 1.6.2.11-1 - - The following are a few of the

Jeffrey C. Ollie jcollie at fedoraproject.org
Wed Aug 11 16:20:05 UTC 2010


commit 080d387c6bd131306e6e1c76f2c131b5f836773f
Author: Jeffrey C. Ollie <jeff at ocjtech.us>
Date:   Wed Aug 11 11:19:57 2010 -0500

    * Wed Aug 11 2010 Jeffrey C. Ollie <jeff at ocjtech.us> - 1.6.2.11-1
    -
    - The following are a few of the issues resolved by community developers:
    -
    -  * Send DialPlanComplete as a response, not as a separate event. Otherwise, it
    -    goes to all manager sessions and may exclude the current session, if the
    -    Events mask excludes it.
    -    (Closes issue #17504. Reported, patched by rrb3942)
    -
    -  * Allow the "useragent" value to be restored into memory from the realtime
    -    backend. This value is purely informational. It does not alter configuration
    -    at all.
    -    (Closes issue #16029. Reported, patched by Guggemand)
    -
    -  * Fix rt(c)p set debug ip taking wrong argument Also clean up some coding
    -    errors.
    -    (Closes issue #17469. Reported, patched by wdoekes)
    -
    -  * Ensure channel placed in meetme in ringing state is properly hung up. An
    -    outgoing channel placed in meetme while still ringing which was then hung up
    -    would not exit meetme and the channel was not properly destroyed.
    -    (Closes issue #15871. Reported, patched by Ivan)
    -
    -  * Correct how 100, 200, 300, etc. is said. Also add the crazy British numbers.
    -    (Closes issue #16102. Reported, patched by Delvar)
    -
    -  * cdr_pgsql does not detect when a table is found. This change adds an ERROR
    -    message to let you know when a failure exists to get the columns from the
    -    pgsql database, which typically means that the table does not exist.
    -    (Closes issue #17478. Reported, patched by kobaz)
    -
    -  * Avoid crashing when installing a duplicate translation path with a lower
    -    cost.
    -    (Closes issue #17092. Reported, patched by moy)
    -
    -  * Add missing handling for ringing state for use with queue empty options.
    -    (Closes issue #17471. Reported, patched by jazzy)
    -
    -  * Fix reporting estimated queue hold time. Just say the number of seconds
    -    (after minutes) rather than doing some incorrect calculation with respect to
    -    minutes.
    -    (Closes issue #17498. Reported, patched by corruptor)
    -
    - For a full list of changes in the current release, please see the
    - ChangeLog:
    -
    - http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-1.6.2.11

 .gitignore                                         |    2 +
 ...it-scripts-for-better-Fedora-compatibilty.patch |    4 +-
 ...les.conf-so-that-different-voicemail-modu.patch |    4 +-
 ...king-building-against-an-external-libedit.patch |    4 +-
 ...rary-function-for-loading-command-history.patch |    6 +-
 ...igure.ac-to-look-for-pkg-config-gmime-2.0.patch |    4 +-
 0006-Fix-up-some-paths.patch                       |    4 +-
 ...hema-that-is-compatible-with-Fedora-Direc.patch |    4 +-
 ...2html-to-copy-icons-when-building-documen.patch |    4 +-
 asterisk.spec                                      |   80 +++++++++++++++++++-
 sources                                            |    4 +-
 11 files changed, 98 insertions(+), 22 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4c8f5db..685ab39 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
 asterisk-1.6.2.10.tar.gz
 asterisk-1.6.2.10.tar.gz.asc
+asterisk-1.6.2.11.tar.gz
+asterisk-1.6.2.11.tar.gz.asc
diff --git a/0001-Modify-init-scripts-for-better-Fedora-compatibilty.patch b/0001-Modify-init-scripts-for-better-Fedora-compatibilty.patch
index 46c6e72..580101d 100644
--- a/0001-Modify-init-scripts-for-better-Fedora-compatibilty.patch
+++ b/0001-Modify-init-scripts-for-better-Fedora-compatibilty.patch
@@ -1,4 +1,4 @@
-From ed8a94405e46074833a9fc0e7b09db428d3afecd Mon Sep 17 00:00:00 2001
+From ddbed41005f04d07e5c0d4050fcad9e11eddb7c3 Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Wed, 28 Jul 2010 07:22:21 -0500
 Subject: [PATCH 1/8] Modify init scripts for better Fedora compatibilty.
@@ -168,5 +168,5 @@ index 0000000..dab2e33
 +# A place to specify extra arguments for the Asterisk command line
 +AST_EXTRA_ARGS=""
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0002-Modify-modules.conf-so-that-different-voicemail-modu.patch b/0002-Modify-modules.conf-so-that-different-voicemail-modu.patch
index 7f96be4..7ac5424 100644
--- a/0002-Modify-modules.conf-so-that-different-voicemail-modu.patch
+++ b/0002-Modify-modules.conf-so-that-different-voicemail-modu.patch
@@ -1,4 +1,4 @@
-From d21028cd015ad28165533a007d49377cbec11bac Mon Sep 17 00:00:00 2001
+From c585c45d9e9d2ef30bd1db15454ef707fc22559b Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Wed, 28 Jul 2010 07:23:49 -0500
 Subject: [PATCH 2/8] Modify modules.conf so that different voicemail modules don't load at the same time.
@@ -42,5 +42,5 @@ index 5b553a4..39645c3 100644
 +;noload => app_directory_plain.so
 +;noload => app_voicemail_plain.so
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0003-Allow-linking-building-against-an-external-libedit.patch b/0003-Allow-linking-building-against-an-external-libedit.patch
index 7cd8ab9..d999178 100644
--- a/0003-Allow-linking-building-against-an-external-libedit.patch
+++ b/0003-Allow-linking-building-against-an-external-libedit.patch
@@ -1,4 +1,4 @@
-From 61006b2d0679cadf369ce6028cf98ebf722db600 Mon Sep 17 00:00:00 2001
+From 4e386d0c25bfbc3c1df0aa18a9d9ab8811cdbb3e Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Fri, 5 Mar 2010 14:10:52 -0600
 Subject: [PATCH 3/8] Allow linking/building against an external libedit.
@@ -134,5 +134,5 @@ index 8de43af..9b6f757 100644
 +LIBEDIT_LIB=@LIBEDIT_LIB@
 +LIBEDIT_OBJ=@LIBEDIT_OBJ@
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0004-Use-the-library-function-for-loading-command-history.patch b/0004-Use-the-library-function-for-loading-command-history.patch
index 393ba4f..1a2c229 100644
--- a/0004-Use-the-library-function-for-loading-command-history.patch
+++ b/0004-Use-the-library-function-for-loading-command-history.patch
@@ -1,4 +1,4 @@
-From 98d1fbfcafae782ac728c0e0445917aaf20f37e1 Mon Sep 17 00:00:00 2001
+From ecc63fc573595b3dced950c32a7ad83e49c0325d Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Mon, 8 Mar 2010 12:38:56 -0600
 Subject: [PATCH 4/8] Use the library function for loading command history rather than implementing our own.
@@ -8,7 +8,7 @@ Subject: [PATCH 4/8] Use the library function for loading command history rather
  1 files changed, 2 insertions(+), 19 deletions(-)
 
 diff --git a/main/asterisk.c b/main/asterisk.c
-index 67dbfa8..4327d99 100644
+index c51e8cc..dda3550 100644
 --- a/main/asterisk.c
 +++ b/main/asterisk.c
 @@ -2596,29 +2596,12 @@ static int ast_el_write_history(char *filename)
@@ -44,5 +44,5 @@ index 67dbfa8..4327d99 100644
  
  static void ast_remotecontrol(char *data)
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0005-Change-configure.ac-to-look-for-pkg-config-gmime-2.0.patch b/0005-Change-configure.ac-to-look-for-pkg-config-gmime-2.0.patch
index 814add4..c0af33d 100644
--- a/0005-Change-configure.ac-to-look-for-pkg-config-gmime-2.0.patch
+++ b/0005-Change-configure.ac-to-look-for-pkg-config-gmime-2.0.patch
@@ -1,4 +1,4 @@
-From e9e1c379941a4de1e0c1e63df81f44d9c0562ad9 Mon Sep 17 00:00:00 2001
+From a4d4328141d83ff43082cd1ac9c050b31f6db819 Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Wed, 28 Jul 2010 07:26:02 -0500
 Subject: [PATCH 5/8] Change configure.ac to look for pkg-config gmime-2.0
@@ -31,5 +31,5 @@ index 1b3f9c7..ce02844 100644
  AST_EXT_LIB_CHECK([HOARD], [hoard], [malloc], [])
  
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0006-Fix-up-some-paths.patch b/0006-Fix-up-some-paths.patch
index 3c090bc..ba1f48a 100644
--- a/0006-Fix-up-some-paths.patch
+++ b/0006-Fix-up-some-paths.patch
@@ -1,4 +1,4 @@
-From 366115a2031ce0f388826216a8602e2fc2d47fcf Mon Sep 17 00:00:00 2001
+From 7c011931f00232148a500f51c0ec94edaac8b383 Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Wed, 28 Jul 2010 07:27:48 -0500
 Subject: [PATCH 6/8] Fix up some paths
@@ -607,5 +607,5 @@ index 07ae29e..70956d4 100644
  exten => 762,1,agi(tts-riddle.agi)
  exten => 762,2,Background(gsm/what-time-it-is2)
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0007-Add-LDAP-schema-that-is-compatible-with-Fedora-Direc.patch b/0007-Add-LDAP-schema-that-is-compatible-with-Fedora-Direc.patch
index 6248c9d..a666824 100644
--- a/0007-Add-LDAP-schema-that-is-compatible-with-Fedora-Direc.patch
+++ b/0007-Add-LDAP-schema-that-is-compatible-with-Fedora-Direc.patch
@@ -1,4 +1,4 @@
-From 88a8723215b9c27ece6c18d7ef6019a50b0178af Mon Sep 17 00:00:00 2001
+From e61133a934d4f7ac8f3b9eb3c36cafcba575b900 Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Sun, 4 Jan 2009 19:22:39 -0600
 Subject: [PATCH 7/8] Add LDAP schema that is compatible with Fedora Directory Server.
@@ -504,5 +504,5 @@ index 0000000..f3bdf4e
 +      $ AstConfigVariableName $ AstConfigVariableValue $ AstConfigCommented )
 +  )
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/0008-Tell-laxtex2html-to-copy-icons-when-building-documen.patch b/0008-Tell-laxtex2html-to-copy-icons-when-building-documen.patch
index 46c49bc..ea1d2d1 100644
--- a/0008-Tell-laxtex2html-to-copy-icons-when-building-documen.patch
+++ b/0008-Tell-laxtex2html-to-copy-icons-when-building-documen.patch
@@ -1,4 +1,4 @@
-From 9bba846cd52ec6d026daec14b8c65bb1a38711b3 Mon Sep 17 00:00:00 2001
+From 96ce7c2e4bae79fd49c171d0966270edac8b0c5b Mon Sep 17 00:00:00 2001
 From: Jeffrey C. Ollie <jeff at ocjtech.us>
 Date: Wed, 28 Jul 2010 07:32:19 -0500
 Subject: [PATCH 8/8] Tell laxtex2html to copy icons when building documentation so that we don't have run-time dependencies on latex2html.
@@ -21,5 +21,5 @@ index 4add45a..e448c95 100644
  
  txt: asterisk.txt
 -- 
-1.7.2
+1.7.2.1
 
diff --git a/asterisk.spec b/asterisk.spec
index 0412d22..349ea21 100644
--- a/asterisk.spec
+++ b/asterisk.spec
@@ -1,7 +1,7 @@
 #global _rc 1
 Summary: The Open Source PBX
 Name: asterisk
-Version: 1.6.2.10
+Version: 1.6.2.11
 Release: 1%{?_rc:.rc%{_rc}}%{?dist}
 License: GPLv2
 Group: Applications/Internet
@@ -966,7 +966,7 @@ fi
 %defattr(-,root,root,-)
 %attr(0640,asterisk,asterisk) %config(noreplace) %{_sysconfdir}/asterisk/cdr_pgsql.conf
 %attr(0640,asterisk,asterisk) %config(noreplace) %{_sysconfdir}/asterisk/res_pgsql.conf
-%doc contrib/scripts/realtime_pgsql.sql
+%doc contrib/realtime/postgresql/realtime.sql
 %{_libdir}/asterisk/modules/cdr_pgsql.so
 %{_libdir}/asterisk/modules/res_config_pgsql.so
 
@@ -1035,8 +1035,82 @@ fi
 %{_libdir}/asterisk/modules/app_voicemail_plain.so
 
 %changelog
+* Wed Aug 11 2010 Jeffrey C. Ollie <jeff at ocjtech.us> - 1.6.2.11-1
+-
+- The following are a few of the issues resolved by community developers:
+-
+-  * Send DialPlanComplete as a response, not as a separate event. Otherwise, it
+-    goes to all manager sessions and may exclude the current session, if the
+-    Events mask excludes it.
+-    (Closes issue #17504. Reported, patched by rrb3942)
+-
+-  * Allow the "useragent" value to be restored into memory from the realtime
+-    backend. This value is purely informational. It does not alter configuration
+-    at all.
+-    (Closes issue #16029. Reported, patched by Guggemand)
+-
+-  * Fix rt(c)p set debug ip taking wrong argument Also clean up some coding
+-    errors.
+-    (Closes issue #17469. Reported, patched by wdoekes)
+-
+-  * Ensure channel placed in meetme in ringing state is properly hung up. An
+-    outgoing channel placed in meetme while still ringing which was then hung up
+-    would not exit meetme and the channel was not properly destroyed.
+-    (Closes issue #15871. Reported, patched by Ivan)
+-
+-  * Correct how 100, 200, 300, etc. is said. Also add the crazy British numbers.
+-    (Closes issue #16102. Reported, patched by Delvar)
+-
+-  * cdr_pgsql does not detect when a table is found. This change adds an ERROR
+-    message to let you know when a failure exists to get the columns from the
+-    pgsql database, which typically means that the table does not exist.
+-    (Closes issue #17478. Reported, patched by kobaz)
+-
+-  * Avoid crashing when installing a duplicate translation path with a lower
+-    cost.
+-    (Closes issue #17092. Reported, patched by moy)
+-
+-  * Add missing handling for ringing state for use with queue empty options.
+-    (Closes issue #17471. Reported, patched by jazzy)
+-
+-  * Fix reporting estimated queue hold time. Just say the number of seconds
+-    (after minutes) rather than doing some incorrect calculation with respect to
+-    minutes.
+-    (Closes issue #17498. Reported, patched by corruptor)
+-
+- For a full list of changes in the current release, please see the
+- ChangeLog:
+-
+- http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-1.6.2.11
+
 * Sat Jul 31 2010 Jeffrey C. Ollie <jeff at ocjtech.us> - 1.6.2.10-1
-- Update to 1.6.2.10
+-
+- The following are a few of the issues resolved by community developers:
+-
+-  * Allow users to specify a port for DUNDI peers.
+-    (Closes issue #17056. Reported, patched by klaus3000)
+-
+-  * Decrease the module ref count in sip_hangup when SIP_DEFER_BYE_ON_TRANSFER is
+-    set.
+-    (Closes issue #16815. Reported, patched by rain)
+-
+-  * If there is realtime configuration, it does not get re-read on reload unless
+-    the config file also changes.
+-    (Closes issue #16982. Reported, patched by dmitri)
+-
+-  * Send AgentComplete manager event for attended transfers.
+-    (Closes issue #16819. Reported, patched by elbriga)
+-
+-  * Correct manager variable 'EventList' case.
+-    (Closes issue #17520. Reported, patched by kobaz)
+-
+- In addition, changes to res_timing_pthread that should make it more stable have
+- also been implemented.
+-
+- For a full list of changes in the current release, please see the
+- ChangeLog:
+-
+- http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-1.6.2.10
 
 * Wed Jul 14 2010 Jeffrey C. Ollie <jeff at ocjtech.us> - 1.6.2.8-0.3.rc1
 - Add patch to remove requirement on latex2html
diff --git a/sources b/sources
index d286555..fb04c59 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-50412a90942ae7306fb8dcc31a05c2ce  asterisk-1.6.2.10.tar.gz
-c04a5e701ef88fda2ebff04cd32428ce  asterisk-1.6.2.10.tar.gz.asc
+2d6757a0354cff87c9e1776ada077aae  asterisk-1.6.2.11.tar.gz
+e0d375b67fda09b12ee12022bb6d4fdb  asterisk-1.6.2.11.tar.gz.asc


More information about the scm-commits mailing list