dev-python/pycares: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/26606
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Zac Medico <zmedico@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2022-07-26 18:50:31 +02:00
committed by Zac Medico
parent 84a24e15e0
commit 2decb9c5af

View File

@@ -1,37 +0,0 @@
From 72202e0bc135e360102371708e83334856d485cc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
Date: Wed, 22 Jun 2022 07:38:33 +0200
Subject: [PATCH] core: add flexible member to ares_addrinfo to fix c-ares 1.18
Add a flexible member to account for c-ares 1.18 adding an additional
`name` member to `struct ares_addrinfo`. This fixes the following
exception from cffi, and the resulting test_getaddrinfo* failures:
```
Exception ignored from cffi callback <function _addrinfo_cb at 0x7f5fa890d040>:
Traceback (most recent call last):
File "/tmp/pycares/.tox/py39/lib/python3.9/site-packages/pycares/__init__.py", line 162, in _addrinfo_cb
result = ares_addrinfo_result(res)
File "/tmp/pycares/.tox/py39/lib/python3.9/site-packages/pycares/__init__.py", line 841, in __init__
cname_ptr = ares_addrinfo.cnames
ffi.error: struct ares_addrinfo: wrong total size (cdef says 16, but C compiler says 24). fix it or use "...;" as the last field in the cdef for struct ares_addrinfo to make it flexible
```
---
src/_cffi_src/build_cares.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/_cffi_src/build_cares.py b/src/_cffi_src/build_cares.py
index 77f03aa..dec42c9 100644
--- a/src/_cffi_src/build_cares.py
+++ b/src/_cffi_src/build_cares.py
@@ -337,6 +337,7 @@ struct ares_addrinfo_cname {
struct ares_addrinfo {
struct ares_addrinfo_cname *cnames;
struct ares_addrinfo_node *nodes;
+ ...;
};
struct ares_addrinfo_hints {
--
2.35.1