diff -pruN 0.26.3-2/debian/changelog 0.26.3-5/debian/changelog
--- 0.26.3-2/debian/changelog	2024-02-26 23:04:20.000000000 +0000
+++ 0.26.3-5/debian/changelog	2025-09-06 10:18:05.000000000 +0000
@@ -1,3 +1,24 @@
+python-pyhanko-certvalidator (0.26.3-5) unstable; urgency=medium
+
+  * Team upload.
+  * Patch-out "python3-uritools"
+
+ -- Alexandre Detiste <tchet@debian.org>  Sat, 06 Sep 2025 12:18:05 +0200
+
+python-pyhanko-certvalidator (0.26.3-4) unstable; urgency=medium
+
+  * Skip more tests needing internet access
+
+ -- Bastian Germann <bage@debian.org>  Tue, 26 Aug 2025 19:09:44 +0200
+
+python-pyhanko-certvalidator (0.26.3-3) unstable; urgency=medium
+
+  * Team upload
+  * d/watch: Scan main pyHanko repository
+  * Skip tests needing internet access
+
+ -- Bastian Germann <bage@debian.org>  Tue, 26 Aug 2025 17:45:56 +0200
+
 python-pyhanko-certvalidator (0.26.3-2) unstable; urgency=medium
 
   * Fix lintian: missing-prerequisite-for-pyproject-backend
diff -pruN 0.26.3-2/debian/control 0.26.3-5/debian/control
--- 0.26.3-2/debian/control	2024-02-26 22:55:36.000000000 +0000
+++ 0.26.3-5/debian/control	2025-09-06 10:15:28.000000000 +0000
@@ -3,7 +3,6 @@ Section: python
 Priority: optional
 Maintainer: Debian Python Team <team+python@tracker.debian.org>
 Uploaders: Bastian Germann <bage@debian.org>
-Rules-Requires-Root: no
 Build-Depends: debhelper-compat (= 13),
                dh-sequence-python3,
                pybuild-plugin-pyproject,
@@ -14,10 +13,10 @@ Build-Depends: debhelper-compat (= 13),
                python3-freezegun <!nocheck>,
                python3-oscrypto,
                python3-pytest <!nocheck>,
+               python3-pytest-asyncio <!nocheck>,
                python3-requests,
                python3-setuptools,
-               python3-uritools,
-Standards-Version: 4.6.2
+Standards-Version: 4.7.2
 Homepage: https://github.com/MatthiasValvekens/certvalidator
 Vcs-Browser: https://salsa.debian.org/python-team/packages/python-pyhanko-certvalidator
 Vcs-Git: https://salsa.debian.org/python-team/packages/python-pyhanko-certvalidator.git
diff -pruN 0.26.3-2/debian/patches/patch-out-uritools.patch 0.26.3-5/debian/patches/patch-out-uritools.patch
--- 0.26.3-2/debian/patches/patch-out-uritools.patch	1970-01-01 00:00:00.000000000 +0000
+++ 0.26.3-5/debian/patches/patch-out-uritools.patch	2025-09-06 10:17:08.000000000 +0000
@@ -0,0 +1,32 @@
+--- a/pyhanko_certvalidator/name_trees.py
++++ b/pyhanko_certvalidator/name_trees.py
+@@ -3,9 +3,9 @@
+ from dataclasses import dataclass
+ from ipaddress import IPv4Address, IPv6Address
+ from typing import Callable, Dict, Iterable, List, Optional, Set, Union
++from urllib.parse import urlparse
+ 
+ from asn1crypto import x509
+-from uritools import urisplit
+ 
+ logger = logging.getLogger(__name__)
+ 
+@@ -25,7 +25,7 @@
+ 
+ 
+ def _host_regname(cand_uri):
+-    cand_host = urisplit(cand_uri).gethost()
++    cand_host = urlparse(cand_uri).hostname
+     if not cand_host or isinstance(cand_host, (IPv4Address, IPv6Address)):
+         host_err = (
+             f'has host {cand_host}.'
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -36,7 +36,6 @@
+     "asn1crypto>=1.5.1",
+     "oscrypto>=1.1.0",
+     "cryptography>=41.0.5",
+-    "uritools>=3.0.1",
+     "requests>=2.31.0",
+ ]
+ 
diff -pruN 0.26.3-2/debian/patches/series 0.26.3-5/debian/patches/series
--- 0.26.3-2/debian/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ 0.26.3-5/debian/patches/series	2025-09-06 10:15:03.000000000 +0000
@@ -0,0 +1 @@
+patch-out-uritools.patch
diff -pruN 0.26.3-2/debian/rules 0.26.3-5/debian/rules
--- 0.26.3-2/debian/rules	2024-02-26 22:30:37.000000000 +0000
+++ 0.26.3-5/debian/rules	2025-09-06 10:13:53.000000000 +0000
@@ -1,6 +1,7 @@
 #!/usr/bin/make -f
 
 export PYBUILD_NAME=pyhanko-certvalidator
+export PYBUILD_TEST_ARGS=-k 'not test_basic_certificate_validator_tls_aia and not test_fetch_requests and not test_fetch_ocsp_requests and not test_fetch_crl_aiohttp and not test_fetch_ocsp_aiohttp'
 
 %:
 	dh $@ --buildsystem=pybuild
diff -pruN 0.26.3-2/debian/watch 0.26.3-5/debian/watch
--- 0.26.3-2/debian/watch	2024-02-26 22:30:37.000000000 +0000
+++ 0.26.3-5/debian/watch	2025-09-06 10:13:53.000000000 +0000
@@ -1,2 +1,2 @@
 version=4
-https://github.com/MatthiasValvekens/certvalidator/tags .*/v@ANY_VERSION@@ARCHIVE_EXT@
+opts=mode=git https://github.com/MatthiasValvekens/pyHanko.git refs/tags/pyhanko-certvalidator/v@ANY_VERSION@
