[Pkg-voip-commits] r2217 - in asterisk-chan-capi/trunk/debian: . patches

Mark Purcell msp at costa.debian.org
Thu Aug 10 21:23:55 UTC 2006


Author: msp
Date: 2006-08-10 21:23:53 +0000 (Thu, 10 Aug 2006)
New Revision: 2217

Removed:
   asterisk-chan-capi/trunk/debian/patches/02_kernel_post_2.6.10_fix.dpatch
Modified:
   asterisk-chan-capi/trunk/debian/changelog
   asterisk-chan-capi/trunk/debian/control
   asterisk-chan-capi/trunk/debian/patches/00list
   asterisk-chan-capi/trunk/debian/rules
   asterisk-chan-capi/trunk/debian/watch
Log:
* New upstream release
  - Please package version 0.7.0 (Closes: #382346)
* Drop 02_kernel_post_2.6.10_fix.dpatch
* Update debian/control
* Update debian/watch
* Build system tries to select "-march=FOO" CFLAG; that's b0rken
  (Closes: #357012)

Modified: asterisk-chan-capi/trunk/debian/changelog
===================================================================
--- asterisk-chan-capi/trunk/debian/changelog	2006-08-10 19:15:18 UTC (rev 2216)
+++ asterisk-chan-capi/trunk/debian/changelog	2006-08-10 21:23:53 UTC (rev 2217)
@@ -1,8 +1,14 @@
-asterisk-chan-capi (0.6.5-2) UNRELEASED; urgency=low
+asterisk-chan-capi (0.7.0-1) unstable; urgency=low
 
-  * NOT RELEASED YET
+  * New upstream release
+    - Please package version 0.7.0 (Closes: #382346)
+  * Drop 02_kernel_post_2.6.10_fix.dpatch
+  * Update debian/control
+  * Update debian/watch
+  * Build system tries to select "-march=FOO" CFLAG; that's b0rken
+    (Closes: #357012)
 
- -- Mark Purcell <msp at debian.org>  Sat,  6 May 2006 16:35:55 +0100
+ -- Mark Purcell <msp at debian.org>  Thu, 10 Aug 2006 22:20:58 +0100
 
 asterisk-chan-capi (0.6.5-1) unstable; urgency=low
 

Modified: asterisk-chan-capi/trunk/debian/control
===================================================================
--- asterisk-chan-capi/trunk/debian/control	2006-08-10 19:15:18 UTC (rev 2216)
+++ asterisk-chan-capi/trunk/debian/control	2006-08-10 21:23:53 UTC (rev 2217)
@@ -13,25 +13,8 @@
 Replaces: chan-capi
 Recommends: asterisk
 Description: Common ISDN API 2.0 implementation for Asterisk
- A channel driver for the Asterisk software telephony using the
- Common ISDN API 2.0. Provides core ISDN functionality which is not
- provided by the native Asterisk isdn4linux channel.
+ A channel driver for the Asterisk (and OpenPBX) software telephony
+ using the Common ISDN API 2.0. Provides core ISDN functionality which
+ is not provided by the native Asterisk isdn4linux channel.
  .
- List of implemented features:
- .
-  * ISDN connection handling (CID,DNID)
-  * multiple Controller support
-  * digital audio support
-  * DTMF detection/generation
-  * incoming/outgoing calls
-  * CLIP/CLIR
-  * early B3 connects
-  * native ISDN indications
-  * CD, HOLD, RETRIEVE, ECT
-  * overlap sending (dialtone)
-  * DID on P2P
-  * call progress (INFO_IND)
-  * RX/TX gains
-  * call deflection on circuit busy
- .
  Website: http://www.chan-capi.org/

Modified: asterisk-chan-capi/trunk/debian/patches/00list
===================================================================
--- asterisk-chan-capi/trunk/debian/patches/00list	2006-08-10 19:15:18 UTC (rev 2216)
+++ asterisk-chan-capi/trunk/debian/patches/00list	2006-08-10 21:23:53 UTC (rev 2217)
@@ -1,2 +1 @@
 01_debian-patch
-02_kernel_post_2.6.10_fix

Deleted: asterisk-chan-capi/trunk/debian/patches/02_kernel_post_2.6.10_fix.dpatch
===================================================================
--- asterisk-chan-capi/trunk/debian/patches/02_kernel_post_2.6.10_fix.dpatch	2006-08-10 19:15:18 UTC (rev 2216)
+++ asterisk-chan-capi/trunk/debian/patches/02_kernel_post_2.6.10_fix.dpatch	2006-08-10 21:23:53 UTC (rev 2217)
@@ -1,31 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## debian/patches/02_kernel_post_2.6.10_fix.dpatch by Kilian Krause <kk at verfaction.de>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Fix new kernel fd handling since 2.6.10-rc5
-## DP: updated by Lionel Elie Mamane <lionel at mamane.lu>
-
- at DPATCH@
-diff -urNad asterisk-chan-capi-0.6.3~/chan_capi.c asterisk-chan-capi-0.6.3/chan_capi.c
---- asterisk-chan-capi-0.6.3~/chan_capi.c	2006-01-09 00:00:44.000000000 +0100
-+++ asterisk-chan-capi-0.6.3/chan_capi.c	2006-01-09 00:08:31.000000000 +0100
-@@ -1467,6 +1467,7 @@
- 	struct ast_channel *tmp;
- 	int fmt;
- 	int fds[2];
-+	long flags;
- 
- 	tmp = ast_channel_alloc(0);
- 	
-@@ -1493,7 +1494,11 @@
- 	}
- 
- 	i->fd = fds[0];
-+	flags = fcntl(i->fd,F_GETFL);
-+	fcntl(i->fd,F_SETFL,flags | O_SYNC | O_DIRECT);
- 	i->fd2 = fds[1];
-+	flags = fcntl(i->fd2,F_GETFL);
-+	fcntl(i->fd2,F_SETFL,flags | O_SYNC | O_DIRECT);
- 	
- 	tmp->fds[0] = i->fd;
- 	if (i->smoother != NULL) {

Modified: asterisk-chan-capi/trunk/debian/rules
===================================================================
--- asterisk-chan-capi/trunk/debian/rules	2006-08-10 19:15:18 UTC (rev 2216)
+++ asterisk-chan-capi/trunk/debian/rules	2006-08-10 21:23:53 UTC (rev 2217)
@@ -8,7 +8,7 @@
 
 
 
-export PROC := $(shell dpkg-architecture -qDEB_HOST_ARCH)
+export PROC := $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
 
 CFLAGS = -Wall -g
 
@@ -28,7 +28,7 @@
 UPVERSION:=$(shell echo $(DEBVERSION) | sed -e 's/^.*://' -e 's/-[0-9.]*$$//' -e 's/.dfsg$$//')
 
 FILENAME := asterisk-chan-capi_$(UPVERSION).orig.tar.gz
-URL := ftp://ftp.chan-capi.org/chan-capi/chan_capi-cm-$(UPVERSION).tar.gz
+URL := ftp://ftp.chan-capi.org/chan-capi/chan_capi-$(UPVERSION).tar.gz
 
 configure: configure-stamp
 configure-stamp:

Modified: asterisk-chan-capi/trunk/debian/watch
===================================================================
--- asterisk-chan-capi/trunk/debian/watch	2006-08-10 19:15:18 UTC (rev 2216)
+++ asterisk-chan-capi/trunk/debian/watch	2006-08-10 21:23:53 UTC (rev 2217)
@@ -3,4 +3,4 @@
 # to check for upstream updates and more.
 # Site		Directory		Pattern			Version	Script
 version=3
-opts=pasv ftp://ftp.chan-capi.org/chan-capi/	chan_capi-cm-(.*)\.tar\.gz	debian	svn-upgrade
+opts=pasv ftp://ftp.chan-capi.org/chan-capi/	chan_capi-([\d.].*)\.tar\.gz	debian	svn-upgrade




More information about the Pkg-voip-commits mailing list