commit:     60d82c6c39e5860de41b24fded6658aae2243246
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 11 09:16:53 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 11 09:16:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d82c6c

dev-python/psycopg: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/psycopg/Manifest                |  2 -
 dev-python/psycopg/psycopg-2.8.6-r1.ebuild | 55 ----------------------
 dev-python/psycopg/psycopg-3.0.14.ebuild   | 73 ------------------------------
 3 files changed, 130 deletions(-)

diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
index 3eb2db15fdad..321c8a649dd9 100644
--- a/dev-python/psycopg/Manifest
+++ b/dev-python/psycopg/Manifest
@@ -1,4 +1,2 @@
-DIST psycopg-3.0.14.gh.tar.gz 381063 BLAKE2B 
cc63bda476bd7f5b53698349d893f42e300395cb604ef458d75aa40d0c7f7ac3f89e734534a2df0710fedd6ae63ec1426174c0e78d57680fb63156a2e2aad60f
 SHA512 
3abbe947bddbb1ccc47ce9a5d18351311ca4729e3f25a6dfc5238aac821e69223078beccc30366e375026eee04645fa336b4ad579a91c8ff9d5f852b8c5584be
 DIST psycopg-3.0.15.gh.tar.gz 384815 BLAKE2B 
feed19f8482767de12a549530b8fbef5cd374636f1b1e84b2746f23379760bf3b75fbbaed64b8d45d120b84a1e56b4ce6fe26bf29fb13e6fd20eb39e4aebad9a
 SHA512 
65c0e081821ca580f56495073ca69fa38e98888ff3531dc55faacec647cfeafcc74767c53a7d3edbeea1e5bbc557ba08fbc089be8b6bc73963cbb459b029e313
-DIST psycopg2-2.8.6.tar.gz 383797 BLAKE2B 
da0e3f1e143c51c940ba1f51d3e457b492d880ab71267dacd4747444bc767711ccd6c2f54d9e10ce5ad8fae0c3206fb4b6199f267e9bbaf12eb654227f59c2b0
 SHA512 
1e1d5d8755c6d1a153d84210bf29902afafe853659d709e13abc6bc5772def13779d2394690af1c544384c9c607edc0fe5cf2763244fb346febf9a9e0032b45f
 DIST psycopg2-2.9.3.tar.gz 380611 BLAKE2B 
78099da7378dcfa8b7f28aae4d533a7e890cdb7ae4c0cc718a9411e630fd07b56f074760fc29de8fe08fe727328cca39414a5f297fb92ed2f7471a24e633d18d
 SHA512 
048184d1d162a371fc0fba711448a6fa8a6aac193421f4484c7f7b91c39065d5b632fa34fc15a901eca055d597302b1f9e38330b248ed0e4653dcdc544b0d660

diff --git a/dev-python/psycopg/psycopg-2.8.6-r1.ebuild 
b/dev-python/psycopg/psycopg-2.8.6-r1.ebuild
deleted file mode 100644
index f14410ac8a4d..000000000000
--- a/dev-python/psycopg/psycopg-2.8.6-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-
-inherit distutils-r1 flag-o-matic
-
-MY_PN="${PN}2"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="PostgreSQL database adapter for Python"
-HOMEPAGE="https://www.psycopg.org https://pypi.org/project/psycopg2/";
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="LGPL-3+"
-SLOT="2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
-IUSE="debug test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-db/postgresql-8.1:*"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       test? ( >=dev-db/postgresql-8.1[server] )"
-
-python_prepare_all() {
-       if use debug; then
-               sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die
-       fi
-
-       distutils-r1_python_prepare_all
-}
-
-src_test() {
-       initdb -D "${T}"/pgsql || die
-       # TODO: random port
-       pg_ctl -w -D "${T}"/pgsql start \
-               -o "-h '' -k '${T}'" || die
-       createdb -h "${T}" psycopg2_test || die
-
-       local -x PSYCOPG2_TESTDB_HOST="${T}"
-       distutils-r1_src_test
-
-       pg_ctl -w -D "${T}"/pgsql stop || die
-}
-
-python_test() {
-       "${EPYTHON}" -c "
-import tests
-tests.unittest.main(defaultTest='tests.test_suite')
-" --verbose || die "Tests fail with ${EPYTHON}"
-}

diff --git a/dev-python/psycopg/psycopg-3.0.14.ebuild 
b/dev-python/psycopg/psycopg-3.0.14.ebuild
deleted file mode 100644
index fec8d3cf5d5b..000000000000
--- a/dev-python/psycopg/psycopg-3.0.14.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="PostgreSQL database adapter for Python"
-HOMEPAGE="
-       https://www.psycopg.org/psycopg3/
-       https://github.com/psycopg/psycopg/
-       https://pypi.org/project/psycopg/
-"
-SRC_URI="
-       https://github.com/psycopg/psycopg/archive/${PV}.tar.gz
-               -> ${P}.gh.tar.gz
-"
-S=${WORKDIR}/${P}/psycopg
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
-
-DEPEND="
-       >=dev-db/postgresql-8.1:*
-"
-RDEPEND="
-       ${DEPEND}
-       $(python_gen_cond_dep '
-               >=dev-python/backports-zoneinfo-0.2.0[${PYTHON_USEDEP}]
-       ' 3.8)
-       $(python_gen_cond_dep '
-               >=dev-python/typing-extensions-3.10[${PYTHON_USEDEP}]
-       ' 3.8 3.9)
-"
-BDEPEND="
-       test? (
-               >=dev-db/postgresql-8.1[server]
-               dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-       # tests for the psycopg_pool package
-       tests/pool
-       # some broken mypy magic
-       tests/test_module.py::test_version
-       tests/test_module.py::test_version_c
-       tests/test_typing.py
-       # TODO, relying on undefined ordering in Python?
-       tests/test_dns_srv.py::test_srv
-)
-
-src_test() {
-       # tests are lurking in top-level directory
-       cd .. || die
-
-       initdb -D "${T}"/pgsql || die
-       # TODO: random port
-       pg_ctl -w -D "${T}"/pgsql start \
-               -o "-h '' -k '${T}'" || die
-       createdb -h "${T}" test || die
-
-       local -x PSYCOPG_TEST_DSN="host=${T} dbname=test"
-       distutils-r1_src_test
-
-       pg_ctl -w -D "${T}"/pgsql stop || die
-}

Reply via email to