summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2020-12-22 23:57:27 +0200
committerKhem Raj <raj.khem@gmail.com>2021-01-04 14:48:29 -0800
commitd361fb7d3b6370b0d2528733527d75d622196b0c (patch)
tree8045e07ad776b6674da001642129e6ac1bed2476 /meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb
parent558a6a00d21699c232eafec5b7f08ba1bdd24b01 (diff)
downloadmeta-openembedded-d361fb7d3b6370b0d2528733527d75d622196b0c.tar.gz
python3-pymongo: Upgrade 3.11.0 -> 3.11.2
Upgrade to release 3.11.2: - Fixed a memory leak caused by failing SDAM monitor checks on Python 3 (PYTHON-2433). - Fixed a regression that changed the string representation of BulkWriteError (PYTHON-2438). - Fixed a bug that made it impossible to use bson.codec_options.CodecOptions.with_options() and with_options() on some early versions of Python 3.4 and Python 3.5 due to a bug in the standard library implementation of collections.namedtuple._asdict() (PYTHON-2440). - Fixed a bug that resulted in a TypeError exception when a PyOpenSSL socket was configured with a timeout of None (PYTHON-2443). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb b/meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb
new file mode 100644
index 0000000000..5372ac0ff1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymongo_3.11.2.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Python driver for MongoDB <http://www.mongodb.org>"
2DESCRIPTION = "\
3The PyMongo distribution contains tools for interacting with MongoDB \
4database from Python. The bson package is an implementation of the BSON \
5format for Python. The pymongo package is a native Python driver for \
6MongoDB. The gridfs package is a gridfs implementation on top of pymongo."
7HOMEPAGE = "http://github.com/mongodb/mongo-python-driver"
8LICENSE = "Apache-2.0"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
10
11SRC_URI[sha256sum] = "c2b67881392a9e85aa108e75f62cdbe372d5a3f17ea5f8d3436dcf4662052f14"
12
13inherit pypi setuptools3
14
15PACKAGES =+ "${PYTHON_PN}-bson"
16
17FILES_${PYTHON_PN}-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*"
18
19RDEPENDS_${PYTHON_PN}-bson += " \
20 ${PYTHON_PN}-datetime \
21 ${PYTHON_PN}-json \
22 ${PYTHON_PN}-netclient \
23 ${PYTHON_PN}-numbers \
24 ${PYTHON_PN}-threading \
25"
26
27RDEPENDS_${PN} += " \
28 ${PYTHON_PN}-bson \
29 ${PYTHON_PN}-pprint \
30"