Accepting request 78772 from Base:System
update to bluez-4.96 OBS-URL: https://build.opensuse.org/request/show/78772 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bluez?expand=0&rev=86
This commit is contained in:
commit
0ad9b7a3c8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:26286e653361a0342349d29e302969a01d1c9d534a6ee365ccbf0a0b79b5729e
|
|
||||||
size 934438
|
|
3
bluez-4.96.tar.bz2
Normal file
3
bluez-4.96.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7b34aa28c831d77e92d348951653bc58347f4b6177e2f89cd5ffb8ffc37142ae
|
||||||
|
size 952234
|
@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 4 18:51:02 UTC 2011 - seife+obs@b1-systems.com
|
||||||
|
|
||||||
|
- update to bluez-4.96:
|
||||||
|
- Fix issue with race condition in AVDTP stream start.
|
||||||
|
- Fix issue with global adapter offline switching.
|
||||||
|
- Fix issue with pairing and No Bonding devices.
|
||||||
|
- Add support for Nintendo Wii Remote pairing.
|
||||||
|
- enable proximity, wiimote, thermometer plugins
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 5 07:29:57 UTC 2011 - seife+obs@b1-systems.com
|
||||||
|
|
||||||
|
- update to bluez-4.95:
|
||||||
|
- Fix issue with AVCTP replies with invalid PID.
|
||||||
|
- Fix issue with AVRCP and unknown packet types.
|
||||||
|
- Fix issue with AVRCP not using NOT_IMPLEMENTED correctly.
|
||||||
|
- Fix issue with AVDTP discovery if all endpoints are in use.
|
||||||
|
- Fix issue with invalid memory writes and media support.
|
||||||
|
- Fix issue with not removing device alias and unbonding.
|
||||||
|
- Fix issue with device disconnects and offline mode handling.
|
||||||
|
- Add support for setting adapter name based on machine-info.
|
||||||
|
- Add support for systemd service configuration.
|
||||||
|
- add systemd .service file (systemd support needs more work still)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 22 16:02:15 CEST 2011 - meissner@suse.de
|
||||||
|
|
||||||
|
- added baselibs.conf bnc#700840
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 14 06:49:35 UTC 2011 - seife+obs@b1-systems.com
|
Tue Jun 14 06:49:35 UTC 2011 - seife+obs@b1-systems.com
|
||||||
|
|
||||||
|
@ -24,6 +24,9 @@ BuildRequires: dbus-1-devel flex
|
|||||||
BuildRequires: libcap-ng-devel
|
BuildRequires: libcap-ng-devel
|
||||||
%define with_libcapng --enable-capng
|
%define with_libcapng --enable-capng
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?suse_version} > 1130
|
||||||
|
BuildRequires: pkgconfig(systemd)
|
||||||
|
%endif
|
||||||
BuildRequires: glib2-devel >= 2.16
|
BuildRequires: glib2-devel >= 2.16
|
||||||
BuildRequires: libnl-devel libusb-devel
|
BuildRequires: libnl-devel libusb-devel
|
||||||
BuildRequires: alsa-devel libsndfile-devel pkg-config udev
|
BuildRequires: alsa-devel libsndfile-devel pkg-config udev
|
||||||
@ -31,7 +34,7 @@ BuildRequires: gstreamer-0_10-devel gstreamer-0_10-plugins-base-devel
|
|||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
Url: http://www.bluez.org
|
Url: http://www.bluez.org
|
||||||
Version: 4.94
|
Version: 4.96
|
||||||
Release: 2
|
Release: 2
|
||||||
Summary: Bluetooth Sound Support
|
Summary: Bluetooth Sound Support
|
||||||
Group: Productivity/Multimedia/Sound/Utilities
|
Group: Productivity/Multimedia/Sound/Utilities
|
||||||
@ -90,7 +93,10 @@ CFLAGS="$RPM_OPT_FLAGS -g" \
|
|||||||
--enable-test \
|
--enable-test \
|
||||||
--enable-pand \
|
--enable-pand \
|
||||||
--enable-dund \
|
--enable-dund \
|
||||||
--enable-configfiles \
|
--enable-proximity \
|
||||||
|
--enable-wiimote \
|
||||||
|
--enable-thermometer \
|
||||||
|
--enable-datafiles \
|
||||||
--enable-pcmcia \
|
--enable-pcmcia \
|
||||||
%{?with_libcapng}
|
%{?with_libcapng}
|
||||||
make %{?_smp_mflags} all V=1
|
make %{?_smp_mflags} all V=1
|
||||||
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 4 18:51:02 UTC 2011 - seife+obs@b1-systems.com
|
||||||
|
|
||||||
|
- update to bluez-4.96:
|
||||||
|
- Fix issue with race condition in AVDTP stream start.
|
||||||
|
- Fix issue with global adapter offline switching.
|
||||||
|
- Fix issue with pairing and No Bonding devices.
|
||||||
|
- Add support for Nintendo Wii Remote pairing.
|
||||||
|
- enable proximity, wiimote, thermometer plugins
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 5 07:29:57 UTC 2011 - seife+obs@b1-systems.com
|
||||||
|
|
||||||
|
- update to bluez-4.95:
|
||||||
|
- Fix issue with AVCTP replies with invalid PID.
|
||||||
|
- Fix issue with AVRCP and unknown packet types.
|
||||||
|
- Fix issue with AVRCP not using NOT_IMPLEMENTED correctly.
|
||||||
|
- Fix issue with AVDTP discovery if all endpoints are in use.
|
||||||
|
- Fix issue with invalid memory writes and media support.
|
||||||
|
- Fix issue with not removing device alias and unbonding.
|
||||||
|
- Fix issue with device disconnects and offline mode handling.
|
||||||
|
- Add support for setting adapter name based on machine-info.
|
||||||
|
- Add support for systemd service configuration.
|
||||||
|
- add systemd .service file (systemd support needs more work still)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 22 16:02:15 CEST 2011 - meissner@suse.de
|
Wed Jun 22 16:02:15 CEST 2011 - meissner@suse.de
|
||||||
|
|
||||||
|
13
bluez.spec
13
bluez.spec
@ -25,13 +25,16 @@ BuildRequires: dbus-1-devel flex
|
|||||||
BuildRequires: libcap-ng-devel
|
BuildRequires: libcap-ng-devel
|
||||||
%define with_libcapng --enable-capng
|
%define with_libcapng --enable-capng
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?suse_version} > 1130
|
||||||
|
BuildRequires: pkgconfig(systemd)
|
||||||
|
%endif
|
||||||
BuildRequires: glib2-devel >= 2.16
|
BuildRequires: glib2-devel >= 2.16
|
||||||
BuildRequires: libnl-devel libusb-devel
|
BuildRequires: libnl-devel libusb-devel
|
||||||
BuildRequires: alsa-devel libsndfile-devel pkg-config udev
|
BuildRequires: alsa-devel libsndfile-devel pkg-config udev
|
||||||
BuildRequires: readline-devel
|
BuildRequires: readline-devel
|
||||||
BuildRequires: libudev-devel
|
BuildRequires: libudev-devel
|
||||||
Url: http://www.bluez.org
|
Url: http://www.bluez.org
|
||||||
Version: 4.94
|
Version: 4.96
|
||||||
Release: 3
|
Release: 3
|
||||||
Summary: Bluetooth Stack for Linux
|
Summary: Bluetooth Stack for Linux
|
||||||
Group: Hardware/Mobile
|
Group: Hardware/Mobile
|
||||||
@ -214,7 +217,10 @@ CFLAGS="$RPM_OPT_FLAGS -g" \
|
|||||||
--enable-test \
|
--enable-test \
|
||||||
--enable-pand \
|
--enable-pand \
|
||||||
--enable-dund \
|
--enable-dund \
|
||||||
--enable-configfiles \
|
--enable-proximity \
|
||||||
|
--enable-wiimote \
|
||||||
|
--enable-thermometer \
|
||||||
|
--enable-datafiles \
|
||||||
--enable-pcmcia \
|
--enable-pcmcia \
|
||||||
%{?with_libcapng}
|
%{?with_libcapng}
|
||||||
make %{?_smp_mflags} all V=1
|
make %{?_smp_mflags} all V=1
|
||||||
@ -317,6 +323,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%dir /var/lib/bluetooth
|
%dir /var/lib/bluetooth
|
||||||
%dir %{_sysconfdir}/modprobe.d
|
%dir %{_sysconfdir}/modprobe.d
|
||||||
%config(noreplace) %{_sysconfdir}/modprobe.d/50-bluetooth.conf
|
%config(noreplace) %{_sysconfdir}/modprobe.d/50-bluetooth.conf
|
||||||
|
%if 0%{suse_version} > 1130
|
||||||
|
/lib/systemd/system/bluetooth.service
|
||||||
|
%endif
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
|
Loading…
Reference in New Issue
Block a user