diff -Nru pytango-9.3.0/debian/changelog pytango-9.3.0/debian/changelog
--- pytango-9.3.0/debian/changelog	2019-12-04 18:03:53.000000000 +0000
+++ pytango-9.3.0/debian/changelog	2020-06-11 23:29:43.000000000 +0000
@@ -1,3 +1,15 @@
+pytango (9.3.0-4+rpi2) bullseye-staging; urgency=medium
+
+  * Add support for ID_LIKE
+
+ -- Peter Michael Green <plugwash@raspbian.org>  Thu, 11 Jun 2020 23:29:43 +0000
+
+pytango (9.3.0-4+rpi1) bullseye-staging; urgency=medium
+
+  * Disable testsuite.
+
+ -- Peter Michael Green <plugwash@raspbian.org>  Tue, 31 Mar 2020 04:00:37 +0000
+
 pytango (9.3.0-4) unstable; urgency=medium
 
   [ Helmut Grohne ]
diff -Nru pytango-9.3.0/debian/patches/series pytango-9.3.0/debian/patches/series
--- pytango-9.3.0/debian/patches/series	2019-12-04 18:03:53.000000000 +0000
+++ pytango-9.3.0/debian/patches/series	2020-06-11 23:29:43.000000000 +0000
@@ -3,3 +3,4 @@
 0002-deal-with-sphinx-only-via-the-debian-rules.patch
 0004-doc-update-start-page.patch
 0005-fix-distro-import.patch
+support-id_like
diff -Nru pytango-9.3.0/debian/patches/support-id_like pytango-9.3.0/debian/patches/support-id_like
--- pytango-9.3.0/debian/patches/support-id_like	1970-01-01 00:00:00.000000000 +0000
+++ pytango-9.3.0/debian/patches/support-id_like	2020-06-11 23:29:43.000000000 +0000
@@ -0,0 +1,30 @@
+Description:  Add support for ID_LIKE
+Author: Peter Michael Green <plugwash@raspbian.org>
+
+--- pytango-9.3.0.orig/setup.py
++++ pytango-9.3.0/setup.py
+@@ -56,11 +56,19 @@ PYTHON2 = (2,) <= PYTHON_VERSION < (3,)
+ PYTHON3 = (3,) <= PYTHON_VERSION < (4,)
+ 
+ # Linux distribution
+-distribution = distro.linux_distribution()[0].lower() if POSIX else ""
+-distribution_match = lambda names: any(x in distribution for x in names)
+-DEBIAN = distribution_match(['debian', 'ubuntu', 'mint'])
+-REDHAT = distribution_match(['redhat', 'fedora', 'centos', 'opensuse'])
+-GENTOO = distribution_match(['gentoo'])
++DEBIAN = False
++REDHAT = False
++GENTOO = False
++if POSIX:
++	distributions = [distro.linux_distribution()[0].lower()]
++	distributions += distro.like().lower().split(" ")
++	for distribution in distributions:
++		distribution_match = lambda names: any(x in distribution for x in names)
++		DEBIAN = distribution_match(['debian', 'ubuntu', 'mint'])
++		REDHAT = distribution_match(['redhat', 'fedora', 'centos', 'opensuse'])
++		GENTOO = distribution_match(['gentoo'])
++		if DEBIAN or REDHAT or GENTOO:
++			break
+ 
+ # Arguments
+ TESTING = any(x in sys.argv for x in ['test', 'pytest'])
diff -Nru pytango-9.3.0/debian/rules pytango-9.3.0/debian/rules
--- pytango-9.3.0/debian/rules	2019-12-04 18:03:53.000000000 +0000
+++ pytango-9.3.0/debian/rules	2020-03-31 04:00:37.000000000 +0000
@@ -20,3 +20,6 @@
 	dh_installdocs "build/html" -p python-tango-doc
 	dh_installdocs "examples" -p python-tango-doc
 	dh_sphinxdoc -O--buildsystem=pybuild
+
+override_dh_auto_test:
+	echo testsuite disabled.