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: Mon, 29 Nov 2021 23:17:10
Message-Id: 1638227824.5dfea1e8513fb729f7218e6d70c3a71fd179ca33.mgorny@gentoo
1 commit: 5dfea1e8513fb729f7218e6d70c3a71fd179ca33
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 29 21:48:22 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 29 23:17:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dfea1e8
7
8 dev-python/pymongo: Bump to 3.12.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pymongo/Manifest | 1 +
13 dev-python/pymongo/pymongo-3.12.2.ebuild | 112 +++++++++++++++++++++++++++++++
14 2 files changed, 113 insertions(+)
15
16 diff --git a/dev-python/pymongo/Manifest b/dev-python/pymongo/Manifest
17 index b657b3eeaba7..33dfd91238f1 100644
18 --- a/dev-python/pymongo/Manifest
19 +++ b/dev-python/pymongo/Manifest
20 @@ -1,4 +1,5 @@
21 DIST mongo-python-driver-3.11.4.tar.gz 983009 BLAKE2B b2ca8d90a34b41c0991b545626853137b6a7f5f006dbb5d7a93fd8312759b53b99415583ca5ba982abb420db8502cb9de745f1ac0962efa05eb05ecb4289c323 SHA512 ecd2ff41ab902423dc58901cd9a8355e200f5b00a4eea4a8e950de75674fd59f7367df1ab7ee6c09bf515b8fa110cac0f7de084fbe14527486a9c38a0c8c9c27
22 DIST mongo-python-driver-3.12.0.tar.gz 1062091 BLAKE2B 636a34a42d43a6ecd549c51e9e5b3a617291b64a1ba91d7473c365f8df88d59efd7b2906dd80147ffab4309d38cce30a3475bbe142e347312823236f8657c801 SHA512 fc2734b8821b42cca1b67930d5c7612526e51292144a376425627ea6254b09128ccd894af3be293184f940c7f8faa1c0cd3a0d069f9b4143a15cb32279c3bdb1
23 DIST mongo-python-driver-3.12.1.tar.gz 1067667 BLAKE2B 3f18c5aa92ce180067f9c86e1fcbd80543274a2ee33ce1fad5741f0e7f5a9cb0520c33b8fe885ea69c2c8ce168747a44129fe79a5df389b83bd5e77a6ec4a687 SHA512 1fc98c33d8140ab045804130fc27b655a8622318f7030967d841e7a296dcdfb89a125cb2574a9b08eef15d3fdc089f268631501743b46d04a7b465cc45c0c04e
24 +DIST mongo-python-driver-3.12.2.tar.gz 1069372 BLAKE2B 962dc2ee42f01586d9e8fb07d3ba7a74f4379af268b6213c1a5b67b901c805719b9c164fc3d270dd77b3c627f998b291330eeb02968246f2a68e5925bcb608fc SHA512 0e6ac0eafb8fb71db22e7ce27e6acc5c17ea80ac8c0100c358302582da68e03d7bd33eed320f5c8c43b067c3f1e75b4ed4f8c63c4c9705bf9a1c764917d973cb
25 DIST mongo-python-driver-4.0.tar.gz 1029687 BLAKE2B d8ae35b68bff288388a797c51b40d453c3e2197a0b639689bbb43f7e4470f3c4d5bf861d6ae77805b950e8c8daadcef5043b93c6d6a4b094fcb95521caf4c751 SHA512 b29acfcbd92b8f46780039cd0688cb03c083dfaf1ec6793906029f1e03635edc9a9ef6eb7104fa3dc16eca6df4ccfedd7bd4a8da495f754157edec371211fe15
26
27 diff --git a/dev-python/pymongo/pymongo-3.12.2.ebuild b/dev-python/pymongo/pymongo-3.12.2.ebuild
28 new file mode 100644
29 index 000000000000..c45af7c0a672
30 --- /dev/null
31 +++ b/dev-python/pymongo/pymongo-3.12.2.ebuild
32 @@ -0,0 +1,112 @@
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 probably
86 + rm test/test_srv_polling.py || die
87 + sed -e 's:test_connection_timeout_ms_propagates_to_DNS_resolver:_&:' \
88 + -i test/test_client.py || die
89 + distutils-r1_src_prepare
90 +}
91 +
92 +python_test() {
93 + # Yes, we need TCP/IP for that...
94 + local DB_IP=127.0.0.1
95 + local DB_PORT=27000
96 +
97 + export DB_IP DB_PORT
98 +
99 + local dbpath=${TMPDIR}/mongo.db
100 + local logpath=${TMPDIR}/mongod.log
101 +
102 + # Now, the hard part: we need to find a free port for mongod.
103 + # We're just trying to run it random port numbers and check the log
104 + # for bind errors. It shall be noted that 'mongod --fork' does not
105 + # return failure when it fails to bind.
106 +
107 + mkdir -p "${dbpath}" || die
108 + while true; do
109 + ebegin "Trying to start mongod on port ${DB_PORT}"
110 +
111 + LC_ALL=C \
112 + mongod --dbpath "${dbpath}" --nojournal \
113 + --bind_ip ${DB_IP} --port ${DB_PORT} \
114 + --unixSocketPrefix "${TMPDIR}" \
115 + --logpath "${logpath}" --fork \
116 + && sleep 2
117 +
118 + # Now we need to check if the server actually started...
119 + if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then
120 + # yay!
121 + eend 0
122 + break
123 + elif grep -q 'Address already in use' "${logpath}"; then
124 + # ay, someone took our port!
125 + eend 1
126 + : $(( DB_PORT += 1 ))
127 + continue
128 + else
129 + eend 1
130 + eerror "Unable to start mongod for tests. See the server log:"
131 + eerror " ${logpath}"
132 + die "Unable to start mongod for tests."
133 + fi
134 + done
135 +
136 + local failed
137 + DB_PORT2=$(( DB_PORT + 1 )) DB_PORT3=$(( DB_PORT + 2 )) esetup.py test || failed=1
138 +
139 + mongod --dbpath "${dbpath}" --shutdown || die
140 +
141 + [[ ${failed} ]] && die "Tests fail with ${EPYTHON}"
142 +
143 + rm -rf "${dbpath}" || die
144 +}