From 77ae1fd1f346832055a757334953b178ab4616b76f2a643bf8ac57d795694dfd Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Tue, 13 Jul 2010 07:06:06 +0000 Subject: [PATCH 1/4] Accepting request 42852 from home:seife:testing Copy from home:seife:testing/bluez via accept of submit request 42852 revision 58. Request was accepted with message: update to bluez-4.68 OBS-URL: https://build.opensuse.org/request/show/42852 OBS-URL: https://build.opensuse.org/package/show/Base:System/bluez?expand=0&rev=56 --- bluez-4.67.tar.bz2 | 3 --- bluez-4.68.tar.bz2 | 3 +++ bluez-gstreamer.changes | 8 ++++++++ bluez-gstreamer.spec | 2 +- bluez.changes | 8 ++++++++ bluez.spec | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) delete mode 100644 bluez-4.67.tar.bz2 create mode 100644 bluez-4.68.tar.bz2 diff --git a/bluez-4.67.tar.bz2 b/bluez-4.67.tar.bz2 deleted file mode 100644 index a0b592e..0000000 --- a/bluez-4.67.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:41e536ce412a0af1f31b897a2787df5e3c0b231a1428fa1120c3306a0498d09e -size 801512 diff --git a/bluez-4.68.tar.bz2 b/bluez-4.68.tar.bz2 new file mode 100644 index 0000000..e2ba158 --- /dev/null +++ b/bluez-4.68.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35746401170d497ad7b24ab9fe00e10cdb74db306d3e201ebc1ffa917a8ca048 +size 804803 diff --git a/bluez-gstreamer.changes b/bluez-gstreamer.changes index 428927a..0b8e3d3 100644 --- a/bluez-gstreamer.changes +++ b/bluez-gstreamer.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue Jul 13 06:19:00 UTC 2010 - seife@opensuse.org + +- update to bluez-4.68: + - Fix initialization of adapters in RAW mode. + - Add initial set of LE commands and events definitions. + - Add mode option for L2CAP sockets to the BtIO API. + ------------------------------------------------------------------- Sat Jul 3 14:59:44 UTC 2010 - seife@opensuse.org diff --git a/bluez-gstreamer.spec b/bluez-gstreamer.spec index 717a305..0ba86fe 100644 --- a/bluez-gstreamer.spec +++ b/bluez-gstreamer.spec @@ -24,7 +24,7 @@ BuildRequires: glib2-devel libnl-devel libusb-devel BuildRequires: alsa-devel libsndfile-devel pkg-config udev BuildRequires: gstreamer-0_10-devel gstreamer-0_10-plugins-base-devel Url: http://www.bluez.org -Version: 4.67 +Version: 4.68 Release: 1 Summary: Bluetooth Sound Support Group: Productivity/Multimedia/Sound/Utilities diff --git a/bluez.changes b/bluez.changes index 428927a..0b8e3d3 100644 --- a/bluez.changes +++ b/bluez.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue Jul 13 06:19:00 UTC 2010 - seife@opensuse.org + +- update to bluez-4.68: + - Fix initialization of adapters in RAW mode. + - Add initial set of LE commands and events definitions. + - Add mode option for L2CAP sockets to the BtIO API. + ------------------------------------------------------------------- Sat Jul 3 14:59:44 UTC 2010 - seife@opensuse.org diff --git a/bluez.spec b/bluez.spec index d608c05..d5e0bf1 100644 --- a/bluez.spec +++ b/bluez.spec @@ -23,7 +23,7 @@ BuildRequires: dbus-1-devel flex BuildRequires: glib2-devel libnl-devel libusb-devel BuildRequires: alsa-devel libsndfile-devel pkg-config udev Url: http://www.bluez.org -Version: 4.67 +Version: 4.68 Release: 1 Summary: Bluetooth Stack for Linux Group: Hardware/Mobile From 753c15d46741eb8319cef09d2059cf0f043203fc15004995a184bca2dc084ae0 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Tue, 13 Jul 2010 08:16:37 +0000 Subject: [PATCH 2/4] fix instant segfault OBS-URL: https://build.opensuse.org/package/show/Base:System/bluez?expand=0&rev=57 --- ...ve-double-g_option_context_free-call.patch | 25 +++++++++++++++++++ bluez-gstreamer.changes | 6 +++++ bluez.changes | 6 +++++ bluez.spec | 3 +++ 4 files changed, 40 insertions(+) create mode 100644 0001-Remove-double-g_option_context_free-call.patch diff --git a/0001-Remove-double-g_option_context_free-call.patch b/0001-Remove-double-g_option_context_free-call.patch new file mode 100644 index 0000000..354954a --- /dev/null +++ b/0001-Remove-double-g_option_context_free-call.patch @@ -0,0 +1,25 @@ +From 86b16d8a63d8d6191533418dd1c38ce35c3fbf0a Mon Sep 17 00:00:00 2001 +From: Marcel Holtmann +Date: Mon, 12 Jul 2010 23:59:34 -0300 +Subject: [PATCH] Remove double g_option_context_free() call + +--- + src/main.c | 2 -- + 1 files changed, 0 insertions(+), 2 deletions(-) + +diff --git a/src/main.c b/src/main.c +index 94a6f0e..6113217 100644 +--- a/src/main.c ++++ b/src/main.c +@@ -410,8 +410,6 @@ int main(int argc, char *argv[]) + } + } + +- g_option_context_free(context); +- + if (option_detach == TRUE && option_udev == FALSE) { + if (daemon(0, 0)) { + perror("Can't start daemon"); +-- +1.7.1 + diff --git a/bluez-gstreamer.changes b/bluez-gstreamer.changes index 0b8e3d3..b7fd706 100644 --- a/bluez-gstreamer.changes +++ b/bluez-gstreamer.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 13 08:12:57 UTC 2010 - seife@opensuse.org + +- fix instant segfault of bluetoothd (upstream commit + 86b16d8a63d8d6191533418dd1c38ce35c3fbf0a) + ------------------------------------------------------------------- Tue Jul 13 06:19:00 UTC 2010 - seife@opensuse.org diff --git a/bluez.changes b/bluez.changes index 0b8e3d3..b7fd706 100644 --- a/bluez.changes +++ b/bluez.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 13 08:12:57 UTC 2010 - seife@opensuse.org + +- fix instant segfault of bluetoothd (upstream commit + 86b16d8a63d8d6191533418dd1c38ce35c3fbf0a) + ------------------------------------------------------------------- Tue Jul 13 06:19:00 UTC 2010 - seife@opensuse.org diff --git a/bluez.spec b/bluez.spec index d5e0bf1..047b381 100644 --- a/bluez.spec +++ b/bluez.spec @@ -38,6 +38,8 @@ Source6: README.SUSE Source7: bluetooth.modprobe Patch1: bluez-4.44-udev-use-helperscript.diff Patch2: 001-remove-rule-dell-mouse.patch +# needed until next upstream release --seife +Patch42: 0001-Remove-double-g_option_context_free-call.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: bluez-utils = 3.36 Obsoletes: bluez-utils <= 3.36 @@ -176,6 +178,7 @@ Authors: %setup -q %patch1 -p1 %patch2 -p1 +%patch42 -p1 cp %{S:6} . %{?suse_update_config:%{suse_update_config -f . }} mkdir dbus-apis From 5d23922f9d3d06a486ea6f529796ab8306c683a63f53e6d71bb075e2e98021d9 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Wed, 14 Jul 2010 06:18:34 +0000 Subject: [PATCH 3/4] update to 4.69 OBS-URL: https://build.opensuse.org/package/show/Base:System/bluez?expand=0&rev=58 --- ...ve-double-g_option_context_free-call.patch | 25 ------------------- bluez-4.68.tar.bz2 | 3 --- bluez-4.69.tar.bz2 | 3 +++ bluez-gstreamer.changes | 9 +++++++ bluez-gstreamer.spec | 2 +- bluez.changes | 9 +++++++ bluez.spec | 4 +-- 7 files changed, 23 insertions(+), 32 deletions(-) delete mode 100644 0001-Remove-double-g_option_context_free-call.patch delete mode 100644 bluez-4.68.tar.bz2 create mode 100644 bluez-4.69.tar.bz2 diff --git a/0001-Remove-double-g_option_context_free-call.patch b/0001-Remove-double-g_option_context_free-call.patch deleted file mode 100644 index 354954a..0000000 --- a/0001-Remove-double-g_option_context_free-call.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 86b16d8a63d8d6191533418dd1c38ce35c3fbf0a Mon Sep 17 00:00:00 2001 -From: Marcel Holtmann -Date: Mon, 12 Jul 2010 23:59:34 -0300 -Subject: [PATCH] Remove double g_option_context_free() call - ---- - src/main.c | 2 -- - 1 files changed, 0 insertions(+), 2 deletions(-) - -diff --git a/src/main.c b/src/main.c -index 94a6f0e..6113217 100644 ---- a/src/main.c -+++ b/src/main.c -@@ -410,8 +410,6 @@ int main(int argc, char *argv[]) - } - } - -- g_option_context_free(context); -- - if (option_detach == TRUE && option_udev == FALSE) { - if (daemon(0, 0)) { - perror("Can't start daemon"); --- -1.7.1 - diff --git a/bluez-4.68.tar.bz2 b/bluez-4.68.tar.bz2 deleted file mode 100644 index e2ba158..0000000 --- a/bluez-4.68.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35746401170d497ad7b24ab9fe00e10cdb74db306d3e201ebc1ffa917a8ca048 -size 804803 diff --git a/bluez-4.69.tar.bz2 b/bluez-4.69.tar.bz2 new file mode 100644 index 0000000..156dc5f --- /dev/null +++ b/bluez-4.69.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975b0a77b5e986c92822cd55e3d73b5f5059b7f5f9141126416e572941e36ad3 +size 803066 diff --git a/bluez-gstreamer.changes b/bluez-gstreamer.changes index b7fd706..3aa91e7 100644 --- a/bluez-gstreamer.changes +++ b/bluez-gstreamer.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Wed Jul 14 06:14:38 UTC 2010 - seife@opensuse.org + +- update to bluez-4.69: + - Fix issue with calling g_option_context_free() twice. + - Fix inconsistencies with initial LE commands and events. + - Add support for telephony ClearLastNumber method. + - Add support for network server interface. + ------------------------------------------------------------------- Tue Jul 13 08:12:57 UTC 2010 - seife@opensuse.org diff --git a/bluez-gstreamer.spec b/bluez-gstreamer.spec index 0ba86fe..0485c68 100644 --- a/bluez-gstreamer.spec +++ b/bluez-gstreamer.spec @@ -24,7 +24,7 @@ BuildRequires: glib2-devel libnl-devel libusb-devel BuildRequires: alsa-devel libsndfile-devel pkg-config udev BuildRequires: gstreamer-0_10-devel gstreamer-0_10-plugins-base-devel Url: http://www.bluez.org -Version: 4.68 +Version: 4.69 Release: 1 Summary: Bluetooth Sound Support Group: Productivity/Multimedia/Sound/Utilities diff --git a/bluez.changes b/bluez.changes index b7fd706..3aa91e7 100644 --- a/bluez.changes +++ b/bluez.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Wed Jul 14 06:14:38 UTC 2010 - seife@opensuse.org + +- update to bluez-4.69: + - Fix issue with calling g_option_context_free() twice. + - Fix inconsistencies with initial LE commands and events. + - Add support for telephony ClearLastNumber method. + - Add support for network server interface. + ------------------------------------------------------------------- Tue Jul 13 08:12:57 UTC 2010 - seife@opensuse.org diff --git a/bluez.spec b/bluez.spec index 047b381..fb2a5d2 100644 --- a/bluez.spec +++ b/bluez.spec @@ -23,7 +23,7 @@ BuildRequires: dbus-1-devel flex BuildRequires: glib2-devel libnl-devel libusb-devel BuildRequires: alsa-devel libsndfile-devel pkg-config udev Url: http://www.bluez.org -Version: 4.68 +Version: 4.69 Release: 1 Summary: Bluetooth Stack for Linux Group: Hardware/Mobile @@ -39,7 +39,6 @@ Source7: bluetooth.modprobe Patch1: bluez-4.44-udev-use-helperscript.diff Patch2: 001-remove-rule-dell-mouse.patch # needed until next upstream release --seife -Patch42: 0001-Remove-double-g_option_context_free-call.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: bluez-utils = 3.36 Obsoletes: bluez-utils <= 3.36 @@ -178,7 +177,6 @@ Authors: %setup -q %patch1 -p1 %patch2 -p1 -%patch42 -p1 cp %{S:6} . %{?suse_update_config:%{suse_update_config -f . }} mkdir dbus-apis From 0bf3f7897f4c9ded119c83fa75071009afcf6db858c81b4208c00368f9a18f61 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Mon, 19 Jul 2010 11:35:29 +0000 Subject: [PATCH 4/4] Updating link to change in openSUSE:Factory/bluez revision 57.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/bluez?expand=0&rev=8e107a04aa63f03ee8571e99f41222f7 --- bluez-gstreamer.spec | 2 +- bluez.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bluez-gstreamer.spec b/bluez-gstreamer.spec index 0485c68..0905b68 100644 --- a/bluez-gstreamer.spec +++ b/bluez-gstreamer.spec @@ -1,5 +1,5 @@ # -# spec file for package bluez-gstreamer (Version 4.67) +# spec file for package bluez-gstreamer (Version 4.69) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # diff --git a/bluez.spec b/bluez.spec index fb2a5d2..25e84d7 100644 --- a/bluez.spec +++ b/bluez.spec @@ -1,5 +1,5 @@ # -# spec file for package bluez (Version 4.67) +# spec file for package bluez (Version 4.69) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. #