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: Sat, 05 Nov 2022 14:34:28
Message-Id: 1667658860.286d89a6072bb5e98eebc06c429eb247dc881a42.mgorny@gentoo
1 commit: 286d89a6072bb5e98eebc06c429eb247dc881a42
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 5 11:07:02 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 5 14:34:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=286d89a6
7
8 dev-python/sqlalchemy: Bump to 1.4.43
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.43.ebuild | 96 ++++++++++++++++++++++++++
14 2 files changed, 97 insertions(+)
15
16 diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
17 index 04d23f9bd79f..ae7184d68059 100644
18 --- a/dev-python/sqlalchemy/Manifest
19 +++ b/dev-python/sqlalchemy/Manifest
20 @@ -1,2 +1,3 @@
21 DIST SQLAlchemy-1.4.41.tar.gz 8281227 BLAKE2B 31fb2bfcb41ceefc2c6ed70444b5d8b38a862e06899dd9b5ede7fde0b624ce9f8be766028aaf32b36983268c35e61d87ada5a597260fb97efe72bfc27ce15a71 SHA512 f03a2d4d61a108b4091a4d2ccf2bf49ea22e6c30fcbd70758f89dc3817968e7b5ffa603ce0158812fe42814cd08bbadd00079609a47765d3c534d769835a5543
22 DIST SQLAlchemy-1.4.42.tar.gz 8303728 BLAKE2B 8b3a4f1c0931e6182b0251b986d3efb14b032035cb9b6f86fbbd9928f69a12436944c6e5a81aca6ca50dbea76306b14ca8ef68ea36ef82c4b4531498681191a4 SHA512 113e7c5e0949d70091f74271a55722caa1597d65e2e18208691dfd3ff1753b6eec7e69da954958e6dbd34d9c78c022e73bc123d1d1536d27d24f77c044e13621
23 +DIST SQLAlchemy-1.4.43.tar.gz 8510996 BLAKE2B 49e77ab7ac75c622981a5ba81efc75e39369d988811a514c7bda10fdddeb64a7a573a452d5afe02d3379d3f56a7f70400a898544b1c0dc995efa1edf991029af SHA512 ee26578874617d46bee8c45e5358e966dafe76d11ff3773a0ce058cfdc180642c87ead782b64e0709aa6af2f92fbcb8a4df3d5e5ce69c9ee3ed4a8583be3b802
24
25 diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
26 new file mode 100644
27 index 000000000000..5d3491de0785
28 --- /dev/null
29 +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
30 @@ -0,0 +1,96 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
38 +PYTHON_REQ_USE="sqlite?"
39 +
40 +inherit distutils-r1 optfeature
41 +
42 +MY_PN="SQLAlchemy"
43 +MY_P="${MY_PN}-${PV/_beta/b}"
44 +
45 +DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
46 +HOMEPAGE="
47 + https://www.sqlalchemy.org/
48 + https://pypi.org/project/SQLAlchemy/
49 + https://github.com/sqlalchemy/sqlalchemy/
50 +"
51 +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
52 +S="${WORKDIR}/${MY_P}"
53 +
54 +LICENSE="MIT"
55 +SLOT="0"
56 +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"
57 +IUSE="examples +sqlite test"
58 +
59 +BDEPEND="
60 + test? (
61 + $(python_gen_impl_dep sqlite)
62 + )
63 +"
64 +
65 +distutils_enable_tests pytest
66 +
67 +EPYTEST_IGNORE=(
68 + # hardcode call counts specific to Python versions
69 + test/aaa_profiling
70 +)
71 +
72 +src_prepare() {
73 + sed -i -e '/greenlet/d' setup.cfg || die
74 + distutils-r1_src_prepare
75 +}
76 +
77 +python_test() {
78 + local EPYTEST_DESELECT=(
79 + # warning tests are unreliable
80 + test/base/test_warnings.py
81 + )
82 + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
83 + test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access
84 + # https://github.com/sqlalchemy/sqlalchemy/issues/8762
85 + test/orm/test_query.py::YieldTest_sqlite+pysqlite_3_39_4::test_yield_per_close_on_interrupted_iteration_legacy
86 + )
87 + if ! has_version "dev-python/greenlet[${PYTHON_USEDEP}]"; then
88 + EPYTEST_DESELECT+=(
89 + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_execution
90 + test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync
91 + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]"
92 + "test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]"
93 + "test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]"
94 + )
95 + fi
96 +
97 + # upstream's test suite is horribly hacky; it relies on disabling
98 + # the warnings plugin and turning warnings into errors; this also
99 + # means that any DeprecationWarnings from third-party plugins cause
100 + # everything to explode
101 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
102 + local -x PYTEST_PLUGINS=
103 + # upstream automagically depends on xdist when it is importable
104 + if has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]"; then
105 + PYTEST_PLUGINS+=xdist.plugin
106 + fi
107 + epytest
108 +}
109 +
110 +python_install_all() {
111 + if use examples; then
112 + docompress -x "/usr/share/doc/${PF}/examples"
113 + dodoc -r examples
114 + fi
115 +
116 + distutils-r1_python_install_all
117 +}
118 +
119 +pkg_postinst() {
120 + optfeature "asyncio support" dev-python/greenlet
121 + optfeature "MySQL support" \
122 + dev-python/mysqlclient \
123 + dev-python/pymysql \
124 + dev-python/mysql-connector-python
125 + optfeature "postgresql support" dev-python/psycopg:2
126 +}