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: Wed, 29 Dec 2021 23:15:08
Message-Id: 1640819692.881508b4c0e9aafc1fb3a6f4d8576cdad9ca574d.mgorny@gentoo
1 commit: 881508b4c0e9aafc1fb3a6f4d8576cdad9ca574d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 29 22:36:45 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 29 23:14:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881508b4
7
8 dev-python/psycopg: Bump to 2.9.3
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 insertions(+)
15
16 diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
17 index 5d8ac5309f1d..0b468d4b76a3 100644
18 --- a/dev-python/psycopg/Manifest
19 +++ b/dev-python/psycopg/Manifest
20 @@ -1,2 +1,3 @@
21 DIST psycopg2-2.8.6.tar.gz 383797 BLAKE2B da0e3f1e143c51c940ba1f51d3e457b492d880ab71267dacd4747444bc767711ccd6c2f54d9e10ce5ad8fae0c3206fb4b6199f267e9bbaf12eb654227f59c2b0 SHA512 1e1d5d8755c6d1a153d84210bf29902afafe853659d709e13abc6bc5772def13779d2394690af1c544384c9c607edc0fe5cf2763244fb346febf9a9e0032b45f
22 DIST psycopg2-2.9.2.tar.gz 380253 BLAKE2B f3b649986f8bec56df33858373e510ea69623fc38416f6344c7b63e4c82b412d24edd1b0cadcbf391e8920626ac86e81388e916711ab4d5c6dfc3f88070f5d8f SHA512 96b15db1a8c597dc7b6a725aa67952bcbac8e0e3d4f1cea97c7ffa14b272d21b4c16fd567edbbb4a01aa2c4b01c0bba562cdeea1f678aebf2139aa171dacd0a8
23 +DIST psycopg2-2.9.3.tar.gz 380611 BLAKE2B 78099da7378dcfa8b7f28aae4d533a7e890cdb7ae4c0cc718a9411e630fd07b56f074760fc29de8fe08fe727328cca39414a5f297fb92ed2f7471a24e633d18d SHA512 048184d1d162a371fc0fba711448a6fa8a6aac193421f4484c7f7b91c39065d5b632fa34fc15a901eca055d597302b1f9e38330b248ed0e4653dcdc544b0d660
24
25 diff --git a/dev-python/psycopg/psycopg-2.9.3.ebuild b/dev-python/psycopg/psycopg-2.9.3.ebuild
26 new file mode 100644
27 index 000000000000..0dac067c45bd
28 --- /dev/null
29 +++ b/dev-python/psycopg/psycopg-2.9.3.ebuild
30 @@ -0,0 +1,54 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit distutils-r1
38 +
39 +MY_PN="${PN}2"
40 +MY_P="${MY_PN}-${PV}"
41 +
42 +DESCRIPTION="PostgreSQL database adapter for Python"
43 +HOMEPAGE="https://www.psycopg.org https://pypi.org/project/psycopg2/"
44 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
45 +S=${WORKDIR}/${MY_P}
46 +
47 +LICENSE="LGPL-3+"
48 +SLOT="2"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
50 +IUSE="debug test"
51 +RESTRICT="!test? ( test )"
52 +
53 +RDEPEND=">=dev-db/postgresql-8.1:*"
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="
56 + test? ( >=dev-db/postgresql-8.1[server] )"
57 +
58 +python_prepare_all() {
59 + if use debug; then
60 + sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die
61 + fi
62 +
63 + distutils-r1_python_prepare_all
64 +}
65 +
66 +src_test() {
67 + initdb -D "${T}"/pgsql || die
68 + # TODO: random port
69 + pg_ctl -w -D "${T}"/pgsql start \
70 + -o "-h '' -k '${T}'" || die
71 + createdb -h "${T}" psycopg2_test || die
72 +
73 + local -x PSYCOPG2_TESTDB_HOST="${T}"
74 + distutils-r1_src_test
75 +
76 + pg_ctl -w -D "${T}"/pgsql stop || die
77 +}
78 +
79 +python_test() {
80 + "${EPYTHON}" -c "
81 +import tests
82 +tests.unittest.main(defaultTest='tests.test_suite')
83 +" --verbose || die "Tests fail with ${EPYTHON}"
84 +}