diff -Nru budgie-control-center-1.4.0/debian/changelog budgie-control-center-1.4.0/debian/changelog --- budgie-control-center-1.4.0/debian/changelog 2024-11-07 20:15:59.000000000 +0000 +++ budgie-control-center-1.4.0/debian/changelog 2025-01-02 15:19:26.000000000 +0000 @@ -1,3 +1,11 @@ +budgie-control-center (1.4.0-5.1) unstable; urgency=medium + + * Non-maintainer upload + * Drop bluetooth support (Closes: #1059485) + * Drop Suggests: libcanberra-gtk-module (Closes: #1054627) + + -- Bastian Germann Thu, 02 Jan 2025 15:19:26 +0000 + budgie-control-center (1.4.0-5) unstable; urgency=medium * d/control update to depends on network-manager-applet diff -Nru budgie-control-center-1.4.0/debian/control budgie-control-center-1.4.0/debian/control --- budgie-control-center-1.4.0/debian/control 2024-11-07 20:15:59.000000000 +0000 +++ budgie-control-center-1.4.0/debian/control 2025-01-02 15:19:26.000000000 +0000 @@ -19,7 +19,6 @@ libglib2.0-dev (>= 2.68.0), libgnome-desktop-3-dev (>= 42.3), libgnomekbd-dev (>= 2.91.91), - libgnome-bluetooth-dev (>= 3.18.0) [linux-any], libibus-1.0-dev (>= 1.5.2), libgsound-dev, libgtk-3-dev (>= 3.22.20), @@ -87,7 +86,6 @@ budgie-desktop (>= 10.7) Suggests: gnome-software | gnome-packagekit, realmd, - libcanberra-gtk-module, libcanberra-gtk3-module, x11-xserver-utils Description: utilities to configure the Budgie desktop diff -Nru budgie-control-center-1.4.0/debian/patches/0002-disable-bluetooth.patch budgie-control-center-1.4.0/debian/patches/0002-disable-bluetooth.patch --- budgie-control-center-1.4.0/debian/patches/0002-disable-bluetooth.patch 1970-01-01 00:00:00.000000000 +0000 +++ budgie-control-center-1.4.0/debian/patches/0002-disable-bluetooth.patch 2025-01-02 15:14:16.000000000 +0000 @@ -0,0 +1,35 @@ +Author: Bastian Germann +Description: Disable bluetooth support on every architecture +Upstream-Bug: https://github.com/BuddiesOfBudgie/budgie-control-center/issues/83 +--- +--- a/meson.build ++++ b/meson.build +@@ -249,7 +249,6 @@ + + if host_is_linux_not_s390 + # gnome-bluetooth +- gnome_bluetooth_dep = dependency('gnome-bluetooth-1.0', version: '>= 3.18.2') + + libwacom_dep = dependency('libwacom', version: '>= 0.7') + +@@ -262,9 +261,7 @@ + message('Bluetooth and Wacom panels will not be built (no USB support on this platform)') + message('Thunderbolt panel will not be built (not supported on this platform)') + endif +-config_h.set('BUILD_BLUETOOTH', host_is_linux_not_s390, +- description: 'Define to 1 to build the Bluetooth panel') +-config_h.set('HAVE_BLUETOOTH', host_is_linux_not_s390, ++config_h.set('HAVE_BLUETOOTH', 0, + description: 'Define to 1 if bluetooth support is available') + config_h.set('BUILD_WACOM', host_is_linux_not_s390, + description: 'Define to 1 to build the Wacom panel') +--- a/panels/meson.build ++++ b/panels/meson.build +@@ -34,7 +34,6 @@ + + if host_is_linux_not_s390 + panels += [ +- 'bluetooth', + 'thunderbolt', + 'wacom' + ] diff -Nru budgie-control-center-1.4.0/debian/patches/series budgie-control-center-1.4.0/debian/patches/series --- budgie-control-center-1.4.0/debian/patches/series 2024-07-28 20:46:29.000000000 +0000 +++ budgie-control-center-1.4.0/debian/patches/series 2025-01-02 15:15:25.000000000 +0000 @@ -1 +1,2 @@ 0001-fix-FTBFS-with-incompatible-pointer-types.patch +0002-disable-bluetooth.patch