2011-03-26 08:06:04 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-pymongo
|
|
|
|
#
|
Accepting request 989816 from home:mcalabkova:branches:devel:languages:python
- Update to 4.1.1
* PyMongo 4.0 drops support for Python 2.7, 3.4, and 3.5.
* PyMongo 4.1 drops support for Python 3.6.0 and 3.6.1, Python 3.6.2+ is now required.
* PyMongo 4.0 drops support for MongoDB 2.6, 3.0, 3.2, and 3.4.
* The default uuid_representation for CodecOptions, JSONOptions,
and MongoClient has been changed from bson.binary.UuidRepresentation.PYTHON_LEGACY
to bson.binary.UuidRepresentation.UNSPECIFIED. Attempting to
encode a uuid.UUID instance to BSON or JSON now produces an
error by default. See Handling UUID Data for details.
* Removed some arguments and functions mostly from:
* pymongo.mongo_client.MongoClient
* pymongo.database.Database
* pymongo.collection.Collection
* pymongo.mongo_client.MongoClient
* pymongo.son_manipulator
* directConnection URI option and keyword argument to MongoClient
defaults to False instead of None
* tz_aware, an argument for JSONOptions, now defaults to False instead of True.
* items() now returns a dict_items object rather than a list.
* The hint option is now required when using min or max queries with find().
* MongoClient` now raises an InvalidURI exception when it encounters
unescaped percent signs in username and password when parsing MongoDB URIs.
* Enhanced connection pooling to create connections more efficiently
and avoid connection storms.
* MongoClient now accepts a URI and keyword argument srvMaxHosts
that limits the number of mongos-like hosts a client will connect to.
* Support for the “kmip” KMS provider for client side field level encryption.
* Many more changes, seet the upstream changelog for details
OBS-URL: https://build.opensuse.org/request/show/989816
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=82
2022-07-18 11:39:16 +00:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2011-03-26 08:06:04 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
2012-03-27 08:41:56 +00:00
|
|
|
|
2018-10-02 13:51:23 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-03-26 08:06:04 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
Accepting request 989816 from home:mcalabkova:branches:devel:languages:python
- Update to 4.1.1
* PyMongo 4.0 drops support for Python 2.7, 3.4, and 3.5.
* PyMongo 4.1 drops support for Python 3.6.0 and 3.6.1, Python 3.6.2+ is now required.
* PyMongo 4.0 drops support for MongoDB 2.6, 3.0, 3.2, and 3.4.
* The default uuid_representation for CodecOptions, JSONOptions,
and MongoClient has been changed from bson.binary.UuidRepresentation.PYTHON_LEGACY
to bson.binary.UuidRepresentation.UNSPECIFIED. Attempting to
encode a uuid.UUID instance to BSON or JSON now produces an
error by default. See Handling UUID Data for details.
* Removed some arguments and functions mostly from:
* pymongo.mongo_client.MongoClient
* pymongo.database.Database
* pymongo.collection.Collection
* pymongo.mongo_client.MongoClient
* pymongo.son_manipulator
* directConnection URI option and keyword argument to MongoClient
defaults to False instead of None
* tz_aware, an argument for JSONOptions, now defaults to False instead of True.
* items() now returns a dict_items object rather than a list.
* The hint option is now required when using min or max queries with find().
* MongoClient` now raises an InvalidURI exception when it encounters
unescaped percent signs in username and password when parsing MongoDB URIs.
* Enhanced connection pooling to create connections more efficiently
and avoid connection storms.
* MongoClient now accepts a URI and keyword argument srvMaxHosts
that limits the number of mongos-like hosts a client will connect to.
* Support for the “kmip” KMS provider for client side field level encryption.
* Many more changes, seet the upstream changelog for details
OBS-URL: https://build.opensuse.org/request/show/989816
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=82
2022-07-18 11:39:16 +00:00
|
|
|
%{?!python_module:%define python_module() python3-%{**}}
|
|
|
|
%define skip_python2 1
|
2012-02-28 09:00:11 +00:00
|
|
|
Name: python-pymongo
|
Accepting request 989816 from home:mcalabkova:branches:devel:languages:python
- Update to 4.1.1
* PyMongo 4.0 drops support for Python 2.7, 3.4, and 3.5.
* PyMongo 4.1 drops support for Python 3.6.0 and 3.6.1, Python 3.6.2+ is now required.
* PyMongo 4.0 drops support for MongoDB 2.6, 3.0, 3.2, and 3.4.
* The default uuid_representation for CodecOptions, JSONOptions,
and MongoClient has been changed from bson.binary.UuidRepresentation.PYTHON_LEGACY
to bson.binary.UuidRepresentation.UNSPECIFIED. Attempting to
encode a uuid.UUID instance to BSON or JSON now produces an
error by default. See Handling UUID Data for details.
* Removed some arguments and functions mostly from:
* pymongo.mongo_client.MongoClient
* pymongo.database.Database
* pymongo.collection.Collection
* pymongo.mongo_client.MongoClient
* pymongo.son_manipulator
* directConnection URI option and keyword argument to MongoClient
defaults to False instead of None
* tz_aware, an argument for JSONOptions, now defaults to False instead of True.
* items() now returns a dict_items object rather than a list.
* The hint option is now required when using min or max queries with find().
* MongoClient` now raises an InvalidURI exception when it encounters
unescaped percent signs in username and password when parsing MongoDB URIs.
* Enhanced connection pooling to create connections more efficiently
and avoid connection storms.
* MongoClient now accepts a URI and keyword argument srvMaxHosts
that limits the number of mongos-like hosts a client will connect to.
* Support for the “kmip” KMS provider for client side field level encryption.
* Many more changes, seet the upstream changelog for details
OBS-URL: https://build.opensuse.org/request/show/989816
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=82
2022-07-18 11:39:16 +00:00
|
|
|
Version: 4.1.1
|
2011-03-26 08:06:04 +00:00
|
|
|
Release: 0
|
2012-02-28 09:00:11 +00:00
|
|
|
Summary: Python driver for MongoDB
|
|
|
|
License: Apache-2.0
|
2011-03-26 08:06:04 +00:00
|
|
|
Group: Development/Languages/Python
|
2021-04-22 19:57:35 +00:00
|
|
|
URL: https://github.com/mongodb/mongo-python-driver
|
2017-05-01 15:14:03 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/pymongo/pymongo-%{version}.tar.gz
|
2019-05-27 09:22:23 +00:00
|
|
|
# PATCH-FIX-SUSE: upstream does not care about 32bit
|
|
|
|
Patch0: mongodb-skip-test.patch
|
2017-05-01 15:14:03 +00:00
|
|
|
BuildRequires: %{python_module devel}
|
|
|
|
BuildRequires: %{python_module setuptools}
|
2017-12-04 08:17:56 +00:00
|
|
|
BuildRequires: fdupes
|
|
|
|
BuildRequires: python-rpm-macros
|
2019-09-10 11:57:15 +00:00
|
|
|
%if 0%{?suse_version} || 0%{?fedora_version} >= 24
|
2012-03-27 08:41:56 +00:00
|
|
|
Suggests: mongodb
|
2018-02-27 22:14:18 +00:00
|
|
|
%endif
|
2022-07-20 16:56:09 +00:00
|
|
|
# Same namespace, different implementation (https://github.com/py-bson/bson)
|
|
|
|
Conflicts: python-bson
|
2017-05-01 15:14:03 +00:00
|
|
|
%python_subpackages
|
2011-03-26 08:06:04 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The PyMongo distribution contains tools for interacting with MongoDB
|
|
|
|
database from Python. The bson package is an implementation of
|
|
|
|
the BSON format for Python. The pymongo package is a native Python
|
|
|
|
driver for MongoDB. The gridfs package is a gridfs
|
|
|
|
implementation on top of pymongo.
|
|
|
|
|
|
|
|
%prep
|
2012-02-28 09:00:11 +00:00
|
|
|
%setup -q -n pymongo-%{version}
|
2019-05-27 09:22:23 +00:00
|
|
|
%autopatch -p1
|
2011-03-26 08:06:04 +00:00
|
|
|
|
|
|
|
%build
|
2017-05-01 15:14:03 +00:00
|
|
|
export CFLAGS="%{optflags}"
|
|
|
|
%python_build
|
2011-03-26 08:06:04 +00:00
|
|
|
|
|
|
|
%install
|
2017-05-01 15:14:03 +00:00
|
|
|
%python_install
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
2011-03-26 08:06:04 +00:00
|
|
|
|
2015-04-08 09:53:42 +00:00
|
|
|
%check
|
2021-05-28 08:12:41 +00:00
|
|
|
%pyunittest discover -v
|
2011-03-26 08:06:04 +00:00
|
|
|
|
2017-05-01 15:14:03 +00:00
|
|
|
%files %{python_files}
|
2018-07-16 17:02:31 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc README.rst
|
2022-07-20 16:56:09 +00:00
|
|
|
%{python_sitearch}/pymongo
|
|
|
|
%{python_sitearch}/pymongo-%{version}*-info
|
|
|
|
%{python_sitearch}/bson
|
|
|
|
%{python_sitearch}/gridfs
|
2011-03-26 08:06:04 +00:00
|
|
|
|
|
|
|
%changelog
|