[Pkg-bluetooth-commits] r745 - in /packages/bluez-utils/trunk/debian: bluez-audio.install bluez-utils.bluetooth.default bluez-utils.bluetooth.init bluez-utils.examples changelog control

filippo at users.alioth.debian.org filippo at users.alioth.debian.org
Sun Jul 20 09:56:46 UTC 2008


Author: filippo
Date: Sun Jul 20 09:56:46 2008
New Revision: 745

URL: http://svn.debian.org/wsvn/pkg-bluetooth/?sc=1&rev=745
Log:
* New upstream version
  + Use safe function versions for SDP client handling.
    (since 3.34)
* Build-dep on libbluetooth >= 3.36
* Remove obsolete pcmcia-cs dep
* Remove old cruft: bluez-pan from /etc/default/bluetooth and bluez-sdp from
  postinst
* Install *-api.txt
* Update S-V to 3.8.0, no changes needed
* Call hid2hci in init.d restart action (Closes: #490980)
* Fix startup/shutdown message for dund (Closes: #490851)

Modified:
    packages/bluez-utils/trunk/debian/bluez-audio.install
    packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.default
    packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.init
    packages/bluez-utils/trunk/debian/bluez-utils.examples
    packages/bluez-utils/trunk/debian/changelog
    packages/bluez-utils/trunk/debian/control

Modified: packages/bluez-utils/trunk/debian/bluez-audio.install
URL: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils/trunk/debian/bluez-audio.install?rev=745&op=diff
==============================================================================
--- packages/bluez-utils/trunk/debian/bluez-audio.install (original)
+++ packages/bluez-utils/trunk/debian/bluez-audio.install Sun Jul 20 09:56:46 2008
@@ -1,3 +1,3 @@
 debian/tmp/usr/lib/alsa-lib/libasound*.so
 debian/tmp/usr/lib/gstreamer-0.10/libgstbluetooth.so
-debian/tmp/usr/lib/bluetooth/plugins/libaudio.so
+debian/tmp/usr/lib/bluetooth/plugins/audio.so

Modified: packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.default
URL: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.default?rev=745&op=diff
==============================================================================
--- packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.default (original)
+++ packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.default Sun Jul 20 09:56:46 2008
@@ -27,15 +27,6 @@
 #
 # remove '--master' if you're having trouble working with Ericsson
 # T630 phones with hidd operational at the same time.
-
-############ COMPATIBILITY WITH OLD BLUEZ-PAN
-# Compatibility: if old PAN config exists, use it
-# rather than this file.
-if test -f /etc/default/bluez-pan; then
-    . /etc/default/bluez-pan
-    return
-fi
-############
 
 ############ DUND
 #

Modified: packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.init
URL: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.init?rev=745&op=diff
==============================================================================
--- packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.init (original)
+++ packages/bluez-utils/trunk/debian/bluez-utils.bluetooth.init Sun Jul 20 09:56:46 2008
@@ -127,7 +127,7 @@
 {
 	if test "$DUND_ENABLED" != "0"; then
 		start-stop-daemon --start --quiet --exec $DUND_DAEMON -- $DUND_OPTIONS
-		[ "$VERBOSE" != no ] && log_progress_msg "pand"
+		[ "$VERBOSE" != no ] && log_progress_msg "dund"
 
 	fi
 	if test "$PAND_ENABLED" != "0"; then
@@ -141,7 +141,7 @@
 {
 	if test "$DUND_ENABLED" != "0"; then
 		start-stop-daemon --stop --quiet --exec $DUND_DAEMON || true
-		[ "$VERBOSE" != no ] && log_progress_msg "pand"
+		[ "$VERBOSE" != no ] && log_progress_msg "dund"
 	fi
 	if test "$PAND_ENABLED" != "0"; then
 		start-stop-daemon --stop --quiet --exec $PAND_DAEMON || true
@@ -268,6 +268,9 @@
     ;;
   restart|force-reload)
 	log_daemon_msg "Restarting $DESC"
+	if test "$HID2HCI_ENABLED" = "1"; then
+		disable_hci_input || true
+	fi
 	stop_hid || true
 	stop_pan || true
 	start-stop-daemon --stop --quiet --exec $HCID || true
@@ -277,11 +280,15 @@
 		log_end_msg 0
 		exit 0
 	fi
+
 	start-stop-daemon --start --quiet --exec $HCID -- $HCID_OPTIONS || true
 	log_progress_msg "hcid"
+	start_hid || true
+	if test "$HID2HCI_ENABLED" = "1"; then
+		enable_hci_input || true
+	fi
+	restart_rfcomm
 	start_pan || true
-	start_hid || true
-	restart_rfcomm
 	log_end_msg 0
     ;;
   *)

Modified: packages/bluez-utils/trunk/debian/bluez-utils.examples
URL: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils/trunk/debian/bluez-utils.examples?rev=745&op=diff
==============================================================================
--- packages/bluez-utils/trunk/debian/bluez-utils.examples (original)
+++ packages/bluez-utils/trunk/debian/bluez-utils.examples Sun Jul 20 09:56:46 2008
@@ -1,1 +1,1 @@
-daemon/passkey-agent.c
+test/passkey-agent.c

Modified: packages/bluez-utils/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils/trunk/debian/changelog?rev=745&op=diff
==============================================================================
--- packages/bluez-utils/trunk/debian/changelog (original)
+++ packages/bluez-utils/trunk/debian/changelog Sun Jul 20 09:56:46 2008
@@ -1,3 +1,19 @@
+bluez-utils (3.36-1) unstable; urgency=low
+
+  * New upstream version
+    + Use safe function versions for SDP client handling.
+      (since 3.34)
+  * Build-dep on libbluetooth >= 3.36
+  * Remove obsolete pcmcia-cs dep
+  * Remove old cruft: bluez-pan from /etc/default/bluetooth and bluez-sdp from
+    postinst
+  * Install *-api.txt
+  * Update S-V to 3.8.0, no changes needed
+  * Call hid2hci in init.d restart action (Closes: #490980)
+  * Fix startup/shutdown message for dund (Closes: #490851)
+
+ -- Filippo Giunchedi <filippo at debian.org>  Sun, 20 Jul 2008 11:47:46 +0200
+
 bluez-utils (3.30-3) unstable; urgency=low
 
   * Add watch file 

Modified: packages/bluez-utils/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils/trunk/debian/control?rev=745&op=diff
==============================================================================
--- packages/bluez-utils/trunk/debian/control (original)
+++ packages/bluez-utils/trunk/debian/control Sun Jul 20 09:56:46 2008
@@ -3,11 +3,11 @@
 Priority: optional
 Maintainer: Debian Bluetooth Maintainers <pkg-bluetooth-maintainers at lists.alioth.debian.org>
 Uploaders: Edd Dumbill <ejad at debian.org>, Filippo Giunchedi <filippo at debian.org>, Mario Iseli <mario at debian.org>
-Build-Depends: bison, flex, debhelper (>= 5), libbluetooth-dev (>= 3.30), autotools-dev, cdbs, libdbus-1-dev, libdbus-glib-1-dev (> 0.60), libusb-dev, libglib2.0-dev, libgstreamer-plugins-base0.10-dev, libgstreamer0.10-dev, gstreamer-tools (>= 0.10.14), libasound2-dev, libhal-dev, libexpat1-dev
+Build-Depends: bison, flex, debhelper (>= 5), libbluetooth-dev (>= 3.33), autotools-dev, cdbs, libdbus-1-dev, libdbus-glib-1-dev (> 0.60), libusb-dev, libglib2.0-dev, libgstreamer-plugins-base0.10-dev, libgstreamer0.10-dev, gstreamer-tools (>= 0.10.14), libasound2-dev, libhal-dev, libexpat1-dev
 Vcs-Svn: svn://svn.debian.org/svn/pkg-bluetooth/packages/bluez-utils
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-bluetooth/packages/bluez-utils
 Homepage: http://www.bluez.org
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 
 Package: bluez-utils
 Architecture: any
@@ -24,7 +24,7 @@
 Package: bluez-pcmcia-support
 Architecture: any
 Priority: extra
-Depends: bluez-utils (= ${binary:Version}), pcmciautils | pcmcia-cs
+Depends: bluez-utils (= ${binary:Version}), pcmciautils 
 Recommends: setserial
 Description: PCMCIA support files for BlueZ 2.0 Bluetooth tools
  This package contains files to enable PCMCIA card services to recognise




More information about the Pkg-bluetooth-commits mailing list