Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/psycopg/
Date: Mon, 07 Nov 2022 12:56:41
Message-Id: 1667825211.8631f1daa61b0769553cee7fe83e6ce7f484b538.mgorny@gentoo
1 commit: 8631f1daa61b0769553cee7fe83e6ce7f484b538
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 7 12:46:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 7 12:46:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8631f1da
7
8 dev-python/psycopg: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/psycopg/Manifest | 1 -
13 dev-python/psycopg/psycopg-2.9.3.ebuild | 54 ---------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
17 index 51034759daf2..8832b8ca098a 100644
18 --- a/dev-python/psycopg/Manifest
19 +++ b/dev-python/psycopg/Manifest
20 @@ -1,4 +1,3 @@
21 DIST psycopg-3.1.3.gh.tar.gz 468400 BLAKE2B 5df0414d1afef4a09a319453e2d9cebd6177af507c30e69aac64dc1d476cf7a0d182c72b81e46d95e3167ee503fa9756ba82ad1092419eea0d6fc3c6e9ba972c SHA512 83ca6dc81cff841c9e22ad8ae86500be0012ee0edbc50b8ab97dcdcbe9d17a8b32feb637275bbaef8333f252aeb961fc5f1f9d2c66dcb1e92b0a1b67223624fb
22 DIST psycopg-3.1.4.gh.tar.gz 469317 BLAKE2B a6df49a5adefbeb310602473e950ef77f0c613d8a33d41ee37dbfec544dfd014dba8dae5f78ce2bc89f2d9531ccbdd6ea07665ca638f29a4a7d0d1006bc0d778 SHA512 2bf49d6eb7e20c6f22adf47cef6dce691f38f4b310f2fbf3986f3ad14c7d390d53b9edeb3365bbf096941cc2d2affe2ddd542fe93ef37c41109742c9f9af4ba7
23 -DIST psycopg2-2.9.3.tar.gz 380611 BLAKE2B 78099da7378dcfa8b7f28aae4d533a7e890cdb7ae4c0cc718a9411e630fd07b56f074760fc29de8fe08fe727328cca39414a5f297fb92ed2f7471a24e633d18d SHA512 048184d1d162a371fc0fba711448a6fa8a6aac193421f4484c7f7b91c39065d5b632fa34fc15a901eca055d597302b1f9e38330b248ed0e4653dcdc544b0d660
24 DIST psycopg2-2.9.4.tar.gz 384017 BLAKE2B 4bc0afcc890c8a257c1ccd5c6e4e5301857a80f8b1428aa46c1473c9e18f5d2914a2e592c13336b06106217bb334d9b0321835bdd123f1627cbeb29dedf97bf7 SHA512 259088e42e0ab0d8a1a0ccf04f5e560f32c6179b4a0a0059e91bcf269baa8f4b0f1f949c332c640a2438c927a29b2c144078a861f8e18ba9c764da7c93c73b8d
25
26 diff --git a/dev-python/psycopg/psycopg-2.9.3.ebuild b/dev-python/psycopg/psycopg-2.9.3.ebuild
27 deleted file mode 100644
28 index 1f51cddf6b8b..000000000000
29 --- a/dev-python/psycopg/psycopg-2.9.3.ebuild
30 +++ /dev/null
31 @@ -1,54 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -PYTHON_COMPAT=( python3_{8..10} )
38 -inherit distutils-r1
39 -
40 -MY_PN="${PN}2"
41 -MY_P="${MY_PN}-${PV}"
42 -
43 -DESCRIPTION="PostgreSQL database adapter for Python"
44 -HOMEPAGE="https://www.psycopg.org https://pypi.org/project/psycopg2/"
45 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
46 -S=${WORKDIR}/${MY_P}
47 -
48 -LICENSE="LGPL-3+"
49 -SLOT="2"
50 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
51 -IUSE="debug test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND=">=dev-db/postgresql-8.1:*"
55 -DEPEND="${RDEPEND}"
56 -BDEPEND="
57 - test? ( >=dev-db/postgresql-8.1[server] )"
58 -
59 -python_prepare_all() {
60 - if use debug; then
61 - sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die
62 - fi
63 -
64 - distutils-r1_python_prepare_all
65 -}
66 -
67 -src_test() {
68 - initdb -D "${T}"/pgsql || die
69 - # TODO: random port
70 - pg_ctl -w -D "${T}"/pgsql start \
71 - -o "-h '' -k '${T}'" || die
72 - createdb -h "${T}" psycopg2_test || die
73 -
74 - local -x PSYCOPG2_TESTDB_HOST="${T}"
75 - distutils-r1_src_test
76 -
77 - pg_ctl -w -D "${T}"/pgsql stop || die
78 -}
79 -
80 -python_test() {
81 - "${EPYTHON}" -c "
82 -import tests
83 -tests.unittest.main(defaultTest='tests.test_suite')
84 -" --verbose || die "Tests fail with ${EPYTHON}"
85 -}