14
0
Commit Graph

30 Commits

Author SHA256 Message Date
Stephan Kulow
c334e7c002 Accepting request 209729 from devel:languages:python
Please forward to factory.
- Fix filelist on ppc64le (forwarded request 209701 from matz2)

OBS-URL: https://build.opensuse.org/request/show/209729
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=14
2013-12-09 16:01:39 +00:00
Denisart Benjamin
7eb69500eb Accepting request 209701 from openSUSE:Factory:PowerLE
Please forward to factory.
- Fix filelist on ppc64le

OBS-URL: https://build.opensuse.org/request/show/209701
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=30
2013-12-07 13:16:25 +00:00
Stephan Kulow
280c205722 Accepting request 208700 from devel:languages:python
- Update to version 2.6.3
  + fix : AttributeError raised when use_greenlets=True is specified
    without gevent (https://jira.mongodb.org/browse/PYTHON-561)
  + fix : Semaphore leak during connection failure. 
    (https://jira.mongodb.org/browse/PYTHON-580)
  + fix : MongoReplicaSetClient ignores waitQueueMultiple and 
    waitQueueTimeoutMS 
    (https://jira.mongodb.org/browse/PYTHON-579) (forwarded request 208699 from posophe)

OBS-URL: https://build.opensuse.org/request/show/208700
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=13
2013-11-28 15:52:28 +00:00
Denisart Benjamin
74c35d9e19 Accepting request 208699 from home:posophe:branches:devel:languages:python
- Update to version 2.6.3
  + fix : AttributeError raised when use_greenlets=True is specified
    without gevent (https://jira.mongodb.org/browse/PYTHON-561)
  + fix : Semaphore leak during connection failure. 
    (https://jira.mongodb.org/browse/PYTHON-580)
  + fix : MongoReplicaSetClient ignores waitQueueMultiple and 
    waitQueueTimeoutMS 
    (https://jira.mongodb.org/browse/PYTHON-579)

OBS-URL: https://build.opensuse.org/request/show/208699
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=28
2013-11-27 15:07:17 +00:00
Stephan Kulow
fcae695e89 Accepting request 199188 from devel:languages:python
- Fix file list for aarch64 (forwarded request 199087 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/199188
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=11
2013-09-16 14:35:16 +00:00
Sascha Peilicke
5960ac8d99 Accepting request 199087 from home:Andreas_Schwab:Factory
- Fix file list for aarch64

OBS-URL: https://build.opensuse.org/request/show/199087
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=26
2013-09-16 08:06:17 +00:00
Tomáš Chvátal
fab9f0383e Accepting request 198877 from devel:languages:python
- update to 2.6.2:
  Version 2.6.2 fixes a :exc:`TypeError` problem when max_pool_size=None
  is used in Python 3.
  Version 2.6.1 fixes a reference leak in
  the :meth:`~pymongo.collection.Collection.insert` method. (forwarded request 198595 from dirkmueller)

OBS-URL: https://build.opensuse.org/request/show/198877
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=10
2013-09-13 12:46:19 +00:00
Sascha Peilicke
849f3f5180 Accepting request 198595 from home:dirkmueller:branches:devel:languages:python
- update to 2.6.2:
  Version 2.6.2 fixes a :exc:`TypeError` problem when max_pool_size=None
  is used in Python 3.
  Version 2.6.1 fixes a reference leak in
  the :meth:`~pymongo.collection.Collection.insert` method.

OBS-URL: https://build.opensuse.org/request/show/198595
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=24
2013-09-13 09:46:26 +00:00
Stephan Kulow
a3e1d4e6ef Accepting request 197209 from devel:languages:python
- update to 2.6:
  - The ``max_pool_size`` option for :class:`~pymongo.mongo_client.MongoClient`
    and :class:`~pymongo.mongo_replica_set_client.MongoReplicaSetClient` now
    actually caps the number of sockets the pool will open concurrently.
    Once the pool has reached :attr:`~pymongo.mongo_client.MongoClient.max_pool_size`
    operations will block waiting for a socket to become available. If
    ``waitQueueTimeoutMS`` is set, an operation that blocks waiting for a socket
    will raise :exc:`~pymongo.errors.ConnectionFailure` after the timeout. By
    default ``waitQueueTimeoutMS`` is not set.
    See :ref:`connection-pooling` for more information.
  - The :meth:`~pymongo.collection.Collection.insert` method automatically splits
    large batches of documents into multiple insert messages based on
    :attr:`~pymongo.mongo_client.MongoClient.max_message_size`
  - Support for the exhaust cursor flag.
    See :meth:`~pymongo.collection.Collection.find` for details and caveats.
  - Support for the PLAIN and MONGODB-X509 authentication mechanisms.
    See :doc:`the authentication docs </examples/authentication>` for more
    information.
  - Support aggregation output as a :class:`~pymongo.cursor.Cursor`. See
    :meth:`~pymongo.collection.Collection.aggregate` for details. (forwarded request 197134 from dirkmueller)

OBS-URL: https://build.opensuse.org/request/show/197209
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=9
2013-09-03 20:04:01 +00:00
Sascha Peilicke
1b313641cb Accepting request 197134 from home:dirkmueller:branches:devel:languages:python
- update to 2.6:
  - The ``max_pool_size`` option for :class:`~pymongo.mongo_client.MongoClient`
    and :class:`~pymongo.mongo_replica_set_client.MongoReplicaSetClient` now
    actually caps the number of sockets the pool will open concurrently.
    Once the pool has reached :attr:`~pymongo.mongo_client.MongoClient.max_pool_size`
    operations will block waiting for a socket to become available. If
    ``waitQueueTimeoutMS`` is set, an operation that blocks waiting for a socket
    will raise :exc:`~pymongo.errors.ConnectionFailure` after the timeout. By
    default ``waitQueueTimeoutMS`` is not set.
    See :ref:`connection-pooling` for more information.
  - The :meth:`~pymongo.collection.Collection.insert` method automatically splits
    large batches of documents into multiple insert messages based on
    :attr:`~pymongo.mongo_client.MongoClient.max_message_size`
  - Support for the exhaust cursor flag.
    See :meth:`~pymongo.collection.Collection.find` for details and caveats.
  - Support for the PLAIN and MONGODB-X509 authentication mechanisms.
    See :doc:`the authentication docs </examples/authentication>` for more
    information.
  - Support aggregation output as a :class:`~pymongo.cursor.Cursor`. See
    :meth:`~pymongo.collection.Collection.aggregate` for details.

OBS-URL: https://build.opensuse.org/request/show/197134
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=22
2013-09-03 07:27:19 +00:00
Tomáš Chvátal
6799870ee2 Accepting request 186541 from devel:languages:python
- on bigendian platforms we don't build native exentions, so
  package to python_sitelib instead of python_sitearch on those
  platforms (forwarded request 186415 from k0da)

OBS-URL: https://build.opensuse.org/request/show/186541
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=8
2013-08-13 11:23:27 +00:00
Sascha Peilicke
eb24c7144d Accepting request 186415 from home:k0da:ppc
- on bigendian platforms we don't build native exentions, so
  package to python_sitelib instead of python_sitearch on those
  platforms

OBS-URL: https://build.opensuse.org/request/show/186415
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=19
2013-08-08 14:51:09 +00:00
Sascha Peilicke
3a1e31b987 - Drop ExclusiveArch, mongodb is only a Suggets which is plain documentation.
Nobody says that a PPC machine with the Python bindings can't talk to an
  x86_64 machine hosting mongodb.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=18
2013-08-08 14:35:35 +00:00
Stephan Kulow
0c20ce468e Accepting request 179962 from devel:languages:python
housekeeping sr, necessary due to split between d:l:p and d:l:p3 and (manual) _link removal in Factory.

OBS-URL: https://build.opensuse.org/request/show/179962
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=7
2013-06-19 14:47:22 +00:00
Sascha Peilicke
ec4f29919d Python3 moved to devel:languages:python3
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=16
2013-06-17 12:53:09 +00:00
Stephan Kulow
e3c4842dd5 Accepting request 177707 from devel:languages:python
update to version 2.5.2 (forwarded request 177317 from mlin7442)

OBS-URL: https://build.opensuse.org/request/show/177707
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=6
2013-06-05 17:33:20 +00:00
Sascha Peilicke
9c55de35a5 Accepting request 177317 from home:mlin7442:branches:devel:languages:python
update to version 2.5.2

OBS-URL: https://build.opensuse.org/request/show/177317
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=14
2013-06-05 09:04:40 +00:00
Stephan Kulow
b1b07fe6a2 Accepting request 162594 from devel:languages:python
- Set Exclusive arch for LittleEndian machines. mongodb is not 
  BigEndian compatible. 

- Set Exclusive arch for LittleEndian machines. mongodb is not
  BigEndian compatible. (forwarded request 162546 from k0da)

OBS-URL: https://build.opensuse.org/request/show/162594
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=5
2013-04-06 07:17:04 +00:00
Todd R
c7f2b4d335 Accepting request 162546 from home:k0da:ppc
- Set Exclusive arch for LittleEndian machines. mongodb is not 
  BigEndian compatible. 

- Set Exclusive arch for LittleEndian machines. mongodb is not
  BigEndian compatible.

OBS-URL: https://build.opensuse.org/request/show/162546
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=12
2013-04-04 10:43:58 +00:00
Stephan Kulow
2f1955684f Accepting request 161458 from devel:languages:python
update to 2.5 (forwarded request 161305 from mlin7442)

OBS-URL: https://build.opensuse.org/request/show/161458
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=4
2013-03-30 14:00:34 +00:00
Sascha Peilicke
660f0c9703 Accepting request 161305 from home:mlin7442:branches:devel:languages:python
update to 2.5

OBS-URL: https://build.opensuse.org/request/show/161305
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=10
2013-03-27 15:33:43 +00:00
Stephan Kulow
32b02640cb Accepting request 145170 from devel:languages:python
update to version 2.4.1 (forwarded request 145161 from mlin7442)

OBS-URL: https://build.opensuse.org/request/show/145170
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=2
2012-12-14 09:43:54 +00:00
Sascha Peilicke
9ec854592c Accepting request 145161 from home:mlin7442:branches:devel:languages:python
update to version 2.4.1

OBS-URL: https://build.opensuse.org/request/show/145161
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=8
2012-12-12 09:14:26 +00:00
Stephan Kulow
372ffeddca Accepting request 143056 from devel:languages:python
Dependency of OpenStack Folsom

OBS-URL: https://build.opensuse.org/request/show/143056
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymongo?expand=0&rev=1
2012-11-28 13:34:20 +00:00
Sascha Peilicke
517bacf6c7 Accepting request 136092 from home:MargueriteSu:branches:devel:languages:python
update version 2.3

OBS-URL: https://build.opensuse.org/request/show/136092
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=6
2012-10-04 06:52:59 +00:00
Sascha Peilicke
f9a1830ec0 - Change requires on mongodb to suggests, a weak dependency is better
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=5
2012-03-27 08:41:56 +00:00
Sascha Peilicke
0a5a5b065a - Update to version 2.1.1:
* See https://jira.mongodb.org/browse/PYTHON/fixforversion/11081
    for details
- Require mongodb

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=4
2012-03-10 17:38:13 +00:00
Sascha Peilicke
7239d532a6 Ups
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=3
2012-02-28 09:04:16 +00:00
Sascha Peilicke
33717eb87a - Update to version 2.1.1
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=2
2012-02-28 09:00:11 +00:00
Stephan Kulow
6d7d0942e3 Accepting request 65264 from home:aledr
looks good

OBS-URL: https://build.opensuse.org/request/show/65264
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=1
2011-03-26 08:06:04 +00:00