diff -pruN 11.2-2/debian/changelog 11.2-4/debian/changelog
--- 11.2-2/debian/changelog	2021-08-25 10:40:16.000000000 +0000
+++ 11.2-4/debian/changelog	2022-04-24 15:52:20.000000000 +0000
@@ -1,3 +1,22 @@
+mit-scheme (11.2-4) unstable; urgency=medium
+
+  * replace dependency mime-support with media-types (closes: #1010101)
+
+ -- Barak A. Pearlmutter <bap@debian.org>  Sun, 24 Apr 2022 16:52:20 +0100
+
+mit-scheme (11.2-3) unstable; urgency=medium
+
+  [ Nick Rosbrook ]
+  * d/p/0001-microcode-Make-definition-for-chacha_core-match-decl.patch:
+    Pull in upstream patch to fix -Werror=array-parameter build error.
+    (LP: #1965163).
+
+  [ Barak A. Pearlmutter ]
+  * Spelling correction in description
+  * Ubuntu OpenSSL 3.0 FTBFS patch (closes: #1006507)
+
+ -- Barak A. Pearlmutter <bap@debian.org>  Mon, 21 Mar 2022 16:31:37 +0000
+
 mit-scheme (11.2-2) unstable; urgency=medium
 
   * remove i386 from architecture list (closes: #982791)
diff -pruN 11.2-2/debian/control 11.2-4/debian/control
--- 11.2-2/debian/control	2021-08-25 10:20:22.000000000 +0000
+++ 11.2-4/debian/control	2022-04-24 15:52:20.000000000 +0000
@@ -20,7 +20,7 @@ Package: mit-scheme
 Architecture: amd64
 Multi-Arch: same
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Recommends: mime-support
+Recommends: media-types
 Suggests: mit-scheme-dbg, mit-scheme-doc
 Description: MIT/GNU Scheme development environment
  MIT/GNU Scheme is an implementation of the Scheme programming language,
diff -pruN 11.2-2/debian/patches/0001-allow-autoreconf-force.patch 11.2-4/debian/patches/0001-allow-autoreconf-force.patch
--- 11.2-2/debian/patches/0001-allow-autoreconf-force.patch	2021-08-25 10:09:35.000000000 +0000
+++ 11.2-4/debian/patches/0001-allow-autoreconf-force.patch	2022-03-21 16:37:36.000000000 +0000
@@ -7,7 +7,7 @@ $ autoreconf --force
 
 - move src/microcode/aclocal.m4 to src/microcode/mit_scheme_native_code.m4
 
-- use single shared directory locally-defined macros (src/microcode/ for now)
+- use single shared directory for locally-defined macros (src/microcode/ for now)
 
 The necessary local m4 macro file is explicitly included.
 This is necessary because autoconf is not using automake or libtools,
diff -pruN 11.2-2/debian/patches/0001-microcode-Make-definition-for-chacha_core-match-decl.patch 11.2-4/debian/patches/0001-microcode-Make-definition-for-chacha_core-match-decl.patch
--- 11.2-2/debian/patches/0001-microcode-Make-definition-for-chacha_core-match-decl.patch	1970-01-01 00:00:00.000000000 +0000
+++ 11.2-4/debian/patches/0001-microcode-Make-definition-for-chacha_core-match-decl.patch	2022-03-21 16:37:36.000000000 +0000
@@ -0,0 +1,29 @@
+Description: Make definition for chacha_core match declaration.
+ Makes no semantic difference but some compilers object now.
+Origin: upstream, https://git.savannah.gnu.org/cgit/mit-scheme.git/commit/?id=837bb3f1ca75f867e115bf3a195de2f78517dce1
+Last-Update: 2022-03-16
+---
+From 837bb3f1ca75f867e115bf3a195de2f78517dce1 Mon Sep 17 00:00:00 2001
+From: Taylor R Campbell <campbell+mit-scheme@mumble.net>
+Date: Fri, 7 May 2021 16:02:08 +0000
+Subject: [PATCH] microcode: Make definition for chacha_core match declaration.
+
+Makes no semantic difference but some compilers object now.
+---
+ src/microcode/chacha.i | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+--- a/src/microcode/chacha.i
++++ b/src/microcode/chacha.i
+@@ -77,8 +77,10 @@
+ static const uint8_t chacha_core_constant32[16] = "expand 32-byte k";
+ 
+ void
+-chacha_core(uint8_t *out, const uint8_t *in, const uint8_t *k,
+-    const uint8_t *c)
++chacha_core(uint8_t out[chacha_core_OUTPUTBYTES],
++    const uint8_t in[chacha_core_INPUTBYTES],
++    const uint8_t k[chacha_core_KEYBYTES],
++    const uint8_t c[chacha_core_CONSTBYTES])
+ {
+ 	uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
+ 	uint32_t j0,j1,j2,j3,j4,j5,j6,j7,j8,j9,j10,j11,j12,j13,j14,j15;
diff -pruN 11.2-2/debian/patches/series 11.2-4/debian/patches/series
--- 11.2-2/debian/patches/series	2021-08-25 10:09:35.000000000 +0000
+++ 11.2-4/debian/patches/series	2022-03-21 16:37:36.000000000 +0000
@@ -4,3 +4,4 @@
 0004-makeinfo-5-fix.patch
 0005-man-page.patch
 0007-verbose-texi2dvi.patch
+0001-microcode-Make-definition-for-chacha_core-match-decl.patch
