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/sqlalchemy/
Date: Wed, 01 Jun 2022 07:21:44
Message-Id: 1654068090.75478f0b09c662d7cb03eeaad594c4ad32acacbe.mgorny@gentoo
1 commit: 75478f0b09c662d7cb03eeaad594c4ad32acacbe
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 1 06:28:14 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 1 07:21:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75478f0b
7
8 dev-python/sqlalchemy: Bump to 1.4.37
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sqlalchemy/Manifest | 1 +
13 dev-python/sqlalchemy/sqlalchemy-1.4.37.ebuild | 97 ++++++++++++++++++++++++++
14 2 files changed, 98 insertions(+)
15
16 diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
17 index cfe1dc6511aa..1354b6811f4a 100644
18 --- a/dev-python/sqlalchemy/Manifest
19 +++ b/dev-python/sqlalchemy/Manifest
20 @@ -1,3 +1,4 @@
21 DIST SQLAlchemy-1.4.31.tar.gz 7999646 BLAKE2B 4c394aaa4bc5636cc90f06017466c227b5e16fc54c3a9a42b18cc13906640e4710146325e870598f8905074bf6dad42ea524febc029b1dd5f063e978ebc9a442 SHA512 e54261fcf992845b2e6be47d23f530aec28c7517e6741b1b6a101b9888d3dc3162c1eeab0acc1edb33f56f1360bae3cdccdbcbff0e1e88e477c93d0cd910c17c
22 DIST SQLAlchemy-1.4.35.tar.gz 8136388 BLAKE2B 01a47eab8e11daef133a218a7ef13fa149fb4616b531c3c6d227cc26e3264c259f42770b72335a9fbda5e66ae1ce242fcbe676a528ca1af896d990a84a1f1a57 SHA512 195ab35934bca36e7c4c2127f153eff31775f7f150163912f79143efae63911eded67d8645e08ede2c533c675d18c3c5796235e0c0f6d1e6ebb97664ac13f171
23 DIST SQLAlchemy-1.4.36.tar.gz 8146415 BLAKE2B 62560ac2f2c542d60588a24eef225d39f1b6c4cf6feddfac4631e06731206a837cc0f76b88b40c73600361243857e9e1768b4b4ac0bf5ee8e28736d81028ae58 SHA512 c9bb38ce5eeb7817727e93695f10cf5c247710b809f3298b233ed8be4e2cc08e5a14581d0c5aa2af02d7a49f036fe3a0bb7a88120b58bdce0f115016bdaf2c77
24 +DIST SQLAlchemy-1.4.37.tar.gz 8155965 BLAKE2B cf21c2ab73a5ba2576a857a12f30ea516265af946e25c1b137e57019d862bf04f4757b4755cee28e6f53642d1f1b58f43c99cd1c69f87640e47ac8a1d1ff8d28 SHA512 3f8a814f9bb6fa273f7b210c4567bf7411d0cf2e5caf010a5387fb946063704c342072145a858fb906545dfb1b959155d041e6073273674e51715356fc1f39e6
25
26 diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.37.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.37.ebuild
27 new file mode 100644
28 index 000000000000..d5071298604b
29 --- /dev/null
30 +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.37.ebuild
31 @@ -0,0 +1,97 @@
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=( pypy3 python3_{8..11} )
39 +PYTHON_REQ_USE="sqlite?"
40 +
41 +inherit distutils-r1 optfeature
42 +
43 +MY_PN="SQLAlchemy"
44 +MY_P="${MY_PN}-${PV/_beta/b}"
45 +
46 +DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
47 +HOMEPAGE="
48 + https://www.sqlalchemy.org/
49 + https://pypi.org/project/SQLAlchemy/
50 + https://github.com/sqlalchemy/sqlalchemy/
51 +"
52 +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
53 +S="${WORKDIR}/${MY_P}"
54 +
55 +LICENSE="MIT"
56 +SLOT="0"
57 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
58 +IUSE="examples +sqlite test"
59 +
60 +BDEPEND="
61 + test? (
62 + $(python_gen_impl_dep sqlite)
63 + )
64 +"
65 +
66 +distutils_enable_tests pytest
67 +
68 +EPYTEST_IGNORE=(
69 + # hardcode call counts specific to Python versions
70 + test/aaa_profiling
71 +)
72 +
73 +src_prepare() {
74 + sed -i -e '/greenlet/d' setup.cfg || die
75 + distutils-r1_src_prepare
76 +}
77 +
78 +python_test() {
79 + local EPYTEST_DESELECT=(
80 + # warning tests are unreliable
81 + test/base/test_warnings.py
82 + )
83 + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
84 + test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access
85 + )
86 + [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
87 + # https://github.com/sqlalchemy/sqlalchemy/issues/8019
88 + test/engine/test_logging.py::TransactionContextLoggingTest::test_log_messages_have_correct_metadata_echo
89 + )
90 + if ! has_version "dev-python/greenlet[${PYTHON_USEDEP}]"; then
91 + EPYTEST_DESELECT+=(
92 + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_execution
93 + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync
94 + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-_exclusions0]"
95 + "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]"
96 + )
97 + fi
98 +
99 + # upstream's test suite is horribly hacky; it relies on disabling
100 + # the warnings plugin and turning warnings into errors; this also
101 + # means that any DeprecationWarnings from third-party plugins cause
102 + # everything to explode
103 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
104 + local -x PYTEST_PLUGINS=
105 + # upstream automagically depends on xdist when it is importable
106 + if has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]"; then
107 + PYTEST_PLUGINS+=xdist.plugin
108 + fi
109 + epytest
110 +}
111 +
112 +python_install_all() {
113 + if use examples; then
114 + docompress -x "/usr/share/doc/${PF}/examples"
115 + dodoc -r examples
116 + fi
117 +
118 + distutils-r1_python_install_all
119 +}
120 +
121 +pkg_postinst() {
122 + optfeature "asyncio support" dev-python/greenlet
123 + optfeature "MySQL support" \
124 + dev-python/mysqlclient \
125 + dev-python/pymysql \
126 + dev-python/mysql-connector-python
127 + optfeature "postgresql support" dev-python/psycopg:2
128 +}