Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/psycopg/
Date: Tue, 06 Sep 2022 17:54:47
Message-Id: 1662486869.6eeb76fd08d8007a522b4c4beec42749b5aa2eba.arthurzam@gentoo
1 commit: 6eeb76fd08d8007a522b4c4beec42749b5aa2eba
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 17:52:55 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 17:54:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eeb76fd
7
8 dev-python/psycopg: add 3.1.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/psycopg/Manifest | 1 +
13 dev-python/psycopg/psycopg-3.1.1.ebuild | 75 +++++++++++++++++++++++++++++++++
14 2 files changed, 76 insertions(+)
15
16 diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
17 index 79a4dc3be840..f11c351a7182 100644
18 --- a/dev-python/psycopg/Manifest
19 +++ b/dev-python/psycopg/Manifest
20 @@ -1,3 +1,4 @@
21 DIST psycopg-3.0.16.gh.tar.gz 386693 BLAKE2B c6c0bd9832e65180e7de76b04ef7c81f4c2d0981894d090b933ce0efaaafdf6b62d1d71a4c70c7c9b848b67e576a71953116925f9e991a4ed99b53067e24cbba SHA512 655e01bb00972dacae590f2e8ce5948226acb827b55099e7f362fdee9210f07b755f4da10d2fadd468aa95eaa3f72e7658a1ab26870d4ac159ee266ce1f8140c
22 +DIST psycopg-3.1.1.gh.tar.gz 464501 BLAKE2B 1796ae830051ee0719e4723036ca672ac005793beb88da21b9775cdc96dd4f58b3d008eb3f3a87c3f7293ea097480bbe72a8591b68371d1f7c7261c37927e40f SHA512 a243626c5e0ee0ef414c193b9168f58ec6fa3bfc5652c25c3c1f355f4cea29bcc993ba631a125c0a0335155c15fc068f6cfa5e8974de0cd32e007ae6d3db23dc
23 DIST psycopg-3.1.gh.tar.gz 463892 BLAKE2B 94100bed4807771f6c4d0469737b160955f3f6bfcff84240c9e15dd9b7b88765583952b712642740c97f6ec42223edcf74fb2c5390a185f44ca0eb8858e76100 SHA512 057a14d614ccb9f36a7db7a82c3d48953658a1c6af2a2265a93a3f6c1db421275e51e1be4d59e2ea98b638f3da8c24c9d2a4d9aabf6190c47691dd632c9339f9
24 DIST psycopg2-2.9.3.tar.gz 380611 BLAKE2B 78099da7378dcfa8b7f28aae4d533a7e890cdb7ae4c0cc718a9411e630fd07b56f074760fc29de8fe08fe727328cca39414a5f297fb92ed2f7471a24e633d18d SHA512 048184d1d162a371fc0fba711448a6fa8a6aac193421f4484c7f7b91c39065d5b632fa34fc15a901eca055d597302b1f9e38330b248ed0e4653dcdc544b0d660
25
26 diff --git a/dev-python/psycopg/psycopg-3.1.1.ebuild b/dev-python/psycopg/psycopg-3.1.1.ebuild
27 new file mode 100644
28 index 000000000000..8bd1346c397b
29 --- /dev/null
30 +++ b/dev-python/psycopg/psycopg-3.1.1.ebuild
31 @@ -0,0 +1,75 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..11} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="PostgreSQL database adapter for Python"
43 +HOMEPAGE="
44 + https://www.psycopg.org/psycopg3/
45 + https://github.com/psycopg/psycopg/
46 + https://pypi.org/project/psycopg/
47 +"
48 +SRC_URI="
49 + https://github.com/psycopg/psycopg/archive/${PV}.tar.gz
50 + -> ${P}.gh.tar.gz
51 +"
52 +S=${WORKDIR}/${P}/psycopg
53 +
54 +LICENSE="LGPL-3+"
55 +SLOT="0"
56 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
57 +
58 +DEPEND="
59 + >=dev-db/postgresql-8.1:*
60 +"
61 +RDEPEND="
62 + ${DEPEND}
63 + $(python_gen_cond_dep '
64 + >=dev-python/backports-zoneinfo-0.2.0[${PYTHON_USEDEP}]
65 + ' 3.8)
66 + $(python_gen_cond_dep '
67 + >=dev-python/typing-extensions-4.1[${PYTHON_USEDEP}]
68 + ' 3.8 3.9 3.10)
69 +"
70 +BDEPEND="
71 + test? (
72 + >=dev-db/postgresql-8.1[server]
73 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
74 + dev-python/dnspython[${PYTHON_USEDEP}]
75 + )
76 +"
77 +
78 +distutils_enable_tests pytest
79 +
80 +EPYTEST_DESELECT=(
81 + # tests for the psycopg_pool package
82 + tests/pool
83 + # some broken mypy magic
84 + tests/test_module.py::test_version
85 + tests/test_module.py::test_version_c
86 + tests/test_typing.py
87 + tests/crdb/test_typing.py
88 + # TODO, relying on undefined ordering in Python?
89 + tests/test_dns_srv.py::test_srv
90 +)
91 +
92 +src_test() {
93 + # tests are lurking in top-level directory
94 + cd .. || die
95 +
96 + initdb -D "${T}"/pgsql || die
97 + # TODO: random port
98 + pg_ctl -w -D "${T}"/pgsql start \
99 + -o "-h '' -k '${T}'" || die
100 + createdb -h "${T}" test || die
101 +
102 + local -x PSYCOPG_TEST_DSN="host=${T} dbname=test"
103 + distutils-r1_src_test
104 +
105 + pg_ctl -w -D "${T}"/pgsql stop || die
106 +}