Accepting request 498547 from Base:System

update to version 5.45 (forwarded request 498546 from seife)

OBS-URL: https://build.opensuse.org/request/show/498547
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bluez?expand=0&rev=145
This commit is contained in:
Dominique Leuenberger 2017-06-02 08:31:30 +00:00 committed by Git OBS Bridge
commit fc3795649d
5 changed files with 48 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0c321e291f8b45e6a78e379dfe80592b65955a0f0ab191f1cca0edd8ec356c85
size 1670320

View File

@ -0,0 +1,22 @@
diff --git a/Makefile.am b/Makefile.am
index 84e67a4..cac5283 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -395,7 +395,7 @@ unit_test_lib_SOURCES = unit/test-lib.c
unit_test_lib_LDADD = src/libshared-glib.la \
lib/libbluetooth-internal.la @GLIB_LIBS@
-unit_tests += unit/test-gatt
+#unit_tests += unit/test-gatt
unit_test_gatt_SOURCES = unit/test-gatt.c
unit_test_gatt_LDADD = src/libshared-glib.la \
@@ -424,7 +424,7 @@ unit_test_gattrib_LDADD = lib/libbluetooth-internal.la \
@GLIB_LIBS@ @DBUS_LIBS@ -ldl -lrt
if MIDI
-unit_tests += unit/test-midi
+#unit_tests += unit/test-midi
unit_test_midi_CFLAGS = $(AM_CFLAGS) @ALSA_CFLAGS@ -DMIDI_TEST
unit_test_midi_SOURCES = unit/test-midi.c \
profiles/midi/libmidi.h \

3
bluez-5.45.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4cacb00703a6bc149cb09502257d321597d43952374a16f3558766ffa85364e9
size 1672404

View File

@ -1,7 +1,22 @@
-------------------------------------------------------------------
Fri May 26 13:16:07 UTC 2017 - seife+obs@b1-systems.com
- add bluez-5.45-disable-broken-tests.diff to disable two broken
tests (reported upstream but not yet fixed)
-------------------------------------------------------------------
Sat May 6 18:59:55 UTC 2017 - seife+obs@b1-systems.com
- update to version 5.45:
This is mostly a bugfix release with fixes in ATT, GATT, OBEX
and AVDTP.
Feature-wise there are some new things as well, such as btmon
support decoding Bluetooth 5.0 HCI commands and events.
-------------------------------------------------------------------
Fri Mar 3 09:16:29 UTC 2017 - seife+obs@b1-systems.com
- make testsuite run non-parallel (obs seems to have problems with
- make testsuite run non-parallel (it has problems with running
parallel checks) and quiet
-------------------------------------------------------------------

View File

@ -18,7 +18,7 @@
Name: bluez
Version: 5.44
Version: 5.45
Release: 0
Summary: Bluetooth Stack for Linux
License: GPL-2.0+
@ -32,6 +32,8 @@ Patch1: bluez-5.11-logitech-hid2hci.patch
Patch2: bluez-sdp-unix-path.patch
# PATCH-FIX-UPSTREAM: find the cups dir in libexec not in libdir
Patch3: bluez-cups-libexec.patch
# workaround for broken tests (reported upstream but not yet fixed)
Patch4: bluez-5.45-disable-broken-tests.diff
BuildRequires: automake
BuildRequires: flex
BuildRequires: libtool
@ -114,6 +116,7 @@ BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A.
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
mkdir dbus-apis
cp -a doc/*.txt dbus-apis/
# FIXME: Change the dbus service to be a real service, not systemd launched
@ -122,6 +125,8 @@ sed -i "/SystemdService=.*/d" obexd/src/org.bluez.obex.service
# END FIXME
%build
# because of patch4...
autoreconf -fi
# --enable-experimental is needed or btattach does not build (bug?)
%configure \
--disable-silent-rules \
@ -161,7 +166,7 @@ chmod 0644 *.py *.xml *.dtd
%check
%if ! 0%{?qemu_user_space_build}
##make %%{?_smp_mflags} check
# deliberately not running parallel, as OBS seems to create spurious failures otherwise
# deliberately not running parallel, as the test suite has spurious failures otherwise
make check V=0
%endif