mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
package/{bluez5_utils, bluez5_utils-headers}: bump to version 5.77
Removed patch which are included in this release, autoreconf is not needed anymore. Changelog: https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/ChangeLog Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
1293c5cc7b
commit
35ee257177
@@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
# Keep the version and patches in sync with bluez5_utils
|
||||
BLUEZ5_UTILS_HEADERS_VERSION = 5.75
|
||||
BLUEZ5_UTILS_HEADERS_VERSION = 5.77
|
||||
BLUEZ5_UTILS_HEADERS_SOURCE = bluez-$(BLUEZ5_UTILS_VERSION).tar.xz
|
||||
BLUEZ5_UTILS_HEADERS_SITE = $(BR2_KERNEL_MIRROR)/linux/bluetooth
|
||||
BLUEZ5_UTILS_HEADERS_DL_SUBDIR = bluez5_utils
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
From cb0de49bc6f8a6bf8f01a24599b499aa4bf18032 Mon Sep 17 00:00:00 2001
|
||||
From: Lars Wendler <polynomial-c@gmx.de>
|
||||
Date: Tue, 16 Apr 2024 07:26:04 +0200
|
||||
Subject: [PATCH] configure.ac: Fix --disable-cups
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
or else we get:
|
||||
configure: error: conditional "CUPS_SERVERBIN" was never defined.
|
||||
Usually this means the macro was only invoked conditionally.
|
||||
|
||||
Fixes: https://github.com/bluez/bluez/issues/773
|
||||
|
||||
Upstream: https://patchwork.kernel.org/project/bluetooth/list/?series=844910
|
||||
Signed-off-by: Jan Čermák <sairon@sairon.cz>
|
||||
---
|
||||
configure.ac | 8 ++++----
|
||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 9dea70d..dbba759 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -249,12 +249,12 @@ AM_CONDITIONAL(CUPS, test "${enable_cups}" != "no")
|
||||
if (test "${enable_cups}" != "no"); then
|
||||
AC_MSG_CHECKING([cups directory])
|
||||
cups_serverbin=`$PKG_CONFIG cups --variable=cups_serverbin`
|
||||
- AM_CONDITIONAL(CUPS_SERVERBIN, test "${cups_serverbin}" != "")
|
||||
- if (test "${cups_serverbin}" != ""); then
|
||||
- AC_SUBST(CUPS_SERVERBIN, ${cups_serverbin})
|
||||
- fi
|
||||
AC_MSG_RESULT([${cups_serverbin}])
|
||||
fi
|
||||
+AM_CONDITIONAL(CUPS_SERVERBIN, test "${cups_serverbin}" != "")
|
||||
+AS_IF([test "${cups_serverbin}" != ""],[
|
||||
+ AC_SUBST(CUPS_SERVERBIN, ${cups_serverbin})
|
||||
+])
|
||||
|
||||
AC_ARG_ENABLE(mesh, AS_HELP_STRING([--enable-mesh],
|
||||
[enable Mesh profile support]), [enable_mesh=${enableval}])
|
||||
@@ -1,35 +0,0 @@
|
||||
From f4795bf64dbf8778fc765b7dad1b1bfb365b48d7 Mon Sep 17 00:00:00 2001
|
||||
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
Date: Wed, 8 May 2024 19:54:16 +0200
|
||||
Subject: configure.ac: fix sixaxis build without tools
|
||||
|
||||
Fix the following build failure with --enable-sixaxis --enable-udev
|
||||
--disable-tools raised since version 5.73 and
|
||||
9f71892b63f6b65dab874a633d88ae2dcad93a16:
|
||||
|
||||
sixaxis.c:(.text.sixaxis_init+0x23): undefined reference to `udev_new'
|
||||
|
||||
Fixes: http://autobuild.buildroot.org/results/c337d0f473c5fbb3e6cda1317ba06f5e2b16a43e
|
||||
|
||||
Upstream: https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=f4795bf64dbf8778fc765b7dad1b1bfb365b48d7
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 9dea70ddc1..8b3cdb4e8f 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -226,7 +226,7 @@ AM_CONDITIONAL(MONITOR, test "${enable_monitor}" != "no")
|
||||
|
||||
AC_ARG_ENABLE(udev, AS_HELP_STRING([--disable-udev],
|
||||
[disable udev device support]), [enable_udev=${enableval}])
|
||||
-if (test "${enable_tools}" != "no" && test "${enable_udev}" != "no"); then
|
||||
+if (test "${enable_udev}" != "no"); then
|
||||
PKG_CHECK_MODULES(UDEV, libudev >= 196)
|
||||
AC_DEFINE(HAVE_UDEV, 1, [Define to 1 if udev is required])
|
||||
fi
|
||||
--
|
||||
cgit 1.2.3-korg
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# From https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc:
|
||||
sha256 988cb3c4551f6e3a667708a578f5ca9f93fc896508f98f08709be4f8ab033c2f bluez-5.75.tar.xz
|
||||
sha256 5d032fdc1d4a085813554f57591e2e1fb0ceb2b3616ee56f689bc00e1d150812 bluez-5.77.tar.xz
|
||||
# Locally computed
|
||||
sha256 b499eddebda05a8859e32b820a64577d91f1de2b52efa2a1575a2cb4000bc259 COPYING
|
||||
sha256 ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5 COPYING.LIB
|
||||
|
||||
@@ -5,12 +5,9 @@
|
||||
################################################################################
|
||||
|
||||
# Keep the version and patches in sync with bluez5_utils-headers
|
||||
BLUEZ5_UTILS_VERSION = 5.75
|
||||
BLUEZ5_UTILS_VERSION = 5.77
|
||||
BLUEZ5_UTILS_SOURCE = bluez-$(BLUEZ5_UTILS_VERSION).tar.xz
|
||||
BLUEZ5_UTILS_SITE = $(BR2_KERNEL_MIRROR)/linux/bluetooth
|
||||
# 0001-configure.ac-Fix-disable-cups.patch
|
||||
# 0002-configure.ac-fix-sixaxis-build-without-tools.patch
|
||||
BLUEZ5_UTILS_AUTORECONF = YES
|
||||
BLUEZ5_UTILS_INSTALL_STAGING = YES
|
||||
BLUEZ5_UTILS_LICENSE = GPL-2.0+, LGPL-2.1+
|
||||
BLUEZ5_UTILS_LICENSE_FILES = COPYING COPYING.LIB
|
||||
|
||||
Reference in New Issue
Block a user