dev-python/pg8000: drop 1.29.2

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2023-05-02 21:53:27 +05:00
parent c4ec4fd160
commit 2d244d1e0a
2 changed files with 0 additions and 79 deletions

View File

@@ -1,2 +1 @@
DIST pg8000-1.29.2.tar.gz 92786 BLAKE2B de39587bb34f21b5c9c4477dd5380d3f790091970867a342c87fac91383e68e8b06e883f25130eefbb88d929d869018881558750f735c81615fbcdc96f9c796b SHA512 3e40d254800c7354097372cc58abbd633316e9e9340d02cc20f21a2dc6c87b559a157c9719b6f15cf2d96c393e0c904c6d1310ea9d6367bb808c3c13114ec431
DIST pg8000-1.29.4.tar.gz 126629 BLAKE2B 7d71e64c3ac37d9271b3dad20e80ed208c3f062149f7877a964c3ad72b1b245d0210b2e53ee0747f6318de7a81bfa4d03f16312263557b62e751fe89595eab23 SHA512 b96c5a4c42354f74bde3ee3af1688164cd74280c432c458d2d71563329162b7551e48f08c31ca8b1d3c1ff068aeccfd0b385265d2f64da34f1d2c59daca0c5dc

View File

@@ -1,78 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_10 )
DISTUTILS_USE_PEP517=setuptools
inherit databases distutils-r1 edo pypi
DESCRIPTION="A Pure-Python PostgreSQL Driver"
HOMEPAGE="
https://github.com/tlocke/pg8000
https://pypi.org/project/pg8000/
"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/scramp-1.4.3[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
$(python_gen_impl_dep "ssl")
$(epostgres --get-depend "xml")
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-python/pytest-benchmark[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
)
"
SSL_TESTS=(
test/dbapi/auth/test_md5_ssl.py
test/dbapi/auth/test_scram-sha-256_ssl.p
test/legacy/auth/test_md5_ssl.py
test/legacy/auth/test_scram-sha-256_ssl.py
test/native/auth/test_md5_ssl.py
test/native/auth/test_scram-sha-256_ssl.py
)
EPYTEST_DESELECT=(
# traceback doesn't match
test/test_readme.py
# TODO: ssl tests (need certificates and stuff)
"${SSL_TESTS[@]}"
# "database doesn't exist" errors
test/dbapi/auth/test_gss.py
test/legacy/auth/test_gss.py
test/native/auth/test_gss.py
# too unstable
test/native/test_typeconversion.py::test_roundtrip_oid
)
distutils_enable_tests pytest
python_test_ssl() {
epytest "${SSL_TESTS[@]}"
}
src_test() {
epsql() {
edo psql -q -h "${sockdir}" -U postgres "${@}"
}
local -x PGPORT="65432"
local -x PGPASSWORD="cpsnow"
local sockdir=$(epostgres --get-sockdir)
epostgres --start ${PGPORT}
epsql -c "ALTER ROLE postgres WITH PASSWORD '${PGPASSWORD}';"
epsql -c "CREATE EXTENSION hstore;"
epsql -c "SELECT pg_reload_conf();"
distutils-r1_src_test
epostgres --stop
}