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: Sat, 04 Jun 2022 07:42:09
Message-Id: 1654328520.c33680306cb7a0caff383e7fd0252a19767c841f.mgorny@gentoo
1 commit: c33680306cb7a0caff383e7fd0252a19767c841f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 07:08:40 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 07:42:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3368030
7
8 dev-python/psycopg: Bump to 3.0.14
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/psycopg/Manifest | 1 +
13 dev-python/psycopg/metadata.xml | 1 +
14 dev-python/psycopg/psycopg-3.0.14.ebuild | 73 ++++++++++++++++++++++++++++++++
15 3 files changed, 75 insertions(+)
16
17 diff --git a/dev-python/psycopg/Manifest b/dev-python/psycopg/Manifest
18 index 9fd0d28dc886..1b25aac81d5f 100644
19 --- a/dev-python/psycopg/Manifest
20 +++ b/dev-python/psycopg/Manifest
21 @@ -1,2 +1,3 @@
22 +DIST psycopg-3.0.14.gh.tar.gz 381063 BLAKE2B cc63bda476bd7f5b53698349d893f42e300395cb604ef458d75aa40d0c7f7ac3f89e734534a2df0710fedd6ae63ec1426174c0e78d57680fb63156a2e2aad60f SHA512 3abbe947bddbb1ccc47ce9a5d18351311ca4729e3f25a6dfc5238aac821e69223078beccc30366e375026eee04645fa336b4ad579a91c8ff9d5f852b8c5584be
23 DIST psycopg2-2.8.6.tar.gz 383797 BLAKE2B da0e3f1e143c51c940ba1f51d3e457b492d880ab71267dacd4747444bc767711ccd6c2f54d9e10ce5ad8fae0c3206fb4b6199f267e9bbaf12eb654227f59c2b0 SHA512 1e1d5d8755c6d1a153d84210bf29902afafe853659d709e13abc6bc5772def13779d2394690af1c544384c9c607edc0fe5cf2763244fb346febf9a9e0032b45f
24 DIST psycopg2-2.9.3.tar.gz 380611 BLAKE2B 78099da7378dcfa8b7f28aae4d533a7e890cdb7ae4c0cc718a9411e630fd07b56f074760fc29de8fe08fe727328cca39414a5f297fb92ed2f7471a24e633d18d SHA512 048184d1d162a371fc0fba711448a6fa8a6aac193421f4484c7f7b91c39065d5b632fa34fc15a901eca055d597302b1f9e38330b248ed0e4653dcdc544b0d660
25
26 diff --git a/dev-python/psycopg/metadata.xml b/dev-python/psycopg/metadata.xml
27 index 9bcf434dc99d..5a372b79afcf 100644
28 --- a/dev-python/psycopg/metadata.xml
29 +++ b/dev-python/psycopg/metadata.xml
30 @@ -6,6 +6,7 @@
31 <name>Python</name>
32 </maintainer>
33 <upstream>
34 + <remote-id type="pypi">psycopg</remote-id>
35 <remote-id type="pypi">psycopg2</remote-id>
36 </upstream>
37 </pkgmetadata>
38
39 diff --git a/dev-python/psycopg/psycopg-3.0.14.ebuild b/dev-python/psycopg/psycopg-3.0.14.ebuild
40 new file mode 100644
41 index 000000000000..fec8d3cf5d5b
42 --- /dev/null
43 +++ b/dev-python/psycopg/psycopg-3.0.14.ebuild
44 @@ -0,0 +1,73 @@
45 +# Copyright 1999-2022 Gentoo Authors
46 +# Distributed under the terms of the GNU General Public License v2
47 +
48 +EAPI=8
49 +
50 +DISTUTILS_USE_PEP517=setuptools
51 +PYTHON_COMPAT=( python3_{8..10} )
52 +
53 +inherit distutils-r1
54 +
55 +DESCRIPTION="PostgreSQL database adapter for Python"
56 +HOMEPAGE="
57 + https://www.psycopg.org/psycopg3/
58 + https://github.com/psycopg/psycopg/
59 + https://pypi.org/project/psycopg/
60 +"
61 +SRC_URI="
62 + https://github.com/psycopg/psycopg/archive/${PV}.tar.gz
63 + -> ${P}.gh.tar.gz
64 +"
65 +S=${WORKDIR}/${P}/psycopg
66 +
67 +LICENSE="LGPL-3+"
68 +SLOT="0"
69 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
70 +
71 +DEPEND="
72 + >=dev-db/postgresql-8.1:*
73 +"
74 +RDEPEND="
75 + ${DEPEND}
76 + $(python_gen_cond_dep '
77 + >=dev-python/backports-zoneinfo-0.2.0[${PYTHON_USEDEP}]
78 + ' 3.8)
79 + $(python_gen_cond_dep '
80 + >=dev-python/typing-extensions-3.10[${PYTHON_USEDEP}]
81 + ' 3.8 3.9)
82 +"
83 +BDEPEND="
84 + test? (
85 + >=dev-db/postgresql-8.1[server]
86 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
87 + )
88 +"
89 +
90 +distutils_enable_tests pytest
91 +
92 +EPYTEST_DESELECT=(
93 + # tests for the psycopg_pool package
94 + tests/pool
95 + # some broken mypy magic
96 + tests/test_module.py::test_version
97 + tests/test_module.py::test_version_c
98 + tests/test_typing.py
99 + # TODO, relying on undefined ordering in Python?
100 + tests/test_dns_srv.py::test_srv
101 +)
102 +
103 +src_test() {
104 + # tests are lurking in top-level directory
105 + cd .. || die
106 +
107 + initdb -D "${T}"/pgsql || die
108 + # TODO: random port
109 + pg_ctl -w -D "${T}"/pgsql start \
110 + -o "-h '' -k '${T}'" || die
111 + createdb -h "${T}" test || die
112 +
113 + local -x PSYCOPG_TEST_DSN="host=${T} dbname=test"
114 + distutils-r1_src_test
115 +
116 + pg_ctl -w -D "${T}"/pgsql stop || die
117 +}