diff -pruN 1.3.0-1/debian/changelog 1.3.0-2/debian/changelog
--- 1.3.0-1/debian/changelog	2024-01-05 15:25:28.000000000 +0000
+++ 1.3.0-2/debian/changelog	2025-06-10 11:09:51.000000000 +0000
@@ -1,10 +1,21 @@
+libcommons-logging-java (1.3.0-2) unstable; urgency=medium
+
+  [ Andreas Tille ]
+  * Build-Depends: s/default-jdk/default-jdk-headless/
+
+  [ Emmanuel Bourg ]
+  * Disabled the SLF4J log factory (Closes: #1060960)
+
+ -- Emmanuel Bourg <ebourg@apache.org>  Tue, 10 Jun 2025 13:09:51 +0200
+
 libcommons-logging-java (1.3.0-1) unstable; urgency=medium
 
+  [ Emmanuel Bourg ]
   * New upstream release
     - Build with Maven instead of Ant
   * Removed the -java-doc package
 
- -- Emmanuel Bourg <ebourg@apache.org>  Fri, 05 Jan 2024 16:25:28 +0100
+ -- Andreas Tille <tille@debian.org>  Thu, 10 Apr 2025 22:30:58 +0200
 
 libcommons-logging-java (1.2-4) unstable; urgency=medium
 
diff -pruN 1.3.0-1/debian/control 1.3.0-2/debian/control
--- 1.3.0-1/debian/control	2024-01-03 15:37:52.000000000 +0000
+++ 1.3.0-2/debian/control	2025-06-10 11:00:12.000000000 +0000
@@ -8,7 +8,7 @@ Uploaders:
  Jakub Adam <jakub.adam@ktknet.cz>
 Build-Depends:
  debhelper-compat (= 13),
- default-jdk,
+ default-jdk-headless,
  libavalon-framework-java,
  libcommons-parent-java,
  libexcalibur-logkit-java,
diff -pruN 1.3.0-1/debian/patches/10-disable-slf4j-factory.patch 1.3.0-2/debian/patches/10-disable-slf4j-factory.patch
--- 1.3.0-1/debian/patches/10-disable-slf4j-factory.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.0-2/debian/patches/10-disable-slf4j-factory.patch	2025-06-10 11:08:06.000000000 +0000
@@ -0,0 +1,19 @@
+Description: Disables the SLF4J log factory
+Author: Emmanuel Bourg <ebourg@apache.org>
+Bug: https://issues.apache.org/jira/browse/LOGGING-197
+Bug-Debian: https://bugs.debian.org/1060960
+--- a/src/main/java/org/apache/commons/logging/LogFactory.java
++++ b/src/main/java/org/apache/commons/logging/LogFactory.java
+@@ -929,10 +929,12 @@
+                 }
+             }
+ 
++/*
+             if (factory == null && isClassAvailable(SLF4J_API_LOGGER, baseClassLoader)) {
+                 logDiagnostic("[LOOKUP] SLF4J detected. Loading the SLF4J LogFactory implementation '" + FACTORY_SLF4J + "'.");
+                 factory = newFactory(FACTORY_SLF4J, baseClassLoader, contextClassLoader);
+             }
++*/
+         } catch (final Exception e) {
+             logDiagnostic("[LOOKUP] An exception occurred while creating LogFactory: " + e.getMessage());
+         }
diff -pruN 1.3.0-1/debian/patches/series 1.3.0-2/debian/patches/series
--- 1.3.0-1/debian/patches/series	2024-01-05 14:38:05.000000000 +0000
+++ 1.3.0-2/debian/patches/series	2025-06-10 11:00:49.000000000 +0000
@@ -1,3 +1,4 @@
 03_disable_securityallow_test.patch
 07_disable_log4j2_tests.patch
 08_logback_compatibility.patch
+10-disable-slf4j-factory.patch
