summaryrefslogtreecommitdiff
path: root/dev-python/dnspython
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/dnspython')
-rw-r--r--dev-python/dnspython/dnspython-2.8.0.ebuild4
-rw-r--r--dev-python/dnspython/files/dnspython-2.8.0-py315.patch31
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/dnspython/dnspython-2.8.0.ebuild b/dev-python/dnspython/dnspython-2.8.0.ebuild
index 94f605530229..d52217424354 100644
--- a/dev-python/dnspython/dnspython-2.8.0.ebuild
+++ b/dev-python/dnspython/dnspython-2.8.0.ebuild
@@ -40,6 +40,10 @@ BDEPEND="
)
"
+PATCHES=(
+ "${FILESDIR}"/${P}-py315.patch
+)
+
EPYTEST_PLUGINS=()
EPYTEST_XDIST=1
distutils_enable_tests pytest
diff --git a/dev-python/dnspython/files/dnspython-2.8.0-py315.patch b/dev-python/dnspython/files/dnspython-2.8.0-py315.patch
new file mode 100644
index 000000000000..3f6eecc543a8
--- /dev/null
+++ b/dev-python/dnspython/files/dnspython-2.8.0-py315.patch
@@ -0,0 +1,31 @@
+https://github.com/rthalley/dnspython/commit/d91f1ee30bcc68cb356d13b7c5f14b49e63c58bc
+
+From d91f1ee30bcc68cb356d13b7c5f14b49e63c58bc Mon Sep 17 00:00:00 2001
+From: Bob Halley <halley@dnspython.org>
+Date: Sun, 12 Apr 2026 10:47:20 -0700
+Subject: [PATCH] fix testInvalidDigestLengthCDS0 for 3.15
+
+---
+ tests/test_dnssec.py | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/tests/test_dnssec.py b/tests/test_dnssec.py
+index 77bd4fef..b1995034 100644
+--- a/tests/test_dnssec.py
++++ b/tests/test_dnssec.py
+@@ -1246,11 +1246,12 @@ def testInvalidDigestLengthCDS0(self): # type: () -> None
+ "digest length inconsistent with digest type": ["0 0 0 0000"],
+ "Odd-length string": ["0 0 0 0", "0 0 0 000"],
+ }
+- for msg, records in test_records.items():
++ for _, records in test_records.items():
+ for record in records:
+ with self.assertRaises(dns.exception.SyntaxError) as cm:
+ dns.rdata.from_text(dns.rdataclass.IN, dns.rdatatype.CDS, record)
+- self.assertEqual(msg, str(cm.exception))
++ # we don't test the message because it varies between pre=3.15 and 3.15
++ #self.assertEqual(msg, str(cm.exception))
+
+ def testMakeCDS(self): # type: () -> None
+ name = dns.name.from_text("example.com")
+