summaryrefslogtreecommitdiff
path: root/dev-python/asyncpg
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-03 06:58:45 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-03 06:58:45 +0000
commit0dd4db15f9556ddfeaee24e7d14249d4727d70ef (patch)
treed542995efabb186f3eed5548cb35ec3a3c081c51 /dev-python/asyncpg
parente1b3589931e6073f03fab1bc3d6db0978d085414 (diff)
downloadbaldeagleos-repo-0dd4db15f9556ddfeaee24e7d14249d4727d70ef.tar.gz
baldeagleos-repo-0dd4db15f9556ddfeaee24e7d14249d4727d70ef.tar.xz
baldeagleos-repo-0dd4db15f9556ddfeaee24e7d14249d4727d70ef.zip
Adding metadata
Diffstat (limited to 'dev-python/asyncpg')
-rw-r--r--dev-python/asyncpg/Manifest1
-rw-r--r--dev-python/asyncpg/asyncpg-0.29.0-r1.ebuild73
-rw-r--r--dev-python/asyncpg/asyncpg-0.30.0.ebuild3
3 files changed, 0 insertions, 77 deletions
diff --git a/dev-python/asyncpg/Manifest b/dev-python/asyncpg/Manifest
index a5e95c9b8f8f..5f650003c843 100644
--- a/dev-python/asyncpg/Manifest
+++ b/dev-python/asyncpg/Manifest
@@ -1,2 +1 @@
-DIST asyncpg-0.29.0.tar.gz 820455 BLAKE2B 9bb5606dfb103e066dcfd15c327fe8a8135bf4433c816dc354d84227e40b9f18bb2788ead0dd25b087f97b3113645b6dcfd8991a7bb6e2e71528d122c41105d5 SHA512 5db979496323fcf4068d5de111b52f2ae1ad9efe68f80c28e6303ad936eb051d1792409f1e31fb86dc35caad5ef9b92c40e4f6dcbcccc3907ab2247f61db5504
DIST asyncpg-0.30.0.tar.gz 957746 BLAKE2B 2da92520bd30c1e5eebbfddabf78b9e9e221fb33ad77fa01f77ceb8bdf73e057868bf60987c2c67a6ed5d8b0cacb3b80c0aefd6afa1b574e2629d358c9158bbb SHA512 bbfc83ae881f454cb16343037ae48fbc9c9c65b57d11fc1e28ec054b9051d823f7da0735307090d0ce4e5dca166590b147d0f9d383a1ac0b894396290aa0782a
diff --git a/dev-python/asyncpg/asyncpg-0.29.0-r1.ebuild b/dev-python/asyncpg/asyncpg-0.29.0-r1.ebuild
deleted file mode 100644
index 50694f666d65..000000000000
--- a/dev-python/asyncpg/asyncpg-0.29.0-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10,11,12,13} ) # doesn't build with pypy3
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 pypi
-
-DESCRIPTION="PostgreSQL driver for asyncio"
-HOMEPAGE="
- https://pypi.org/project/asyncpg/
- https://github.com/MagicStack/asyncpg
-"
-
-LICENSE="Apache-2.0 PSF-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/async-timeout-4.0.3[${PYTHON_USEDEP}]
- ' python3_{10..11})
-"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- test? (
- dev-db/postgresql[server]
- dev-python/uvloop[${PYTHON_USEDEP}]
- )
-"
-
-PATCHES=(
- # Works fine with >=dev-python/cython-3
- # https://github.com/MagicStack/asyncpg/pull/1101
- "${FILESDIR}"/cython-3.patch
-)
-
-EPYTEST_IGNORE=(
- # checks versions from env variables
- "${S}"/tests/test__environment.py
- # runs flake8 (???)
- "${S}"/tests/test__sourcecode.py
-)
-
-distutils_enable_tests pytest
-
-#distutils_enable_sphinx docs \
- #dev-python/sphinxcontrib-asyncio \
- #dev-python/sphinx-rtd-theme
-
-src_prepare() {
- # remove pre-generated Cython sources
- rm asyncpg/{pgproto/pgproto,protocol/protocol}.c || die
-
- distutils-r1_src_prepare
-}
-
-src_configure() {
- use debug && \
- export ASYNCPG_DEBUG=1
-
- distutils-r1_src_configure
-}
-
-python_test() {
- cd "${T}" || die
- for opt in "" "1"; do
- einfo " testing with USE_UVLOOP='${opt}'"
- USE_UVLOOP="${opt}" epytest "${S}"/tests
- done
-}
diff --git a/dev-python/asyncpg/asyncpg-0.30.0.ebuild b/dev-python/asyncpg/asyncpg-0.30.0.ebuild
index 10d15b7e11c7..be5a30782497 100644
--- a/dev-python/asyncpg/asyncpg-0.30.0.ebuild
+++ b/dev-python/asyncpg/asyncpg-0.30.0.ebuild
@@ -20,9 +20,6 @@ KEYWORDS="~amd64 ~x86"
IUSE="kerberos"
RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/async-timeout-4.0.3[${PYTHON_USEDEP}]
- ' python3_10)
kerberos? ( dev-python/gssapi[${PYTHON_USEDEP}] )
"
BDEPEND="