aboutsummaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog17
-rw-r--r--debian/control2
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/tests-Use-openssl-rehash-instead-of-c_rehash.patch28
4 files changed, 45 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 15d67a1..4f25bb2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,21 @@
-interimap (0.5.8-1) UNRELEASED; urgency=medium
+interimap (0.5.8-2) unstable; urgency=medium
+
+ [ Sebastian Andrzej Siewior ]
+ * d/patches: Add patch to use "openssl rehash" instead of c_rehash in tests.
+ (Closes: #1117508)
+
+ -- Guilhem Moulin <guilhem@debian.org> Tue, 07 Oct 2025 19:25:28 +0200
+
+interimap (0.5.8-1) unstable; urgency=medium
* New upstream release.
+ * Refresh d/patches and drop those applied upstream.
+ * d/control, d/tests: Bump minimum dovecot-* version to 1:2.4~. Dovecot 2.4
+ uses different configuration settings and that's what is targeted in the
+ testsuite of interimap ≥5.0.8.
+ * Update Standards-Version to 4.7.2.
- -- Guilhem Moulin <guilhem@debian.org> Sat, 26 Apr 2025 18:28:18 +0200
+ -- Guilhem Moulin <guilhem@debian.org> Sat, 26 Apr 2025 18:34:23 +0200
interimap (0.5.7-4) unstable; urgency=medium
diff --git a/debian/control b/debian/control
index 7ad8af6..816afba 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ Build-Depends: debhelper-compat (= 13),
libconfig-tiny-perl <!nocheck>,
libdbd-sqlite3-perl <!nocheck>,
libnet-ssleay-perl (>= 1.88~) <!nocheck>,
- openssl (>= 1.1.1~) <!nocheck>,
+ openssl (>= 3.0~) <!nocheck>,
pandoc (>= 2.1~) <!nodoc>,
procps <!nocheck>,
sqlite3 <!nocheck>,
diff --git a/debian/patches/series b/debian/patches/series
index ecb036a..dcaacf5 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
Mention-the-Debian-BTS-in-the-manpages.patch
Skip-randomized-tests.patch
Fix-struct-flock-and-timeval-packing-on-armhf.patch
+tests-Use-openssl-rehash-instead-of-c_rehash.patch
diff --git a/debian/patches/tests-Use-openssl-rehash-instead-of-c_rehash.patch b/debian/patches/tests-Use-openssl-rehash-instead-of-c_rehash.patch
new file mode 100644
index 0000000..5a0edff
--- /dev/null
+++ b/debian/patches/tests-Use-openssl-rehash-instead-of-c_rehash.patch
@@ -0,0 +1,28 @@
+From: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
+Date: Mon, 6 Oct 2025 21:27:06 +0200
+Subject: tests: Use "openssl rehash" instead of c_rehash
+
+The built-in version of c_rehash is "openssl rehash" and is available since the
+3.0 series. The c_rehash is a perl script which is considered legacy.
+
+Switch to "openssl rehash"
+
+Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
+Bug-Debian: https://bugs.debian.org/1117508
+---
+ tests/tls-verify-peer/t | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/tls-verify-peer/t b/tests/tls-verify-peer/t
+index 50c7445..60bd042 100644
+--- a/tests/tls-verify-peer/t
++++ b/tests/tls-verify-peer/t
+@@ -116,7 +116,7 @@ if [ -d "/etc/ssl/certs" ]; then
+ unverified_peer
+ fi
+
+-c_rehash "$capath"
++openssl rehash "$capath"
+
+ # default host (localhost) is the CN (and also subjectAltName)
+ with_remote_config <<<"SSL_CApath = $capath"