diff -pruN 3.8.0+repack-4/debian/changelog 3.8.0+repack-5/debian/changelog
--- 3.8.0+repack-4/debian/changelog	2025-01-17 15:30:37.000000000 +0000
+++ 3.8.0+repack-5/debian/changelog	2025-09-29 13:50:13.000000000 +0000
@@ -1,3 +1,12 @@
+libcloud (3.8.0+repack-5) unstable; urgency=medium
+
+  * Team Upload
+  * Drop support for (the obsolete) DSA keys.
+    Paramiko 4.0 no longer supports them. (Closes: #1113939)
+  * Disable the test-build-any job in Salsa CI
+
+ -- Santiago Ruano Rincón <santiago@debian.org>  Mon, 29 Sep 2025 10:50:13 -0300
+
 libcloud (3.8.0+repack-4) unstable; urgency=medium
 
   * Team Upload
diff -pruN 3.8.0+repack-4/debian/patches/remove-DSA-keys.patch 3.8.0+repack-5/debian/patches/remove-DSA-keys.patch
--- 3.8.0+repack-4/debian/patches/remove-DSA-keys.patch	1970-01-01 00:00:00.000000000 +0000
+++ 3.8.0+repack-5/debian/patches/remove-DSA-keys.patch	2025-09-29 13:34:09.000000000 +0000
@@ -0,0 +1,59 @@
+Description: Drop support for (the obsolete) DSA keys, since paramiko 4.0 no
+ longer supports them.
+Bug-Debian: https://bugs.debian.org/1113939
+Author: Santiago Ruano Rincón <santiago@debian.org>
+Last-Update: 2025-09-29
+
+Index: libcloud/libcloud/compute/ssh.py
+===================================================================
+--- libcloud.orig/libcloud/compute/ssh.py
++++ libcloud/libcloud/compute/ssh.py
+@@ -658,7 +658,6 @@ class ParamikoSSHClient(BaseSSHClient):
+         """
+         key_types = [
+             (paramiko.RSAKey, "RSA"),
+-            (paramiko.DSSKey, "DSA"),
+             (paramiko.ECDSAKey, "EC"),
+         ]
+ 
+Index: libcloud/libcloud/test/compute/test_ssh_client.py
+===================================================================
+--- libcloud.orig/libcloud/test/compute/test_ssh_client.py
++++ libcloud/libcloud/test/compute/test_ssh_client.py
+@@ -317,19 +317,7 @@ class ParamikoSSHClientTests(LibcloudTes
+         self.assertTrue(isinstance(pkey, paramiko.RSAKey))
+ 
+         # 2. DSA key type with header which is not supported by paramiko
+-        path = os.path.join(
+-            os.path.dirname(__file__),
+-            "fixtures",
+-            "misc",
+-            "test_dsa_non_paramiko_recognized_header.key",
+-        )
+-
+-        with open(path) as fp:
+-            private_key = fp.read()
+-
+-        pkey = client._get_pkey_object(key=private_key)
+-        self.assertTrue(pkey)
+-        self.assertTrue(isinstance(pkey, paramiko.DSSKey))
++        # Removed
+ 
+         # 3. ECDSA key type with header which is not supported by paramiko
+         path = os.path.join(
+@@ -361,14 +349,7 @@ class ParamikoSSHClientTests(LibcloudTes
+         self.assertTrue(isinstance(pkey, paramiko.RSAKey))
+ 
+         # 2. DSA key type with header which is not supported by paramiko
+-        path = os.path.join(os.path.dirname(__file__), "fixtures", "misc", "test_dsa.key")
+-
+-        with open(path) as fp:
+-            private_key = fp.read()
+-
+-        pkey = client._get_pkey_object(key=private_key)
+-        self.assertTrue(pkey)
+-        self.assertTrue(isinstance(pkey, paramiko.DSSKey))
++        # Removed
+ 
+         # 3. ECDSA key type with header which is not supported by paramiko
+         path = os.path.join(os.path.dirname(__file__), "fixtures", "misc", "test_ecdsa.key")
diff -pruN 3.8.0+repack-4/debian/patches/series 3.8.0+repack-5/debian/patches/series
--- 3.8.0+repack-4/debian/patches/series	2024-06-16 20:04:53.000000000 +0000
+++ 3.8.0+repack-5/debian/patches/series	2025-09-29 13:23:25.000000000 +0000
@@ -6,3 +6,4 @@ skip-deadlocking-tests.patch
 add-missing-data-files-to-MANIFEST.patch
 gitignore.patch
 pytest-8.2.patch
+remove-DSA-keys.patch
diff -pruN 3.8.0+repack-4/debian/salsa-ci.yml 3.8.0+repack-5/debian/salsa-ci.yml
--- 3.8.0+repack-4/debian/salsa-ci.yml	2024-05-22 07:17:21.000000000 +0000
+++ 3.8.0+repack-5/debian/salsa-ci.yml	2025-09-29 13:46:46.000000000 +0000
@@ -5,3 +5,4 @@ include:
 variables:
  # no compiled code
  SALSA_CI_DISABLE_BLHC: 'true'
+ SALSA_CI_DISABLE_BUILD_PACKAGE_ANY: 'true'
