[neon/kde/kdeconnect/Neon/release] debian: temporarily disable the bluetooth link

Harald Sitter null at kde.org
Sat Mar 2 12:15:15 GMT 2024


Git commit 83708cdb20448e908641e7a546e1a301532d9f96 by Harald Sitter.
Committed on 02/03/2024 at 12:14.
Pushed by sitter into branch 'Neon/release'.

temporarily disable the bluetooth link

it unreasonably blocks plasma startup
https://invent.kde.org/network/kdeconnect-kde/-/merge_requests/600#note_884500

fail the build to revisit this in April

BUG: 481870

M  +11   -0    debian/rules

https://invent.kde.org/neon/kde/kdeconnect/-/commit/83708cdb20448e908641e7a546e1a301532d9f96

diff --git a/debian/rules b/debian/rules
index 3d69b0d3..02a09e5f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,17 @@
 #!/usr/bin/make -f
 # SPDX-License-Identifier: LGPL-2.0-or-later
 # SPDX-FileCopyrightText: 2023 Jonathan Riddell <jr at jriddell.org>
+# SPDX-FileCopyrightText: 2024 Harald Sitter <sitter at kde.org>
 
 %:
 	dh $@ --with kf6 --buildsystem kf6
+
+override_dh_auto_configure:
+	# TEMPORARILY disable bluetooth link because it blocks plasma startup
+	# https://invent.kde.org/network/kdeconnect-kde/-/merge_requests/600#note_884500
+	failat=$(shell date -d 2024-04-01 +%s); \
+	now=$(shell date -d now +%s); \
+	if [ $$now -ge $$failat ]; then \
+		/bin/false; \
+	fi
+	dh_auto_configure -- -DBLUETOOTH_ENABLED=OFF


More information about the Neon-commits mailing list