This commit is contained in:
parent
a66b6303bd
commit
5507a3a703
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:73952909014b537abc7ad678532e355e2b6f52d301e1e61cbb6ebae6472bea6d
|
||||
size 758832
|
3
bluez-4.35.tar.bz2
Normal file
3
bluez-4.35.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9f42b0036630923229c5bf92569155a990d4c02c430094153560347d9f2e8d92
|
||||
size 769000
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 12 05:40:31 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.35:
|
||||
- Add support for Handsfree profile headset role.
|
||||
- Add additional checks for open SEIDs from clients.
|
||||
- Fix device removal while audio IPC client is connected.
|
||||
- Fix device removal when an authorization request is pending.
|
||||
- Fix incoming AVDTP connect while authorization in progress.
|
||||
- Fix disconnection timers for audio support.
|
||||
- Fix various potential NULL pointer deferences.
|
||||
- Fix callheld indicator value for multiple calls.
|
||||
- Fix voice number type usage.
|
||||
- Fix GDBus watch handling.
|
||||
- add an explicit requires: for the exact libbluetooth3 version
|
||||
to the bluez package. Fixes the problem that it was possible to
|
||||
install a newer bluez package without updating the libraries
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 31 13:43:03 CEST 2009 - seife@suse.de
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package bluez-gstreamer (Version 4.34)
|
||||
# spec file for package bluez-gstreamer (Version 4.35)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -24,7 +24,7 @@ BuildRequires: glib2-devel libnl-devel libusb-devel
|
||||
BuildRequires: alsa-devel libsndfile-devel
|
||||
BuildRequires: gstreamer-0_10-devel gstreamer-0_10-plugins-base-devel
|
||||
Url: http://www.bluez.org
|
||||
Version: 4.34
|
||||
Version: 4.35
|
||||
Release: 1
|
||||
Summary: Bluetooth Sound Support
|
||||
Group: Productivity/Multimedia/Sound/Utilities
|
||||
@ -109,6 +109,21 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_libdir}/gstreamer-*/*.so
|
||||
|
||||
%changelog
|
||||
* Sun Apr 12 2009 seife@suse.de
|
||||
- update to bluez-4.35:
|
||||
- Add support for Handsfree profile headset role.
|
||||
- Add additional checks for open SEIDs from clients.
|
||||
- Fix device removal while audio IPC client is connected.
|
||||
- Fix device removal when an authorization request is pending.
|
||||
- Fix incoming AVDTP connect while authorization in progress.
|
||||
- Fix disconnection timers for audio support.
|
||||
- Fix various potential NULL pointer deferences.
|
||||
- Fix callheld indicator value for multiple calls.
|
||||
- Fix voice number type usage.
|
||||
- Fix GDBus watch handling.
|
||||
- add an explicit requires: for the exact libbluetooth3 version
|
||||
to the bluez package. Fixes the problem that it was possible to
|
||||
install a newer bluez package without updating the libraries
|
||||
* Tue Mar 31 2009 seife@suse.de
|
||||
- update to bluez-4.34:
|
||||
- Add support for version checks of plugins.
|
||||
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 12 05:40:31 CEST 2009 - seife@suse.de
|
||||
|
||||
- update to bluez-4.35:
|
||||
- Add support for Handsfree profile headset role.
|
||||
- Add additional checks for open SEIDs from clients.
|
||||
- Fix device removal while audio IPC client is connected.
|
||||
- Fix device removal when an authorization request is pending.
|
||||
- Fix incoming AVDTP connect while authorization in progress.
|
||||
- Fix disconnection timers for audio support.
|
||||
- Fix various potential NULL pointer deferences.
|
||||
- Fix callheld indicator value for multiple calls.
|
||||
- Fix voice number type usage.
|
||||
- Fix GDBus watch handling.
|
||||
- add an explicit requires: for the exact libbluetooth3 version
|
||||
to the bluez package. Fixes the problem that it was possible to
|
||||
install a newer bluez package without updating the libraries
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 31 13:43:03 CEST 2009 - seife@suse.de
|
||||
|
||||
|
20
bluez.spec
20
bluez.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package bluez (Version 4.34)
|
||||
# spec file for package bluez (Version 4.35)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -23,7 +23,7 @@ BuildRequires: dbus-1-devel flex
|
||||
BuildRequires: glib2-devel libnl-devel libusb-devel
|
||||
BuildRequires: alsa-devel libsndfile-devel
|
||||
Url: http://www.bluez.org
|
||||
Version: 4.34
|
||||
Version: 4.35
|
||||
Release: 1
|
||||
Summary: Bluetooth Stack for Linux
|
||||
Group: Hardware/Mobile
|
||||
@ -44,6 +44,7 @@ Provides: bluez-utils = 3.36
|
||||
Obsoletes: bluez-utils <= 3.36
|
||||
Provides: bluez-audio = 3.36
|
||||
Obsoletes: bluez-audio <= 3.36
|
||||
Requires: libbluetooth3 = %{version}
|
||||
|
||||
%description
|
||||
The Bluetooth stack for Linux.
|
||||
@ -353,6 +354,21 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%doc %{_mandir}/man1/dund.1.gz
|
||||
|
||||
%changelog
|
||||
* Sun Apr 12 2009 seife@suse.de
|
||||
- update to bluez-4.35:
|
||||
- Add support for Handsfree profile headset role.
|
||||
- Add additional checks for open SEIDs from clients.
|
||||
- Fix device removal while audio IPC client is connected.
|
||||
- Fix device removal when an authorization request is pending.
|
||||
- Fix incoming AVDTP connect while authorization in progress.
|
||||
- Fix disconnection timers for audio support.
|
||||
- Fix various potential NULL pointer deferences.
|
||||
- Fix callheld indicator value for multiple calls.
|
||||
- Fix voice number type usage.
|
||||
- Fix GDBus watch handling.
|
||||
- add an explicit requires: for the exact libbluetooth3 version
|
||||
to the bluez package. Fixes the problem that it was possible to
|
||||
install a newer bluez package without updating the libraries
|
||||
* Tue Mar 31 2009 seife@suse.de
|
||||
- update to bluez-4.34:
|
||||
- Add support for version checks of plugins.
|
||||
|
Loading…
Reference in New Issue
Block a user