diff -pruN 0.19.2+dfsg1-3/debian/changelog 0.19.2+dfsg1-3ubuntu2/debian/changelog
--- 0.19.2+dfsg1-3/debian/changelog	2021-09-25 07:52:47.000000000 +0000
+++ 0.19.2+dfsg1-3ubuntu2/debian/changelog	2022-05-10 10:53:18.000000000 +0000
@@ -1,3 +1,28 @@
+freecad (0.19.2+dfsg1-3ubuntu2) kinetic; urgency=medium
+
+  * No change rebuild for libboost-regex1.74.0-icu71.
+
+ -- Robie Basak <robie.basak@ubuntu.com>  Tue, 10 May 2022 10:53:18 +0000
+
+freecad (0.19.2+dfsg1-3ubuntu1) jammy; urgency=medium
+
+  * d/p/python3.10.patch: fix collections.Iterable -> collections.abc.Iterable
+    for Python 3.10. Taken from upstream's commit.
+
+ -- Robie Basak <robie.basak@ubuntu.com>  Mon, 14 Feb 2022 15:22:42 +0000
+
+freecad (0.19.2+dfsg1-3build2) jammy; urgency=medium
+
+  * No-change rebuild against libboost-regex1.74.0-icu70.
+
+ -- Matthias Klose <doko@ubuntu.com>  Thu, 10 Feb 2022 16:20:03 +0100
+
+freecad (0.19.2+dfsg1-3build1) jammy; urgency=medium
+
+  * No-change rebuild with Python 3.10 as default version
+
+ -- Graham Inggs <ginggs@ubuntu.com>  Mon, 17 Jan 2022 18:11:08 +0000
+
 freecad (0.19.2+dfsg1-3) unstable; urgency=medium
 
   * Team upload.
diff -pruN 0.19.2+dfsg1-3/debian/control 0.19.2+dfsg1-3ubuntu2/debian/control
--- 0.19.2+dfsg1-3/debian/control	2021-09-25 07:52:17.000000000 +0000
+++ 0.19.2+dfsg1-3ubuntu2/debian/control	2022-02-14 15:22:42.000000000 +0000
@@ -1,5 +1,6 @@
 Source: freecad
-Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
 Uploaders: Sebastian Kuzminsky <seb@highlab.com>,
            Kurt Kremitzki <kkremitzki@debian.org>
 Section: science
diff -pruN 0.19.2+dfsg1-3/debian/patches/python3.10.patch 0.19.2+dfsg1-3ubuntu2/debian/patches/python3.10.patch
--- 0.19.2+dfsg1-3/debian/patches/python3.10.patch	1970-01-01 00:00:00.000000000 +0000
+++ 0.19.2+dfsg1-3ubuntu2/debian/patches/python3.10.patch	2022-02-14 15:22:32.000000000 +0000
@@ -0,0 +1,24 @@
+From 3dfdc6804f3931b27ebb526d3d87b200874d2a7c Mon Sep 17 00:00:00 2001
+From: wmayer <wmayer@users.sourceforge.net>
+Date: Mon, 24 Jan 2022 10:28:22 +0100
+Subject: [PATCH] Fem: [skip ci] fix runtime failure when using Py3.10
+
+Origin: upstream, https://github.com/FreeCAD/FreeCAD/commit/3dfdc6804f3931b27ebb526d3d87b200874d2a7c
+Last-Update: 2022-02-14
+---
+ src/Mod/Fem/femsolver/elmer/sifio.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/Mod/Fem/femsolver/elmer/sifio.py b/src/Mod/Fem/femsolver/elmer/sifio.py
+index b29f91d2308..09803900102 100644
+--- a/src/Mod/Fem/femsolver/elmer/sifio.py
++++ b/src/Mod/Fem/femsolver/elmer/sifio.py
+@@ -339,7 +339,7 @@ def _getOnlyElement(self, collection):
+     def _isCollection(self, data):
+         return (
+             not isinstance(data, six.string_types)
+-            and isinstance(data, collections.Iterable)
++            and isinstance(data, collections.abc.Iterable)
+         )
+ 
+     def _checkScalar(self, dataType):
diff -pruN 0.19.2+dfsg1-3/debian/patches/series 0.19.2+dfsg1-3ubuntu2/debian/patches/series
--- 0.19.2+dfsg1-3/debian/patches/series	2021-09-07 00:13:40.000000000 +0000
+++ 0.19.2+dfsg1-3ubuntu2/debian/patches/series	2022-02-14 15:22:37.000000000 +0000
@@ -11,3 +11,4 @@ python3.8.patch
 python3.8-syntax.diff
 fix-s390x-test-fail-skip-load-old-file.patch
 fix_vtk9.patch
+python3.10.patch
