summaryrefslogtreecommitdiff
path: root/dev-python/asyncpg/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/asyncpg/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/asyncpg/files')
-rw-r--r--dev-python/asyncpg/files/asyncpg-0.30.0-cflags.patch15
-rw-r--r--dev-python/asyncpg/files/asyncpg-0.30.0-disable-broken-tests.patch67
2 files changed, 0 insertions, 82 deletions
diff --git a/dev-python/asyncpg/files/asyncpg-0.30.0-cflags.patch b/dev-python/asyncpg/files/asyncpg-0.30.0-cflags.patch
deleted file mode 100644
index 19c197dd7bd1..000000000000
--- a/dev-python/asyncpg/files/asyncpg-0.30.0-cflags.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Do not overwrite user's optimization.
-
-Bug: https://bugs.gentoo.org/887651
-
---- a/setup.py
-+++ b/setup.py
-@@ -27,7 +27,7 @@ from setuptools.command import build_ext as setuptools_build_ext
-
- CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<4.0.0)'
-
--CFLAGS = ['-O2']
-+CFLAGS = []
- LDFLAGS = []
-
- if platform.uname().system != 'Windows':
diff --git a/dev-python/asyncpg/files/asyncpg-0.30.0-disable-broken-tests.patch b/dev-python/asyncpg/files/asyncpg-0.30.0-disable-broken-tests.patch
deleted file mode 100644
index 1fafbc25f3c0..000000000000
--- a/dev-python/asyncpg/files/asyncpg-0.30.0-disable-broken-tests.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-From 5a1ee01f8bc8fc6709ef4f636f7a67029d90e26d Mon Sep 17 00:00:00 2001
-From: Elvis Pranskevichus <elvis@edgedb.com>
-Date: Fri, 14 Mar 2025 17:58:46 -0700
-Subject: [PATCH] Disable connection URI tests broken by a recent Python fix
- (#1244)
-
-A fix for python/cpython#105704 broke parsing of URIs containing
-multiple hosts if one or all of the hosts are IPv6 address literals.
-This blocks CI, so disable those tests for now until this is fixed
-properly.
----
- tests/test_connect.py | 39 ++++++++++++++++++++-------------------
- 1 file changed, 20 insertions(+), 19 deletions(-)
-
-diff --git a/tests/test_connect.py b/tests/test_connect.py
-index 0037ee5..024c29e 100644
---- a/tests/test_connect.py
-+++ b/tests/test_connect.py
-@@ -846,25 +846,26 @@ class TestConnectParams(tb.TestCase):
- ),
- },
-
-- {
-- 'name': 'dsn_ipv6_multi_host',
-- 'dsn': 'postgresql://user@[2001:db8::1234%25eth0],[::1]/db',
-- 'result': ([('2001:db8::1234%eth0', 5432), ('::1', 5432)], {
-- 'database': 'db',
-- 'user': 'user',
-- 'target_session_attrs': 'any',
-- })
-- },
--
-- {
-- 'name': 'dsn_ipv6_multi_host_port',
-- 'dsn': 'postgresql://user@[2001:db8::1234]:1111,[::1]:2222/db',
-- 'result': ([('2001:db8::1234', 1111), ('::1', 2222)], {
-- 'database': 'db',
-- 'user': 'user',
-- 'target_session_attrs': 'any',
-- })
-- },
-+ # broken by https://github.com/python/cpython/pull/129418
-+ # {
-+ # 'name': 'dsn_ipv6_multi_host',
-+ # 'dsn': 'postgresql://user@[2001:db8::1234%25eth0],[::1]/db',
-+ # 'result': ([('2001:db8::1234%eth0', 5432), ('::1', 5432)], {
-+ # 'database': 'db',
-+ # 'user': 'user',
-+ # 'target_session_attrs': 'any',
-+ # })
-+ # },
-+
-+ # {
-+ # 'name': 'dsn_ipv6_multi_host_port',
-+ # 'dsn': 'postgresql://user@[2001:db8::1234]:1111,[::1]:2222/db',
-+ # 'result': ([('2001:db8::1234', 1111), ('::1', 2222)], {
-+ # 'database': 'db',
-+ # 'user': 'user',
-+ # 'target_session_attrs': 'any',
-+ # })
-+ # },
-
- {
- 'name': 'dsn_ipv6_multi_host_query_part',
---
-2.50.0
-