From 67376d6a03a49eec1fdcb2c07509a6994d089e69 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Sun, 25 Oct 2020 16:14:34 +0100 Subject: Switch over from Ubuntu System Indicator to Ayatana System Indicator. --- debian/rules | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index ca87700..d63d8ab 100755 --- a/debian/rules +++ b/debian/rules @@ -1,14 +1,16 @@ #!/usr/bin/make -f +NULL = + export DPKG_GENSYMBOLS_CHECK_LEVEL=4 %: - dh $@ --with translations,autoreconf + dh $@ --parallel --fail-missing --with systemd override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh override_dh_install: - find debian/indicator-bluetooth/usr/lib -name *.la -delete - find debian/indicator-bluetooth/usr/lib -name *.a -delete + find debian/ayatana-indicator-bluetooth/usr/lib -name *.la -delete + find debian/ayatana-indicator-bluetooth/usr/lib -name *.a -delete dh_install --fail-missing -- cgit v1.2.3 From 1d1dd40ba604290363ace07500c938429e465602 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Sun, 25 Oct 2020 16:31:19 +0100 Subject: debian/rules: Add dh_auto_test override that shows how to enable live test logs. --- debian/rules | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index d63d8ab..1f2b650 100755 --- a/debian/rules +++ b/debian/rules @@ -14,3 +14,7 @@ override_dh_install: find debian/ayatana-indicator-bluetooth/usr/lib -name *.la -delete find debian/ayatana-indicator-bluetooth/usr/lib -name *.a -delete dh_install --fail-missing + +# For live test logs: +#override_dh_auto_test: +# ARGS=-V dh_auto_test -- cgit v1.2.3 From 8a508b6cb5aedfd9d72e79c4556c84d4c99059bf Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Sun, 25 Oct 2020 22:08:53 +0100 Subject: debian/rules: Move --fail-missing DH flag into dh_missing override. --- debian/rules | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 1f2b650..f5955d1 100755 --- a/debian/rules +++ b/debian/rules @@ -5,15 +5,18 @@ NULL = export DPKG_GENSYMBOLS_CHECK_LEVEL=4 %: - dh $@ --parallel --fail-missing --with systemd + dh $@ --parallel --with systemd override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh override_dh_install: + dh_install find debian/ayatana-indicator-bluetooth/usr/lib -name *.la -delete find debian/ayatana-indicator-bluetooth/usr/lib -name *.a -delete - dh_install --fail-missing + +override_dh_missing: + dh_missing --fail-missing # For live test logs: #override_dh_auto_test: -- cgit v1.2.3 From 6a5ff48144130ac7384c306458ac227e21aec637 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Sun, 25 Oct 2020 22:10:26 +0100 Subject: debian/rules: Add --with autoreconf DH option. --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index f5955d1..542fd05 100755 --- a/debian/rules +++ b/debian/rules @@ -5,7 +5,7 @@ NULL = export DPKG_GENSYMBOLS_CHECK_LEVEL=4 %: - dh $@ --parallel --with systemd + dh $@ --parallel --with systemd --with autoreconf override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh -- cgit v1.2.3