--- osso-gwconnect-1.0.12.debian.orig/configure.ac +++ osso-gwconnect-1.0.12.debian/configure.ac @@ -9,21 +9,13 @@ AC_ISC_POSIX AC_HEADER_STDC -AX_CFLAGS_GCC_OPTION(-std=c99) -#AX_CFLAGS_GCC_OPTION(-pedantic) -AX_CFLAGS_GCC_OPTION(-Wall) -# AX_CFLAGS_GCC_OPTION(-Werror) -AX_CFLAGS_GCC_OPTION(-Wmissing-prototypes) -AX_CFLAGS_GCC_OPTION(-Wmissing-declarations) -AX_CFLAGS_GCC_OPTION(-Wwrite-strings) -AX_CFLAGS_GCC_OPTION(-Wshadow) -AX_CFLAGS_GCC_OPTION(-Wformat-security) -AX_CFLAGS_GCC_OPTION(-Wformat=2) -AX_CFLAGS_GCC_OPTION(-Waggregate-return) -AX_CFLAGS_GCC_OPTION(-Wbad-function-cast) -AX_CFLAGS_GCC_OPTION(-Wpointer-arith) -AX_CFLAGS_GCC_OPTION(-Wundef) -AX_CFLAGS_GCC_OPTION(-Wchar-subscripts) +dnl # ****************************** +dnl # Defaults for GCC +dnl # ****************************** +if test "x$GCC" = "xyes"; then + CFLAGS=${CFLAGS:-"-g2 -Wall"} + CXXFLAGS=${CXXFLAGS:-"-g2 -Wall"} +fi AC_ARG_ENABLE(docs, [ --enable-docs Build DOXYGEN documentation (requires Doxygen)],enable_docs=$enableval,enable_docs=auto) AC_ARG_ENABLE(ossolog, [ --enable-ossolog Enable osso-log support],enable_ossolog=$enableval,enable_ossolog=no) @@ -119,6 +111,7 @@ DBUS_SYS_DIR="$SYSCONFDIR/dbus-1/system.d" fi AC_SUBST(DBUS_SYS_DIR) +CFLAGS="${CFLAGS} -Wmissing-prototypes -Wmissing-declarations -Wwrite-strings -Wshadow -Wformat-security -Wformat=2 -Waggregate-return -Wbad-function-cast -Wpointer-arith -Wundef -Wchar-subscripts -std=c99" AC_CONFIG_FILES([ Makefile --- osso-gwconnect-1.0.12.debian.orig/debian/btcond.default +++ osso-gwconnect-1.0.12.debian/debian/btcond.default @@ -0,0 +1,19 @@ +# Defaults for btcond initscript +# sourced by /etc/init.d/btcond +# installed at /etc/default/btcond by the maintainer scripts + +# +# This is a POSIX shell fragment +# + +# Additional options that are passed to the Daemon. +DAEMON_OPTS="" + +#RUN_AS_USER="user" + +if test -x /usr/sbin/dsmetool; then + USE_DSMETOOL="yes" +else + USE_DSMETOOL="no" +fi + --- osso-gwconnect-1.0.12.debian.orig/debian/btcond.init +++ osso-gwconnect-1.0.12.debian/debian/btcond.init @@ -0,0 +1,59 @@ +#! /bin/sh + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/bin/btcond +NAME=btcond +DESC="BT Connection Daemon" + +test -x $DAEMON || exit 0 + +# Include btcond defaults if available +if [ -f /etc/default/btcond ] ; then + . /etc/default/btcond + if [ ! -z "$RUN_AS_USER" ]; then + if [ "$USE_DSMETOOL" = "yes" ]; then + USER_FLAGS="-U $RUN_AS_USER" + else + USER_FLAGS="--chuid $RUN_AS_USER" + fi + fi +fi + +#set -e + +case "$1" in + start) + if [ ! -e /tmp/first-boot-flag-tmp ]; then + echo -n "Starting $DESC: " + if [ "$USE_DSMETOOL" = "yes" ]; then + dsmetool -n -1 $USER_FLAGS -r "$DAEMON -l $DAEMON_OPTS" + else + start-stop-daemon --start --quiet $USER_FLAGS \ + --exec $DAEMON -- -d $DAEMON_OPTS + fi + echo "$NAME." + fi + ;; + stop) + echo -n "Stopping $DESC: " + if [ "$USE_DSMETOOL" = "yes" ]; then + dsmetool -k "$DAEMON -l $DAEMON_OPTS" + else + start-stop-daemon --stop --quiet \ + $USER_FLAGS --exec $DAEMON + fi + echo "$NAME." + ;; + restart|force-reload) + $0 stop + $0 start + ;; + *) + N=/etc/init.d/$NAME + # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $N {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 --- osso-gwconnect-1.0.12.debian.orig/debian/osso-gwconnect.install +++ osso-gwconnect-1.0.12.debian/debian/osso-gwconnect.install @@ -0,0 +1,4 @@ +usr/bin/* +usr/share/dbus-1/services/* +etc/dbus-1/system.d/* +etc/gconf/schemas/* --- osso-gwconnect-1.0.12.debian.orig/debian/watch +++ osso-gwconnect-1.0.12.debian/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://repository.maemo.org/pool/sardine/main/source/o/osso-gwconnect/osso-gwconnect_(.*)\.tar\.gz --- osso-gwconnect-1.0.12.debian.orig/debian/changelog +++ osso-gwconnect-1.0.12.debian/debian/changelog @@ -0,0 +1,1088 @@ +osso-gwconnect (1.0.12.debian-2ubuntu1) natty; urgency=low + + * configure.ac: directly uses gcc options instead of detecting them. This + fixes a FTBFS in Natty because of some updates in autoconf (LP: #755982). + Patch taken from Debian bug 593049. + + -- Fabrice Coutadeur Sun, 24 Apr 2011 21:16:55 +0200 + +osso-gwconnect (1.0.12.debian-2) unstable; urgency=low + + * debian/gbp.conf: Added. + * debian/update-patches.mk: Added. + * debian/README.source: Added. + * debian/control: + + Use my debian.org email address. + + Add Vcs-* fields. + + Add a missing ${misc:Depends} to please lintian. + * debian/osso-gwconnect.postinst: Re-add -e to please lintian. + + -- Jonny Lamb Sun, 01 Aug 2010 08:38:59 -0400 + +osso-gwconnect (1.0.12.debian-1) unstable; urgency=low + + [ Loic Minier ] + * Set Debian Maemo Maintainers as Maintainer; add myself to Uploaders. + * Cleanup rules. + * Add URL to copyright. + * Add watch file. + * Drop useless debian/*.dirs. + * Bump up Debhelper compatibility level to 5. + - Drop bogus usr/share/doc/*, etc/default/*, and etc/init.d/* from + osso-gwconnect.install. + * Bump up Standards-Version to 3.7.2. + * Always build with -Wall -g in CFLAGS and drop INSTALL_PROGRAM += -s as + this is handled by dh_strip. + * Wrap build-deps and deps. + * Update version to indicated a repacked tarball and add instructions on how + to repack it. + * Add missing build-deps on autoconf, automake, and gtk-doc. + + [ Jonny Lamb ] + * Updated descriptions in control. + * Add myself to Uploaders. + * Merge with trunk branch. + * Fixed lintian warnings. + * Bumped Standards-Version. + * Initial release into Debian (Closes: #452155) + + [ Riku Voipio ] + * Demote recommends on propiertary stuff to Suggests + + -- Riku Voipio Tue, 08 Jan 2008 22:19:22 +0200 + +osso-gwconnect (1.0.12) unstable; urgency=low + + * Remove offline mode stuff (as this is taken care of by the UI) + + -- Johan Hedberg Mon, 13 Aug 2007 14:38:16 +0300 + +osso-gwconnect (1.0.11) unstable; urgency=low + + * Delay start of btcond. Fixes: NB#60079 + + -- Johan Hedberg Tue, 19 Jun 2007 10:54:17 +0300 + +osso-gwconnect (1.0.10ubuntu3) gutsy; urgency=low + + * Remove preinst; it's just the debhelper token. + * Remove update-rc.d remove call from postinst. + * Make the configure target depend on configure.ac + * UnPHONY the configure target. + * Make autoconf.sh call automake with --copy + + -- Tollef Fog Heen Tue, 05 Jun 2007 11:20:46 +0200 + +osso-gwconnect (1.0.10ubuntu2) gutsy; urgency=low + + * Remove prerm script, it's just the debhelper token anyway. + * Use invoke-rc.d rather than killall, in postinst. + * Fix copyright file to actually include a licence. + + -- Tollef Fog Heen Mon, 04 Jun 2007 15:59:43 +0200 + +osso-gwconnect (1.0.10ubuntu1) gutsy; urgency=low + + [ Adilson Oliveira ] + * Cleaned up to make it compile on gutsy. + * Twicked rules file so it installs but don't runs the service. + + [ Tollef Fog Heen ] + * libbluetooth2-dev is now libbluetooth-dev; update build-depends + accordingly. + * Update autogen.sh to make it possible to avoid running configure with + it. + * Simplify kill rule in postinst. + + -- Tollef Fog Heen Mon, 04 Jun 2007 12:23:04 +0200 + +osso-gwconnect (1.0.10) unstable; urgency=low + + * Add "HSP" (headset role) identifier to btsdp + * Don't call dbus_connection_close for shared connections. + * src/devlist.c: avoid shadowing global "clock" variable. + + -- Johan Hedberg Thu, 19 Apr 2007 14:38:34 +0300 + +osso-gwconnect (1.0.9) unstable; urgency=low + + * Fix rfcomm_status parameter order on disconnect. Fixes: NB#53642 + + -- Johan Hedberg Fri, 30 Mar 2007 16:10:16 +0300 + +osso-gwconnect (1.0.8) unstable; urgency=low + + * Fix usage of a potentially uninitialized variable. Fixes: NB#50494 + + -- Johan Hedberg Tue, 9 Jan 2007 11:50:01 +0200 + +osso-gwconnect (1.0.7) unstable; urgency=low + + * Use SS + SA requests instead of SSA in SDP. Fixes: NB#50315 + + -- Johan Hedberg Fri, 22 Dec 2006 14:00:29 +0200 + +osso-gwconnect (1.0.6) unstable; urgency=low + + * Ignore normal->normal and flight->flight mode transitions. Fixes: NB#49368 + + -- Johan Hedberg Wed, 13 Dec 2006 11:14:28 +0200 + +osso-gwconnect (1.0.5) unstable; urgency=low + + * Restore correct device mode (UP/DOWN) on return to normal mode + + -- Johan Hedberg Fri, 17 Nov 2006 11:58:39 +0200 + +osso-gwconnect (1.0.4) unstable; urgency=low + + * Repackaged to get rid of debian/.svn + + -- Johan Hedberg Mon, 6 Nov 2006 10:43:53 +0200 + +osso-gwconnect (1.0.3) unstable; urgency=low + + * Get rid of (valid) compiler warnings. Fixes NB#45892 + + -- Johan Hedberg Mon, 30 Oct 2006 11:21:59 +0200 + +osso-gwconnect (1.0.2) unstable; urgency=low + + * Fix /etc/osso_software_version parsing + + -- Johan Hedberg Tue, 26 Sep 2006 16:07:47 +0300 + +osso-gwconnect (1.0.1) unstable; urgency=low + + * Do UTF-8 validation of found device names. Fixes: NB#40824 + + -- Johan Hedberg Wed, 20 Sep 2006 00:29:24 +0300 + +osso-gwconnect (1.0) unstable; urgency=low + + * Detect HCI_DEVDOWN events. Fixes: NB#33650 + + -- Johan Hedberg Wed, 16 Aug 2006 14:03:04 +0300 + +osso-gwconnect (0.99.1) unstable; urgency=low + + * Updated libbluetooth1 dependency to libbluetooth2 + + -- Johan Hedberg Thu, 27 Jul 2006 13:26:54 +0300 + +osso-gwconnect (0.99) unstable; urgency=low + + * Fix segfault when hci0 is not present + + -- Johan Hedberg Mon, 24 Jul 2006 13:46:40 +0300 + +osso-gwconnect (0.98.2) unstable; urgency=low + + * Check cover state when ignore_cover(FALSE) is called + + -- Johan Hedberg Thu, 1 Jun 2006 11:13:20 +0300 + +osso-gwconnect (0.98.1) unstable; urgency=low + + * Update copyright and license disclamers + + -- Johan Hedberg Fri, 26 May 2006 11:12:26 +0300 + +osso-gwconnect (0.98) unstable; urgency=low + + * Detect OSSO SW version and react to HW events acordingly (fixes bug #28505) + + -- Johan Hedberg Thu, 4 May 2006 13:50:39 +0300 + +osso-gwconnect (0.97.3) unstable; urgency=low + + * Use dsmetool only if it's present in the filesystem + * Move dsme from depends to recommends + + -- Johan Hedberg Wed, 3 May 2006 18:14:22 +0300 + +osso-gwconnect (0.97.2) unstable; urgency=low + + * Remove incorrect assert in mode_change() (fixes bug #28008) + + -- Johan Hedberg Thu, 27 Apr 2006 12:14:57 +0300 + +osso-gwconnect (0.97.1) unstable; urgency=low + + * Change osso-gwconnect-dev architecture to all (fixes bug #26115) + + -- Johan Hedberg Mon, 10 Apr 2006 16:23:05 +0300 + +osso-gwconnect (0.97) unstable; urgency=low + + * Monitor inactivity events (fixes bug #25800) + + -- Johan Hedberg Mon, 10 Apr 2006 11:37:19 +0300 + +osso-gwconnect (0.96.1) unstable; urgency=low + + * Update README + + -- Johan Hedberg Thu, 6 Apr 2006 11:46:29 +0300 + +osso-gwconnect (0.96) unstable; urgency=low + + * Code cleanup + * Some memory leak fixes + * Add "HID" to detected service strings + * Expose also L2CAP-only services through get_capability method + + -- Johan Hedberg Wed, 5 Apr 2006 18:38:03 +0300 + +osso-gwconnect (0.95.4) unstable; urgency=low + + * gpio-switch -> gpio_swith for ke-recv protective cover object path + + -- Johan Hedberg Tue, 7 Mar 2006 11:38:42 -0300 + +osso-gwconnect (0.95.3) unstable; urgency=low + + * Fix return value of cover_filter() when ignore_cover_events + is TRUE (fixes bug #23688). + + -- Johan Hedberg Tue, 7 Mar 2006 10:53:14 -0300 + +osso-gwconnect (0.95.2) unstable; urgency=low + + * Really remove gconf dependency (from configure.ac and src/Makefile.am) + + -- Johan Hedberg Tue, 3 Jan 2006 17:02:43 +0200 + +osso-gwconnect (0.95.1) unstable; urgency=low + + * Updated to work with dbus-0.60 + + -- Johan Hedberg Fri, 23 Dec 2005 13:40:20 +0200 + +osso-gwconnect (0.95) unstable; urgency=low + + * GConf support removed (preferred device must be known by caller) + + -- Johan Hedberg Wed, 21 Dec 2005 11:23:50 +0200 + +osso-gwconnect (0.94) unstable; urgency=low + + * btcond: new ignore_cover method + + -- Johan Hedberg Tue, 13 Dec 2005 12:09:08 +0200 + +osso-gwconnect (0.93.2) unstable; urgency=low + + * Move calling remove_name_listener to free_rfcomm_dev + + -- Johan Hedberg Mon, 28 Nov 2005 17:50:45 +0200 + +osso-gwconnect (0.93.1) unstable; urgency=low + + * Use better D-BUS client lifetime tracing in btsearch + * call remove_name_listener on rfcomm_disconnect + + -- Johan Hedberg Mon, 28 Nov 2005 17:33:48 +0200 + +osso-gwconnect (0.93) unstable; urgency=low + + * Fix name exit detection + * btsdp reply parsing fixes + + -- Johan Hedberg Thu, 24 Nov 2005 11:34:49 +0200 + +osso-gwconnect (0.92) unstable; urgency=low + + * More cleanup + * Support for TTL information in SDP data + + -- Johan Hedberg Wed, 23 Nov 2005 13:07:13 +0200 + +osso-gwconnect (0.91) unstable; urgency=low + + * Reworked btsdp interface + + -- Johan Hedberg Fri, 18 Nov 2005 17:48:12 +0200 + +osso-gwconnect (0.90.3) unstable; urgency=low + + * Move bluez-utils from depends to recommends + * Cleanup + + -- Johan Hedberg Thu, 17 Nov 2005 17:37:50 +0200 + +osso-gwconnect (0.90.2) unstable; urgency=low + + * Fix parsing of btsdp reply + * Added dependency to dbus package + + -- Johan Hedberg Wed, 16 Nov 2005 18:18:12 +0200 + +osso-gwconnect (0.90.1) unstable; urgency=low + + * Move mce from depends to recommends + + -- Johan Hedberg Wed, 16 Nov 2005 15:01:47 +0200 + +osso-gwconnect (0.90) unstable; urgency=low + + * First attempt at supporting new D-BUS versions + * Remove bttools dependency + + -- Johan Hedberg Wed, 16 Nov 2005 12:48:46 +0200 + +osso-gwconnect (0.81.4) unstable; urgency=low + + * Always do SDP for all operations + + -- Johan Hedberg Wed, 26 Oct 2005 20:42:54 +0300 + +osso-gwconnect (0.81.3) unstable; urgency=low + + * Always perform SDP for get_dev_capability + + -- Johan Hedberg Tue, 25 Oct 2005 11:52:15 +0300 + +osso-gwconnect (0.81.2) unstable; urgency=low + + * Updated README + + -- Johan Hedberg Thu, 13 Oct 2005 13:26:50 +0300 + +osso-gwconnect (0.81.1) unstable; urgency=low + + * Removed some "sensitive" words from changelog. + + -- Johan Hedberg Mon, 10 Oct 2005 13:34:41 +0300 + +osso-gwconnect (0.81) unstable; urgency=low + + * Added rfcomm_cancel_connect method call + + -- Johan Hedberg Thu, 6 Oct 2005 17:07:29 +0300 + +osso-gwconnect (0.80.5) unstable; urgency=low + + * Compilation fix for shadowing variable name in monitor_cb() + + -- Johan Hedberg Mon, 3 Oct 2005 23:24:35 +0300 + +osso-gwconnect (0.80.4) unstable; urgency=low + + * Detect D-BUS service exit during rfcomm connect phase + + -- Johan Hedberg Mon, 3 Oct 2005 19:22:59 +0300 + +osso-gwconnect (0.80.3) unstable; urgency=low + + * Segfault fix for failing btpair. + + -- Johan Hedberg Fri, 30 Sep 2005 13:44:02 +0300 + +osso-gwconnect (0.80.2) unstable; urgency=low + + * Updated README + + -- Johan Hedberg Wed, 21 Sep 2005 14:38:49 +0300 + +osso-gwconnect (0.80.1) unstable; urgency=low + + * Add --enable-buggydbus option and set D-BUS service flags acordingly + + -- Johan Hedberg Fri, 16 Sep 2005 14:19:43 +0300 + +osso-gwconnect (0.80) unstable; urgency=low + + * Map btpair "auth failed" error to btcond "auth failed" error. + * Don't call dbus_shutdown() to get rid of warning from client library + * Allow only root to own btcond service + + -- Johan Hedberg Thu, 15 Sep 2005 14:13:11 +0300 + +osso-gwconnect (0.79.2) unstable; urgency=low + + * K20btcond -> K15btcond in runlevel 5 (because of D-BUS unregistering bug) + + -- Johan Hedberg Mon, 29 Aug 2005 16:37:27 +0300 + +osso-gwconnect (0.79.1) unstable; urgency=low + + * Empty connections list when going to flight mode. + + -- Johan Hedberg Mon, 29 Aug 2005 13:08:48 +0300 + +osso-gwconnect (0.79) unstable; urgency=low + + * Allow different services on the same channel (e.g. Siemens SK65 has this) + + -- Johan Hedberg Wed, 24 Aug 2005 17:31:27 +0300 + +osso-gwconnect (0.78.1) unstable; urgency=low + + * Use static memory for receiving HCI events. + + -- Johan Hedberg Tue, 23 Aug 2005 11:27:14 +0300 + +osso-gwconnect (0.78) unstable; urgency=low + + * Call hci_bt_down() before exiting + * Reset BT chip instead of exiting on HW error + * Added hci_dev_(up|down) signals + + -- Johan Hedberg Mon, 22 Aug 2005 16:45:06 +0300 + +osso-gwconnect (0.77.1) unstable; urgency=low + + * Don't call bt_disconnect() twice on exit. + * Detect service aquiring failure properly + + -- Johan Hedberg Wed, 17 Aug 2005 14:06:53 +0300 + +osso-gwconnect (0.77) unstable; urgency=low + + * More flexible SDP result handling: + - Existing connections aren't disconnected unnecessarily when SDP + query result arrives. + - btcond will do new SDP query if a service is queried for which + wasn't found in the previous query. + * Code cleanup + * Log exact error code of BT HW Error HCI event + + -- Johan Hedberg Tue, 9 Aug 2005 17:53:19 +0300 + +osso-gwconnect (0.76) unstable; urgency=low + + * Check for 32 bit UUID's in sdp-query (fixes #12127). + * Don't try to enable encryption by default. + + -- Johan Hedberg Tue, 2 Aug 2005 10:50:11 +0300 + +osso-gwconnect (0.75.1) unstable; urgency=low + + * Only wake up on other ke-recv cover_state change event + + -- Johan Hedberg Fri, 1 Jul 2005 11:54:31 +0300 + +osso-gwconnect (0.75) unstable; urgency=low + + * Proper explicit RFCOMM channel support + * Added rfcomm_bind and rfcomm_release method calls (get_rfcomm_dev is gone) + * Remove USE_BT12 since its not used anywhere. + * Use btpair D-BUS interface instead of command line + + -- Johan Hedberg Thu, 23 Jun 2005 15:47:24 +0300 + +osso-gwconnect (0.74) unstable; urgency=low + + * Use BlueZ's own RFCOMM device node bookkeeping functionality + * Partial support for specifying RFCOMM channel directly (bypass SDP) + * Send cancel remote name request in btsearch if necessary + + -- Johan Hedberg Tue, 21 Jun 2005 11:53:18 +0300 + +osso-gwconnect (0.73.1) unstable; urgency=low + + * Remove --enable-pinagent from debian/rules (the option has been removed) + * Make GConfClient static (call gconf_client_get_default only once). + + -- Johan Hedberg Mon, 13 Jun 2005 16:35:22 +0300 + +osso-gwconnect (0.73) unstable; urgency=low + + * Don't use selected list anymore, accept any BDA. + + -- Johan Hedberg Mon, 13 Jun 2005 13:23:38 +0300 + +osso-gwconnect (0.72.1) unstable; urgency=low + + * Make btcond use new btsdp D-BUS API + + -- Johan Hedberg Tue, 24 May 2005 13:12:15 +0300 + +osso-gwconnect (0.72) unstable; urgency=low + + * Enhanced btsdp functionality (specific service search) + + -- Johan Hedberg Tue, 24 May 2005 11:42:51 +0300 + +osso-gwconnect (0.71) unstable; urgency=low + + * Memory handling fixes (leaks & accessing free'd memory) + + -- Johan Hedberg Fri, 20 May 2005 16:58:45 +0300 + +osso-gwconnect (0.70.2) unstable; urgency=low + + * Properly disconnect RFCOMM device on error or HUP. + + -- Johan Hedberg Mon, 16 May 2005 22:37:33 +0300 + +osso-gwconnect (0.70.1) unstable; urgency=low + + * Run "btname -r" after HCIDEVUP (hcid resets to name to match hcid.conf) + + -- Johan Hedberg Mon, 9 May 2005 09:40:04 +0300 + +osso-gwconnect (0.70) unstable; urgency=low + + * Use HCIDEVUP & HCIDEVDOWN for normal<->flight mode changes + * React to cover open/closed states (disable BT in cover closed) + + -- Johan Hedberg Fri, 6 May 2005 12:37:32 +0300 + +osso-gwconnect (0.69) unstable; urgency=low + + * Increased btsdp D-BUS timeout to 22s (pageto is 20.48s) + * Use btpair (from osso-bttools) for authentication and encryption + + -- Johan Hedberg Mon, 2 May 2005 15:21:34 +0300 + +osso-gwconnect (0.68.1) unstable; urgency=low + + * Fix two GError initializations (could cause crash) + + -- Johan Hedberg Mon, 25 Apr 2005 10:23:42 +0300 + +osso-gwconnect (0.68) unstable; urgency=low + + * Code cleanup + + -- Johan Hedberg Fri, 22 Apr 2005 14:30:16 +0300 + +osso-gwconnect (0.67) unstable; urgency=low + + * Added checking of encryption key length + * Cleaner internal error handling + * configure.ac: check for osso-log.h if ossolog is enabled + + -- Johan Hedberg Thu, 14 Apr 2005 23:25:42 +0300 + +osso-gwconnect (0.66) unstable; urgency=low + + * Use L2CAP UUID for SDP if PublicBrowseGroup finds 0 services + * Use dsmetool for launching btcond + * Removed boolean argument from update_dev_info method return. + + -- Johan Hedberg Wed, 6 Apr 2005 16:20:00 +0300 + +osso-gwconnect (0.65) unstable; urgency=low + + * Remove unecessary auth disable in btcond.init + * Make osso-gwconnect-dev arch specific because of pkg-config file + * Added update_dev_info method call + * Add --syslog (or -l) switch to btcond + + -- Johan Hedberg Mon, 4 Apr 2005 14:55:08 +0300 + +osso-gwconnect (0.64) unstable; urgency=low + + * Remove invalid g_io_channel_unref (could cause crash) + * Only generate rfcomm filename once when waiting for open to succeed + + -- Johan Hedberg Thu, 31 Mar 2005 14:55:10 +0300 + +osso-gwconnect (0.63) unstable; urgency=low + + * Get rid of gthread dependency (use non-blocking socket for connecting) + + -- Johan Hedberg Tue, 29 Mar 2005 11:49:16 +0300 + +osso-gwconnect (0.62) unstable; urgency=low + + * Add rfcomm_status method call + * Remove rfcomm-dev GSource ID on disconnect + * Remove extra HCI-commands from btcond init script (moved to osso-btpatch) + * Remove unnecessary pre-depends on sudo + + -- Johan Hedberg Wed, 23 Mar 2005 09:26:15 +0200 + +osso-gwconnect (0.61) unstable; urgency=low + + * Really add enc, auth & role-switch (forgotten from last version) + * Accept "/dev/rfcommN" as rfcomm_disconnect parameter + * call dbus_connection_disconnect before dbus_connection_unref + + -- Johan Hedberg Fri, 18 Mar 2005 23:49:34 +0200 + +osso-gwconnect (0.60) unstable; urgency=low + + * Use g_log (and related macros) instead of g_print & g_printerr + * Update GLib version requirement to 2.6.0 in configure.ac + * Use libbluetooth for rfcomm device node creation instead of rfcomm tool + * New rfcomm_connect and rfcomm_disconnect method calls + * New rfcomm_status D-BUS signal + * Set encryption, authentication and role-switch for rfcomm connections + * Updated README + * Don't use -Werror when compiling (some problems with gcc 3.4) + + -- Johan Hedberg Fri, 18 Mar 2005 16:24:09 +0200 + +osso-gwconnect (0.59) unstable; urgency=low + + * Print clock offset in btserch debug output + * Send correct flight mode error from btsdp + + -- Johan Hedberg Tue, 22 Feb 2005 11:09:31 +0200 + +osso-gwconnect (0.58) unstable; urgency=low + + * Yet another fix to the BT-WLAN hci command (from Ville) + * Renamed BTCOND_GET_BTDEV_LIST to BTCOND_GET_BDA_LIST + + -- Johan Hedberg Fri, 11 Feb 2005 09:18:08 +0200 + +osso-gwconnect (0.57) unstable; urgency=low + + * Added debug print for all auth_complete events + * Fixed BT-WLAN HCI command (according to Ville Tervo's feedback) + * Fix D-BUS 0.23 support + + -- Johan Hedberg Wed, 9 Feb 2005 14:26:32 +0200 + +osso-gwconnect (0.56) unstable; urgency=low + + * Added auth_failed signal + + -- Johan Hedberg Fri, 28 Jan 2005 18:56:17 +0200 + +osso-gwconnect (0.55) unstable; urgency=low + + * Disable auth in init script since hcid is not doing it + + -- Johan Hedberg Fri, 28 Jan 2005 13:21:27 +0200 + +osso-gwconnect (0.54) unstable; urgency=low + + * Redirect output BT-WLAN HCI command also to /dev/null + * Send second "reason" parameter in connection status signal (only used for + disconnect events at the moment) + + -- Johan Hedberg Thu, 27 Jan 2005 10:07:26 +0200 + +osso-gwconnect (0.53) unstable; urgency=low + + * Added BT-WLAN handshake HCI command to btcond init script + * Send SIGUP to dbus-daemon instead of restarting it in postinst + + -- Johan Hedberg Wed, 26 Jan 2005 13:34:15 +0200 + +osso-gwconnect (0.52) unstable; urgency=low + + * Support for ServiceOwnerChanged signal (D-BUS 0.23) + * Enabled MCE support (flight mode information) + * Use SAP_SVCLASS_ID from bluez-libs 2.11 instead of our own define + * Added -p switch to disable PinAgent service check + + -- Johan Hedberg Tue, 18 Jan 2005 17:27:03 +0200 + +osso-gwconnect (0.51) unstable; urgency=low + + * Preliminary support for device mode information from MCE + - This is enabled with --enable-mce configure option + - But it is disabled by default in this release because I couldn't get a + mce-dev package from DSM in time. + * Fix typo of "prefered" in bt-dbus.h (backwards compatibility is still + maintained for this release, probably not next). + + -- Johan Hedberg Fri, 14 Jan 2005 14:57:53 +0200 + +osso-gwconnect (0.50) unstable; urgency=low + + * Make PinAgent service waiting optional (compile-time option) + * Proper packaging (remove debian/.svn directory) + + -- Johan Hedberg Tue, 4 Jan 2005 08:37:39 +0200 + +osso-gwconnect (0.49) unstable; urgency=low + + * Support for prefered BDA + * Track all connections (even if BDA is not in selected list) + * Wait for PinAgent service before reading info from GConf + + -- Johan Hedberg Thu, 23 Dec 2004 12:36:37 +0200 + +osso-gwconnect (0.48) unstable; urgency=low + + * Yet another fix for the init script. Let's hope it's the last! + + -- Johan Hedberg Thu, 9 Dec 2004 16:08:29 +0200 + +osso-gwconnect (0.47) unstable; urgency=low + + * Fix bug in init script introduced by previous change + + -- Johan Hedberg Wed, 1 Dec 2004 09:46:14 +0200 + +osso-gwconnect (0.46) unstable; urgency=low + + * Move setting inquiry mode from btsearch to btcond init script since it + seems to require root privileges. + + -- Johan Hedberg Tue, 30 Nov 2004 08:57:24 +0200 + +osso-gwconnect (0.45) unstable; urgency=low + + * Fix inquiry_info for non-RSSI case + + -- Johan Hedberg Mon, 29 Nov 2004 17:49:26 +0200 + +osso-gwconnect (0.44) unstable; urgency=low + + * Assume raw mode for anything which is not DUN + * Further updates to README + * Fix missing BLUEZ_CFLAGS + * Include aclocal/ in dist + + -- Johan Hedberg Thu, 25 Nov 2004 17:49:29 +0200 + +osso-gwconnect (0.43) unstable; urgency=low + + * Added support for detecting OBEX Object Push Profile (OOP) + * Updated README + + -- Johan Hedberg Wed, 17 Nov 2004 18:26:14 +0200 + +osso-gwconnect (0.42) unstable; urgency=low + + * Included bt-cod.h + * Updated README + * Added pkg-config dependency to osso-gwconnect-dev + + -- Johan Hedberg Thu, 11 Nov 2004 10:24:52 +0200 + +osso-gwconnect (0.41) unstable; urgency=low + + * Misc. cleanup + * Don't detect SPP (it's not needed) + + -- Johan Hedberg Mon, 1 Nov 2004 15:49:34 +0200 + +osso-gwconnect (0.40) unstable; urgency=low + + * Fixed a couple of typos in bt-gconf.h + + -- Johan Hedberg Fri, 29 Oct 2004 14:13:37 +0300 + +osso-gwconnect (0.39) unstable; urgency=low + + * Added device icon macro to bt-gconf.h + + -- Johan Hedberg Fri, 29 Oct 2004 13:13:46 +0300 + +osso-gwconnect (0.38) unstable; urgency=low + + * Added gnome-bluetooth compatible variables to bt-gconf.h + * Added libglib2.0-dev dependency because bt-gconf.h needs glib.h + + -- Johan Hedberg Wed, 27 Oct 2004 13:18:28 +0300 + +osso-gwconnect (0.37) unstable; urgency=low + + * Initialize cfg (in btcond.c) before using it. + + -- Johan Hedberg Mon, 18 Oct 2004 15:30:44 +0300 + +osso-gwconnect (0.36) unstable; urgency=low + + * Make BT 1.2 support optional with --enable-bt12 + * Remove double conffiles + * Added manpages for the binaries + + -- Johan Hedberg Fri, 15 Oct 2004 11:18:11 +0300 + +osso-gwconnect (0.35) unstable; urgency=low + + * Removed "bt_disabled" reply parameter from connection_status method call + * Fixed typos in btsdp and btsearch D-BUS object paths (bt-dbus.h) + + -- Johan Hedberg Thu, 30 Sep 2004 10:25:46 +0300 + +osso-gwconnect (0.34) unstable; urgency=low + + * Added pkgconfig support (patch from Imendio) + + -- Johan Hedberg Tue, 21 Sep 2004 15:22:43 +0300 + +osso-gwconnect (0.33) unstable; urgency=low + + * Use raw mode for SAP RFCOMM dev node + * Don't use stty for setting raw mode (avoids extra connect). This should + be done from an application when it really wants to use the device + + -- Johan Hedberg Wed, 15 Sep 2004 16:35:06 +0300 + +osso-gwconnect (0.32) unstable; urgency=low + + * Removed coreutils dependency according to debian policy + * Renamed "invalid" error to "invalid_svc" + * Added "invalid_dev" error. + + -- Johan Hedberg Tue, 14 Sep 2004 14:55:16 +0300 + +osso-gwconnect (0.31) unstable; urgency=low + + * Fix for gconf.h (it tried to include old gw-gconf.h) + + -- Johan Hedberg Fri, 10 Sep 2004 13:12:53 +0300 + +osso-gwconnect (0.30) unstable; urgency=low + + * Renamed public header files to bt-dbus.h and bt-gconf.h + + -- Johan Hedberg Fri, 10 Sep 2004 09:36:04 +0300 + +osso-gwconnect (0.29) unstable; urgency=low + + * Doxygen configuration fixes + * Further naming updates (mainly to comments in the code) + * Small fix in test mode of btsearch + * Fix for connection_status reply + + -- Johan Hedberg Thu, 9 Sep 2004 18:04:04 +0300 + +osso-gwconnect (0.28) unstable; urgency=low + + * Naming updates (mostly gw -> bt or dev) + + -- Johan Hedberg Thu, 9 Sep 2004 16:50:03 +0300 + +osso-gwconnect (0.27) unstable; urgency=low + + * Fixed D-BUS replies when GW is not selected + + -- Johan Hedberg Fri, 3 Sep 2004 13:39:29 +0300 + +osso-gwconnect (0.26) unstable; urgency=low + + * Fix for the previous fix :-) + + -- Johan Hedberg Fri, 3 Sep 2004 12:50:11 +0300 + +osso-gwconnect (0.25) unstable; urgency=low + + * Fixes for gw_cap reply from Richard Hult + + -- Johan Hedberg Tue, 31 Aug 2004 10:11:28 +0300 + +osso-gwconnect (0.24) unstable; urgency=low + + * Updated for D-BUS 0.22 + + -- Johan Hedberg Thu, 19 Aug 2004 10:43:04 +0300 + +osso-gwconnect (0.23) unstable; urgency=low + + * Event handling fix + + -- Johan Hedberg Thu, 19 Aug 2004 10:42:18 +0300 + +osso-gwconnect (0.22) unstable; urgency=low + + * Another GConf fix + + -- Johan Hedberg Wed, 18 Aug 2004 15:29:31 +0300 + +osso-gwconnect (0.21) unstable; urgency=low + + * GConf fix + + -- Johan Hedberg Wed, 18 Aug 2004 15:16:12 +0300 + +osso-gwconnect (0.20) unstable; urgency=low + + * More fixes and cleanup + + -- Johan Hedberg Tue, 17 Aug 2004 17:32:14 +0300 + +osso-gwconnect (0.19) unstable; urgency=low + + * Changed get_gw_capability return parameter to string list + + -- Johan Hedberg Tue, 17 Aug 2004 14:41:50 +0300 + +osso-gwconnect (0.18) unstable; urgency=low + + * Fixes regarding multiple gw support + * Removed debian version from package version to conform with policy + * Removed gw_is_connectable method call from gwcond + + -- Johan Hedberg Tue, 17 Aug 2004 11:53:27 +0300 + +osso-gwconnect (0.17-1) unstable; urgency=low + + * Further updates for muiltiple gw support + * Fixed schema file + + -- Johan Hedberg Fri, 13 Aug 2004 14:02:41 +0300 + +osso-gwconnect (0.16-1) unstable; urgency=low + + * Changes towars support for multiple selected gw's + * Fixed a couple of segfaults introduced by changes in 0.15 + + -- Johan Hedberg Fri, 13 Aug 2004 13:46:09 +0300 + +osso-gwconnect (0.15-1) unstable; urgency=low + + * Changes in gconf stuff + + -- Johan Hedberg Thu, 12 Aug 2004 15:53:01 +0300 + +osso-gwconnect (0.14-1) unstable; urgency=low + + * Removed inquiry scan type command from gwsearch (does not have any effect + for us) + + -- Johan Hedberg Fri, 6 Aug 2004 11:00:14 +0300 + +osso-gwconnect (0.13-3) unstable; urgency=low + + * Typo fix for the previous postinst fix + + -- Johan Hedberg Tue, 3 Aug 2004 11:06:40 +0300 + +osso-gwconnect (0.13-2) unstable; urgency=low + + * Restart bluez-utils in postinst (restarting dbus kills it) + + -- Johan Hedberg Tue, 3 Aug 2004 10:55:20 +0300 + +osso-gwconnect (0.13-1) unstable; urgency=low + + * Fixed D-BUS configuration files + + -- Johan Hedberg Tue, 3 Aug 2004 10:24:12 +0300 + +osso-gwconnect (0.12-1) unstable; urgency=low + + * Added --enable-ossolog (enabled when building debian package) + * Fixed src/Makefile.am to always use -DDBUS_API_SUBJECT_TO_CHANGE + + -- Johan Hedberg Wed, 28 Jul 2004 13:36:53 +0300 + +osso-gwconnect (0.11-2) unstable; urgency=low + + * Remove "set -e" from prerm + + -- Johan Hedberg Tue, 27 Jul 2004 10:39:36 +0300 + +osso-gwconnect (0.11-1) unstable; urgency=low + + * Optimized gwsearch, integrated gw-inquiry. + * Removed dependency on psmisc + * gwcond checks for running hcid before continuing + * Use osso-log.h makros for syslog (solves #614) + * added build-dependency on libosso-dev + + -- Johan Hedberg Fri, 9 Jul 2004 16:07:27 +0300 + +osso-gwconnect (0.10-5) unstable; urgency=low + + * Move sudo from depends to pre-depends + + -- Johan Hedberg Wed, 30 Jun 2004 15:11:28 +0300 + +osso-gwconnect (0.10-4) unstable; urgency=low + + * Disable sudo support and run as root + + -- Johan Hedberg Tue, 29 Jun 2004 16:31:53 +0300 + +osso-gwconnect (0.10-3) unstable; urgency=low + + * Added "update-rc.d gwcond remove" to postinst so debhelper works correctly + + -- Johan Hedberg Tue, 29 Jun 2004 13:15:52 +0300 + +osso-gwconnect (0.10-2) unstable; urgency=low + + * Correct runlevels and startup order + + -- Johan Hedberg Tue, 29 Jun 2004 12:03:58 +0300 + +osso-gwconnect (0.10-1) unstable; urgency=low + + * Created osso-gwconnect-dev package with gw-dbus.h and gw-gconf.h + + -- Johan Hedberg Mon, 28 Jun 2004 14:14:57 +0300 + +osso-gwconnect (0.9-1) unstable; urgency=low + + * Assume unset BDA if 00:00:00:00:00:00 is given from the command line + * Added dependency to psmisc to ensure that we have killall + * Enabled starting of gwcond for default runlevels + * Added warning to preinst if user account is not found + + -- Johan Hedberg Thu, 24 Jun 2004 12:52:36 +0300 + +osso-gwconnect (0.8-1) unstable; urgency=low + + * Added Sim Access Profile detection for gwsdp and gwcond + * Fixed init script + + -- Johan Hedberg Mon, 21 Jun 2004 10:35:29 +0300 + +osso-gwconnect (0.7-1) unstable; urgency=low + + * Cleanup and fixes + * Optimization of gw-inquiry + * Migrated to automake & autoconf + * Extracted sdp-query from gwsdp to acheive non-blocking behaviour. + Added also a query_in_progress error to gwsdp + + -- Johan Hedberg Wed, 16 Jun 2004 10:16:49 +0300 + +osso-gwconnect (0.6-1) unstable; urgency=low + + * Cleanup and fixes in gwsearch + * Proper support for inquiry result with RSSI. + + -- Johan Hedberg Thu, 10 Jun 2004 17:08:37 +0300 + +osso-gwconnect (0.5-1) unstable; urgency=low + + * Fixed reference to gw-inquiry in gwsearch + + -- Johan Hedberg Fri, 4 Jun 2004 11:06:51 +0300 + +osso-gwconnect (0.4-2) unstable; urgency=low + + * Fixed postinst script + + -- Johan Hedberg Wed, 2 Jun 2004 14:51:17 +0300 + +osso-gwconnect (0.4-1) unstable; urgency=low + + * Added postinst script which restarts dbus + * Added connect_failed, link_key_ok and pin_req signals to gwcond + + -- Johan Hedberg Mon, 31 May 2004 16:03:52 +0300 + +osso-gwconnect (0.3-1) unstable; urgency=low + + * Fixed some memory leaks + * get_gw_cap() and get_rfcomm_dev() will update gw info if necessary. + This means that gw_is_connectable() is less usefull. + * Use "osso" in GConf path. + + -- Johan Hedberg Mon, 17 May 2004 10:20:06 +0300 + +osso-gwconnect (0.2-1) unstable; urgency=low + + * Support for Nokia FTP ("NFTP") added. + * rfcomm sudo support for user account. + + -- Johan Hedberg Thu, 13 May 2004 16:28:36 +0300 + +osso-gwconnect (0.1-2) unstable; urgency=low + + * Removed dependency for orbit + + -- Johan Hedberg Mon, 26 Apr 2004 12:32:19 +0300 + +osso-gwconnect (0.1-1) unstable; urgency=low + + * Initial Release. + + -- Johan Hedberg Mon, 22 Mar 2004 12:36:50 +0200 + --- osso-gwconnect-1.0.12.debian.orig/debian/osso-gwconnect.postinst +++ osso-gwconnect-1.0.12.debian/debian/osso-gwconnect.postinst @@ -0,0 +1,27 @@ +#! /bin/sh +# postinst script for osso-gwconnect +# +# see: dh_installdeb(1) + +set -e + +case "$1" in + install|upgrade|configure) + invoke-rc.d dbus reload + ;; + + abort-upgrade) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- osso-gwconnect-1.0.12.debian.orig/debian/btsdp.1 +++ osso-gwconnect-1.0.12.debian/debian/btsdp.1 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH BTSDP 1 "Fri Oct 15 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +btsdp \- Bluetooth SDP application +.SH SYNOPSIS +.B btsdp +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B btsdp +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBbtsdp\fP is a program that... +.SH OPTIONS +A summary of options is included below. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH AUTHOR +btsdp was written by Johan Hedberg . --- osso-gwconnect-1.0.12.debian.orig/debian/osso-gwconnect-dev.install +++ osso-gwconnect-1.0.12.debian/debian/osso-gwconnect-dev.install @@ -0,0 +1,2 @@ +usr/include/*.h +usr/lib/pkgconfig/*.pc --- osso-gwconnect-1.0.12.debian.orig/debian/README.source +++ osso-gwconnect-1.0.12.debian/debian/README.source @@ -0,0 +1,58 @@ +Patches +======= + +This package occasionally uses quilt to store modifications to the upstream +source, although in most uploads no patches are needed. + +To get the fully patched source: make -f debian/rules patch + +To revert to what's in git: make -f debian/rules unpatch + +To add a patch: obtain a diff and put it in debian/patches, or see below + +To remove an existing patch: delete it from debian/patches + +Packaging using git +=================== + +The repository contains an appropriate debian/gbp.conf to build this package +using git-buildpackage. The debian branch contains the latest upstream versions +(for unstable, or experimental while a freeze is in progress). The debian- +branch contains versions targeted for a specific release (lenny, squeeze, etc.) + +Here's how to build it: + + git clone git://git.debian.org/git/pkg-maemo/osso-gwconnect.git + cd osso-gwconnect + git checkout debian + git-buildpackage -us -uc + +or for testing/stable branches like debian-lenny: + + git clone git://git.debian.org/git/pkg-maemo/osso-gwconnect.git + cd osso-gwconnect + git checkout debian-lenny + git-buildpackage -us -uc --git-debian-branch=debian-lenny + +The branch 'upstream' is a copy of the contents of upstream tarballs. To import +upstream tarballs use: + + git checkout debian + git-import-orig ~/osso-gwconnect-0.7.x.tar.gz + +The branch 'debian-patches' is 'upstream' plus any patches needed for Debian. +It should be rebased on 'upstream' after each upstream release: + + git checkout debian-patches + git rebase upstream + +The preferred way of adding patches is to make a commit to the debian-patches +branch: + + git checkout debian-patches + + git commit + git checkout debian + fakeroot debian/rules update-patches + + -- Jonny Lamb , Tue, 28 Apr 2009 17:54:40 +0100 --- osso-gwconnect-1.0.12.debian.orig/debian/copyright +++ osso-gwconnect-1.0.12.debian/debian/copyright @@ -0,0 +1,34 @@ +osso-gwconnect was downloaded from: + + +The tarball was repacked without the debian/ dir and without some autotools +symlinks to a scratchbox environment: + rm -f compile depcomp install-sh missing +and to force an autogen.sh: + rm -f configure + +Copyright: + Copyright (C) 2006 Nokia Corporation. All rights reserved. + +Upstream Author: + Author Johan Hedberg + +License: + + Copyright (C) 2006 Nokia Corporation. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, as + published by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +A full copy of the GPL version 2 can be found in +/usr/share/common-licenses/GPL-2 on Ubuntu and Debian systems --- osso-gwconnect-1.0.12.debian.orig/debian/compat +++ osso-gwconnect-1.0.12.debian/debian/compat @@ -0,0 +1 @@ +5 --- osso-gwconnect-1.0.12.debian.orig/debian/update-patches.mk +++ osso-gwconnect-1.0.12.debian/debian/update-patches.mk @@ -0,0 +1,12 @@ +update-patches: + mkdir -p $(CURDIR)/debian/patches + rm -f $(CURDIR)/debian/patches/*.patch + rm -f $(CURDIR)/debian/patches/series + git format-patch -N -o $(CURDIR)/debian/patches debian-patches ^upstream + for patch in $(CURDIR)/debian/patches/*.patch ; \ + do \ + lines=$$(cat $$patch | wc -l) ; \ + head -n $$(($$lines - 3)) $$patch > $${patch}.chomped ; \ + mv $${patch}.chomped $$patch ; \ + echo $$(basename $${patch}) >> $(CURDIR)/debian/patches/series ; \ + done --- osso-gwconnect-1.0.12.debian.orig/debian/btcond.1 +++ osso-gwconnect-1.0.12.debian/debian/btcond.1 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH BTCOND 1 "Fri Oct 15 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +btcond \- Bluetooth Connection Daemon +.SH SYNOPSIS +.B btcond +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B btcond +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBbtcond\fP is a program that... +.SH OPTIONS +A summary of options is included below. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH AUTHOR +btcond was written by Johan Hedberg . --- osso-gwconnect-1.0.12.debian.orig/debian/btsearch.1 +++ osso-gwconnect-1.0.12.debian/debian/btsearch.1 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH BTSEARCH 1 "Fri Oct 15 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +btsearch \- Bluetooth Inquiry application +.SH SYNOPSIS +.B btsearch +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B btsearch +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBbtsearch\fP is a program that... +.SH OPTIONS +A summary of options is included below. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH AUTHOR +btsearch was written by Johan Hedberg . --- osso-gwconnect-1.0.12.debian.orig/debian/rules +++ osso-gwconnect-1.0.12.debian/debian/rules @@ -0,0 +1,81 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +include $(CURDIR)/debian/update-patches.mk + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +confflags += --enable-tracing \ + --enable-ossolog \ + --enable-nokiahci + +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build $(DEB_HOST_GNU_TYPE) +else + confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif + +CFLAGS += -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2) + +configure: configure.ac + AUTOGEN_SUBDIR_MODE=1 NOCONFIGURE=yes ./autogen.sh + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure $(confflags) \ + --prefix=/usr \ + --datadir=\$${prefix}/share\ + --sysconfdir=/etc \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) clean + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_install --sourcedir=debian/tmp + dh_installchangelogs + dh_installdocs + dh_installman -posso-gwconnect debian/btcond.1 debian/btsdp.1 debian/btsearch.1 debian/sdp-query.1 + #dh_installinit --name=btcond -- start 30 2 3 4 . stop 20 0 1 6 . stop 15 5 . + dh_link + dh_strip + dh_compress + dh_fixperms + dh_gconf + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- osso-gwconnect-1.0.12.debian.orig/debian/gbp.conf +++ osso-gwconnect-1.0.12.debian/debian/gbp.conf @@ -0,0 +1,8 @@ +[DEFAULT] +debian-branch = debian +upstream-branch = upstream +pristine-tar = True + +[git-buildpackage] +tarball-dir = ../tarballs/ +export-dir = ../build-area/ --- osso-gwconnect-1.0.12.debian.orig/debian/sdp-query.1 +++ osso-gwconnect-1.0.12.debian/debian/sdp-query.1 @@ -0,0 +1,41 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SDPQUERY 1 "Fri Oct 15 2004" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +sdp\-query \- Bluetooth SDP backend +.SH SYNOPSIS +.B sdp-query +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B sdp\-query +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBsdp\-query\fP is a program that... +.SH OPTIONS +A summary of options is included below. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH AUTHOR +sdp\-query was written by Johan Hedberg . --- osso-gwconnect-1.0.12.debian.orig/debian/control +++ osso-gwconnect-1.0.12.debian/debian/control @@ -0,0 +1,53 @@ +Source: osso-gwconnect +Section: net +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Maemo Maintainers +Uploaders: Loic Minier , + Jonny Lamb , + Riku Voipio +Build-Depends: debhelper (>= 5), + libdbus-1-dev, + libdbus-glib-1-dev, + libglib2.0-dev (>= 2.6.0), + libbluetooth-dev (>= 3.2), + libosso-dev, + mce-dev, + autoconf, + automake, + gtk-doc-tools +Standards-Version: 3.7.3 +Vcs-Git: git://git.debian.org/pkg-maemo/osso-gwconnect.git +Vcs-Browser: http://git.debian.org/?p=pkg-maemo/osso-gwconnect.git + +Package: osso-gwconnect +Section: net +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + dbus +Recommends: bluez-utils, +Suggests: mce, dsme +Description: Bluetooth connectivity applications + osso-gwconnect contains D-BUS applications for Bluetooth connectivity. + The daemon is responsible for controlling connections to Bluetooth + devices as well as messaging related information through the system + D-BUS. The daemon listens for messages assigned to it on the system + D-BUS as well as broadcasting status signals to the system D-BUS. + . + This package contains the applications associated with osso-gwconnect. + +Package: osso-gwconnect-dev +Section: devel +Architecture: all +Depends: ${misc:Depends}, + libglib2.0-dev, + pkg-config +Description: Bluetooth connectivity applications - development files + osso-gwconnect contains D-BUS applications for Bluetooth connectivity. + The daemon is responsible for controlling connections to Bluetooth + devices as well as messaging related information through the system + D-BUS. The daemon listens for messages assigned to it on the system + D-BUS as well as broadcasting status signals to the system D-BUS. + . + This package contains the development files.