Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (3320b81876795b564380fb87b422542a440f257b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (3320b81876795b564380fb87b422542a440f257b)
  • Date: Tue, 17 Aug 2021 12:04:06 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

utils/bluez5/CONFIGURE | 30 +++++++++++++++++++++++++++++-
utils/bluez5/DEPENDS | 5 +++++
utils/bluez5/DETAILS | 1 +
utils/bluez5/HISTORY | 11 +++++++++++
utils/bluez5/PRE_BUILD | 4 ++++
5 files changed, 50 insertions(+), 1 deletion(-)

New commits:
commit 3320b81876795b564380fb87b422542a440f257b
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: PATCHLEVEL++

commit 468f22d5315b5c504e9aa78f0a2f83ff0c2bbcdb
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Add knob for MIDI support

commit 5ec825c01421b7037ca8610eb97ab2ba00ebc5f2
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Add knob for Health profile

commit 1343d5165b0b027b3f7c102a9602d3131a7b739b
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Add knob for SAP profile

commit 773ea05296774db9ed581b4f131775ac2e99da98
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Add knob for NFC pairing

commit a6eb88243c45f560d537085f769fc5f3e40f5d75
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Remove bundled ell just in case

commit 93354636419a9c117a01931f1d46b520ec08eb4e
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Add knobs for experimental/testing/deprecated tools

commit 38a69bafcb5ad6f9cd993566bdaff4bf249aee4e
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Add optional dependency on systemd

commit 00e490608b6724953a705770347b0e7dc658ac5c
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

bluez5: Use external ell

diff --git a/utils/bluez5/CONFIGURE b/utils/bluez5/CONFIGURE
index 5ba2d75..32b58a2 100755
--- a/utils/bluez5/CONFIGURE
+++ b/utils/bluez5/CONFIGURE
@@ -1,3 +1,31 @@
config_query_option BLUEZ5_OPTS "Build and install Bluetooth library?" n \
"--enable-library" \
- "--disable-library"
+ "--disable-library" &&
+
+config_query_option BLUEZ5_OPTS "Enable NFC pairing?" n \
+ "--enable-nfc" \
+ "--disable-nfc" &&
+
+config_query_option BLUEZ5_OPTS "Enable SAP profile?" n \
+ "--enable-sap" \
+ "--disable-sap" &&
+
+config_query_option BLUEZ5_OPTS "Enable Health profile?" n \
+ "--enable-health" \
+ "--disable-health" &&
+
+config_query_option BLUEZ5_OPTS "Enable MIDI support?" n \
+ "--enable-midi" \
+ "--disable-midi" &&
+
+config_query_option BLUEZ5_OPTS "Enable Testing tools?" n \
+ "--enable-testing" \
+ "--disable-testing" &&
+
+config_query_option BLUEZ5_OPTS "Enable Experimental tools?" n \
+ "--enable-experimental" \
+ "--disable-experimental" &&
+
+config_query_option BLUEZ5_OPTS "Enable Deprecated tools?" n \
+ "--enable-deprecated" \
+ "--disable-deprecated"
diff --git a/utils/bluez5/DEPENDS b/utils/bluez5/DEPENDS
index 9fdd564..f6c35e3 100755
--- a/utils/bluez5/DEPENDS
+++ b/utils/bluez5/DEPENDS
@@ -3,6 +3,11 @@ depends flex &&
depends dbus &&
depends glib2 &&
depends readline &&
+depends ell --enable-external-ell &&
+
+optional_depends systemd \
+ --{enable,disable}-systemd \
+ 'for systemd support' &&

optional_depends cups \
"--enable-cups" \
diff --git a/utils/bluez5/DETAILS b/utils/bluez5/DETAILS
index a2e7b1c..5109dd9 100755
--- a/utils/bluez5/DETAILS
+++ b/utils/bluez5/DETAILS
@@ -1,6 +1,7 @@
SPELL=bluez5
SPELLX=bluez
VERSION=5.60
+ PATCHLEVEL=1

SOURCE_HASH=sha512:069e054360b4ab72f1daa033572f0fd822fb0f47e52069f4f3dcdfecfa312b9a5366cc04967e639aef39b980c0e1007389f1ee757e7c3bae43a5e66f8ed21a6b
SECURITY_PATCH=2
SOURCE=$SPELLX-$VERSION.tar.xz
diff --git a/utils/bluez5/HISTORY b/utils/bluez5/HISTORY
index 1b2a009..8dce64e 100644
--- a/utils/bluez5/HISTORY
+++ b/utils/bluez5/HISTORY
@@ -1,3 +1,14 @@
+2021-08-17 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: PATCHLEVEL++
+ * DEPENDS: added dependency on ell
+ added optional dependency on systemd
+ * CONFIGURE: added options for experimental/testing/deprecated tools
+ added option for NFC pairing
+ added option for SAP profile
+ added option for Health profile
+ added option for MIDI support
+ * PRE_BUILD: added to remove bundled ell
+
2021-07-08 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 5.60
* BUILD: disabled manpages, we don't have rst2man yet
diff --git a/utils/bluez5/PRE_BUILD b/utils/bluez5/PRE_BUILD
new file mode 100755
index 0000000..59c0d60
--- /dev/null
+++ b/utils/bluez5/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+# Make sure we're building against system ell
+rm -r ell



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (3320b81876795b564380fb87b422542a440f257b), Ismael Luceno, 08/17/2021

Archive powered by MHonArc 2.6.24.

Top of Page