diff -pruN 1.4.1+dfsg-2/debian/changelog 1.4.1+dfsg-2ubuntu2/debian/changelog
--- 1.4.1+dfsg-2/debian/changelog	2021-11-27 00:42:07.000000000 +0000
+++ 1.4.1+dfsg-2ubuntu2/debian/changelog	2022-11-03 17:48:34.000000000 +0000
@@ -1,3 +1,22 @@
+python-llfuse (1.4.1+dfsg-2ubuntu2) lunar; urgency=medium
+
+  * No-change rebuild with Python 3.11 as supported
+
+ -- Graham Inggs <ginggs@ubuntu.com>  Thu, 03 Nov 2022 17:48:34 +0000
+
+python-llfuse (1.4.1+dfsg-2ubuntu1) kinetic; urgency=medium
+
+  * debian/patches/test-fix-integer-overflow-on-32-bit-arches.patch: Fix
+    integer overflow in tst_rounding on 32-bit arches (LP: #1981741).
+
+ -- Nick Rosbrook <nick.rosbrook@canonical.com>  Thu, 14 Jul 2022 15:05:57 -0400
+
+python-llfuse (1.4.1+dfsg-2build1) jammy; urgency=medium
+
+  * No-change rebuild with Python 3.10 only
+
+ -- Graham Inggs <ginggs@ubuntu.com>  Wed, 16 Mar 2022 23:09:35 +0000
+
 python-llfuse (1.4.1+dfsg-2) unstable; urgency=medium
 
   [ Debian Janitor ]
diff -pruN 1.4.1+dfsg-2/debian/control 1.4.1+dfsg-2ubuntu2/debian/control
--- 1.4.1+dfsg-2/debian/control	2021-11-27 00:42:07.000000000 +0000
+++ 1.4.1+dfsg-2ubuntu2/debian/control	2022-07-14 19:05:57.000000000 +0000
@@ -2,7 +2,8 @@ Source: python-llfuse
 Section: python
 Priority: optional
 Uploaders: Debian Python Team <team+python@tracker.debian.org>
-Maintainer: Nikolaus Rath <Nikolaus@rath.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Nikolaus Rath <Nikolaus@rath.org>
 Build-Depends: debhelper-compat (= 13),
                dh-python,
                libfuse-dev,
diff -pruN 1.4.1+dfsg-2/debian/patches/series 1.4.1+dfsg-2ubuntu2/debian/patches/series
--- 1.4.1+dfsg-2/debian/patches/series	2021-11-27 00:42:07.000000000 +0000
+++ 1.4.1+dfsg-2ubuntu2/debian/patches/series	2022-07-14 19:05:57.000000000 +0000
@@ -2,3 +2,4 @@
 0003-Skip-extended-attribute-tests-under-GNU-kFreeBSD.patch
 0004-Ignore-exceptions-during-interpreter-shutdown.patch
 mips_dev_t.diff
+test-fix-integer-overflow-on-32-bit-arches.patch
diff -pruN 1.4.1+dfsg-2/debian/patches/test-fix-integer-overflow-on-32-bit-arches.patch 1.4.1+dfsg-2ubuntu2/debian/patches/test-fix-integer-overflow-on-32-bit-arches.patch
--- 1.4.1+dfsg-2/debian/patches/test-fix-integer-overflow-on-32-bit-arches.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.4.1+dfsg-2ubuntu2/debian/patches/test-fix-integer-overflow-on-32-bit-arches.patch	2022-07-14 19:05:57.000000000 +0000
@@ -0,0 +1,45 @@
+Description: test: fix integer overflow on 32-bit arches
+Author: Nick Rosbrook <nick.rosbrook@canonical.com>
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/python-llfuse/+bug/1981741
+Forwarded: https://github.com/python-llfuse/python-llfuse/pull/71
+Last-Update: 2022-07-14
+---
+From: Nick Rosbrook <nr@enr0n.net>
+Date: Thu, 14 Jul 2022 14:54:31 -0400
+Subject: [PATCH] test: fix integer overflow on 32-bit arches
+
+On 32-bit arches, the `secs` value used in tst_rounding overflows:
+
+ Traceback (most recent call last):
+   File "/tmp/autopkgtest.pj5DKH/build.qGL/src/test/test_examples.py", line 82, in test_tmpfs
+     tst_rounding(mnt_dir)
+   File "/tmp/autopkgtest.pj5DKH/build.qGL/src/test/test_examples.py", line 355, in tst_rounding
+     os.utime(filename, None, ns=(atime_ns, mtime_ns))
+ OverflowError: timestamp out of range for platform time_t
+
+To fix this, use the `secs` value from the very similar test_rounding
+test, since it does not overflow 32-bit integers.
+---
+ test/test_examples.py | 6 ++++--
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/test/test_examples.py b/test/test_examples.py
+index ac5e118..ffd09ab 100755
+--- a/test/test_examples.py
++++ b/test/test_examples.py
+@@ -340,8 +340,10 @@ def tst_rounding(mnt_dir, ns_tol=0):
+     os.mkdir(filename)
+     fstat = os.lstat(filename)
+ 
+-    # Approximately 100 years
+-    secs = 100 * 365 * 24 * 3600 + 999
++    # Approximately 67 years, ending in 999.
++    # Note: 67 years were chosen to avoid y2038 issues (1970 + 67 = 2037).
++    #       Testing these is **not** in scope of this test.
++    secs = 67 * 365 * 24 * 3600 + 999
+     # Max nanos
+     nanos = _NANOS_PER_SEC - 1
+ 
+-- 
+2.34.1
+
