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/pymongo/
Date: Wed, 08 Dec 2021 06:25:01
Message-Id: 1638944694.ea43d2219743fda4766730896d4b9c8cfbcfa2bd.mgorny@gentoo
1 commit: ea43d2219743fda4766730896d4b9c8cfbcfa2bd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 8 04:58:53 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 8 06:24:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea43d221
7
8 dev-python/pymongo: Bump to 4.0.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pymongo/Manifest | 1 +
13 dev-python/pymongo/pymongo-4.0.1.ebuild | 116 ++++++++++++++++++++++++++++++++
14 2 files changed, 117 insertions(+)
15
16 diff --git a/dev-python/pymongo/Manifest b/dev-python/pymongo/Manifest
17 index 4755e0dd9ce0..f09ae2165605 100644
18 --- a/dev-python/pymongo/Manifest
19 +++ b/dev-python/pymongo/Manifest
20 @@ -3,4 +3,5 @@ DIST mongo-python-driver-3.12.0.tar.gz 1062091 BLAKE2B 636a34a42d43a6ecd549c51e9
21 DIST mongo-python-driver-3.12.1.tar.gz 1067667 BLAKE2B 3f18c5aa92ce180067f9c86e1fcbd80543274a2ee33ce1fad5741f0e7f5a9cb0520c33b8fe885ea69c2c8ce168747a44129fe79a5df389b83bd5e77a6ec4a687 SHA512 1fc98c33d8140ab045804130fc27b655a8622318f7030967d841e7a296dcdfb89a125cb2574a9b08eef15d3fdc089f268631501743b46d04a7b465cc45c0c04e
22 DIST mongo-python-driver-3.12.2.tar.gz 1069372 BLAKE2B 962dc2ee42f01586d9e8fb07d3ba7a74f4379af268b6213c1a5b67b901c805719b9c164fc3d270dd77b3c627f998b291330eeb02968246f2a68e5925bcb608fc SHA512 0e6ac0eafb8fb71db22e7ce27e6acc5c17ea80ac8c0100c358302582da68e03d7bd33eed320f5c8c43b067c3f1e75b4ed4f8c63c4c9705bf9a1c764917d973cb
23 DIST mongo-python-driver-3.12.3.tar.gz 1069576 BLAKE2B accb8d1598c3f7d3fb4bec05390521562abf3a067abf82e25b62ebfdb95ed000f6a77edc60f0bcb816b85b1f7fc32c1e4dd54580c203a5d383d30e144a61dfa9 SHA512 21a723985c7846879d3b81ca41060fa6063b187c91c0c7797227f0b7b174880114aec9412d37821cb3d839bf98039b87f03c7c559b9599626705d3f790a8e11c
24 +DIST mongo-python-driver-4.0.1.tar.gz 1030722 BLAKE2B b820901a433ffa2e82db0ef3c014aaa1e7d53bbc3ab94a5432fcb713d9789cbbf411a4ad5085ef3896cbf2aeff6d0e79f3f7bd5936d3aa615080a0421d8818c2 SHA512 1aead66d21c032e6d42b3aa408b0193bcac6a5a293ecfc513fadb634c574dccdcd351c693352f23cfe577c73fec901cdc2aa635dfe9afe8d9108ed917f55b53b
25 DIST mongo-python-driver-4.0.tar.gz 1029687 BLAKE2B d8ae35b68bff288388a797c51b40d453c3e2197a0b639689bbb43f7e4470f3c4d5bf861d6ae77805b950e8c8daadcef5043b93c6d6a4b094fcb95521caf4c751 SHA512 b29acfcbd92b8f46780039cd0688cb03c083dfaf1ec6793906029f1e03635edc9a9ef6eb7104fa3dc16eca6df4ccfedd7bd4a8da495f754157edec371211fe15
26
27 diff --git a/dev-python/pymongo/pymongo-4.0.1.ebuild b/dev-python/pymongo/pymongo-4.0.1.ebuild
28 new file mode 100644
29 index 000000000000..bdf1ff9c5384
30 --- /dev/null
31 +++ b/dev-python/pymongo/pymongo-4.0.1.ebuild
32 @@ -0,0 +1,116 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +inherit check-reqs distutils-r1
40 +
41 +MY_P=mongo-python-driver-${PV}
42 +DESCRIPTION="Python driver for MongoDB"
43 +HOMEPAGE="https://github.com/mongodb/mongo-python-driver https://pypi.org/project/pymongo/"
44 +SRC_URI="
45 + https://github.com/mongodb/mongo-python-driver/archive/${PV}.tar.gz
46 + -> ${MY_P}.tar.gz"
47 +S=${WORKDIR}/${MY_P}
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm64 ~hppa ~riscv ~x86"
52 +IUSE="doc kerberos"
53 +
54 +RDEPEND="
55 + kerberos? ( dev-python/pykerberos[${PYTHON_USEDEP}] )
56 +"
57 +BDEPEND="
58 + test? (
59 + >=dev-db/mongodb-2.6.0
60 + )
61 +"
62 +DISTUTILS_IN_SOURCE_BUILD=1
63 +
64 +distutils_enable_sphinx doc
65 +distutils_enable_tests unittest
66 +
67 +reqcheck() {
68 + if use test; then
69 + # During the tests, database size reaches 1.5G.
70 + local CHECKREQS_DISK_BUILD=1536M
71 +
72 + check-reqs_${1}
73 + fi
74 +}
75 +
76 +pkg_pretend() {
77 + reqcheck pkg_pretend
78 +}
79 +
80 +pkg_setup() {
81 + reqcheck pkg_setup
82 +}
83 +
84 +src_prepare() {
85 + # network-sandbox
86 + rm test/test_srv_polling.py || die
87 + sed -e 's:test_connection_timeout_ms_propagates_to_DNS_resolver:_&:' \
88 + -e 's:test_service_name_from_kwargs:_&:' \
89 + -e 's:test_srv_max_hosts_kwarg:_&:' \
90 + -i test/test_client.py || die
91 + sed -e '/SRV_SCHEME/s:_HAVE_DNSPYTHON:False:' \
92 + -i test/test_uri_spec.py || die
93 + distutils-r1_src_prepare
94 +}
95 +
96 +python_test() {
97 + # Yes, we need TCP/IP for that...
98 + local DB_IP=127.0.0.1
99 + local DB_PORT=27000
100 +
101 + export DB_IP DB_PORT
102 +
103 + local dbpath=${TMPDIR}/mongo.db
104 + local logpath=${TMPDIR}/mongod.log
105 +
106 + # Now, the hard part: we need to find a free port for mongod.
107 + # We're just trying to run it random port numbers and check the log
108 + # for bind errors. It shall be noted that 'mongod --fork' does not
109 + # return failure when it fails to bind.
110 +
111 + mkdir -p "${dbpath}" || die
112 + while true; do
113 + ebegin "Trying to start mongod on port ${DB_PORT}"
114 +
115 + LC_ALL=C \
116 + mongod --dbpath "${dbpath}" --nojournal \
117 + --bind_ip ${DB_IP} --port ${DB_PORT} \
118 + --unixSocketPrefix "${TMPDIR}" \
119 + --logpath "${logpath}" --fork \
120 + && sleep 2
121 +
122 + # Now we need to check if the server actually started...
123 + if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then
124 + # yay!
125 + eend 0
126 + break
127 + elif grep -q 'Address already in use' "${logpath}"; then
128 + # ay, someone took our port!
129 + eend 1
130 + : $(( DB_PORT += 1 ))
131 + continue
132 + else
133 + eend 1
134 + eerror "Unable to start mongod for tests. See the server log:"
135 + eerror " ${logpath}"
136 + die "Unable to start mongod for tests."
137 + fi
138 + done
139 +
140 + local failed
141 + DB_PORT2=$(( DB_PORT + 1 )) DB_PORT3=$(( DB_PORT + 2 )) esetup.py test || failed=1
142 +
143 + mongod --dbpath "${dbpath}" --shutdown || die
144 +
145 + [[ ${failed} ]] && die "Tests fail with ${EPYTHON}"
146 +
147 + rm -rf "${dbpath}" || die
148 +}