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: Thu, 17 Jun 2021 06:40:13
Message-Id: 1623911998.fc4b8ed862aca2083bfdfdf31bdea5e64d51f96a.mgorny@gentoo
1 commit: fc4b8ed862aca2083bfdfdf31bdea5e64d51f96a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 17 06:02:07 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 17 06:39:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc4b8ed8
7
8 dev-python/psycopg: Bump to 2.9.1
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.1.ebuild | 55 +++++++++++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
17 index 7a6b63da638..096a6b56a31 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.1.tar.gz 379972 BLAKE2B 89a05f0f3e2f426848641bdf07bee1846a5512dd248d7e4eb4723dbc4f7775b00d142217a5cc59e126eeae8e672173b63de3b1152e3bf14dfaccf5fe7149c88d SHA512 478eaeaad98e4521424a0a48d5f0fdba934bb3b682ba111cc37b833cd3c953ad5fbe2a2071d3a9b95c6a447e95de88887ceda5143b63a08703c388f96dd9b4ad
23 DIST psycopg2-2.9.tar.gz 379805 BLAKE2B 4e34b9dc28d0922ae9e9f75dd734b961915a032eba0c4b5ea9c4fe82bff4d5d230b37b0efdb25b8423177fdd7e98e69d0ed6ae0eccd731dca212845966b9c0ac SHA512 9787d0d3bb163815a452139bc3fbde93c767431b3e31c77dd534b6a476d1c09a51e2503b0420ac7a3753ef7fa64c13e2643f4bf4aeaeb60f15ea4eefc3538bfa
24
25 diff --git a/dev-python/psycopg/psycopg-2.9.1.ebuild b/dev-python/psycopg/psycopg-2.9.1.ebuild
26 new file mode 100644
27 index 00000000000..7a7e34f7350
28 --- /dev/null
29 +++ b/dev-python/psycopg/psycopg-2.9.1.ebuild
30 @@ -0,0 +1,55 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1 flag-o-matic
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 ~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 +}