Update py-mongo to version 2.6.3.
Major package changes: - added support for Python 3.x (N.B.: 3.2 or greater is required) - pypi switched over to HTTPS - fetch using curl - list the package in "databases" category as well - homepage was moved - update - cleanup comment a little bit - the update fixes CVE-2013-2132 For changelist since pymongo 2.4.2 please visit http://api.mongodb.org/python/current/changelog.html
This commit is contained in:
parent
2cfc577b81
commit
138c801b79
4 changed files with 22 additions and 13 deletions
|
@ -2,5 +2,5 @@ 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.
|
||||
The pymongo package is a native Python driver for MongoDB.
|
||||
The gridfs package is a gridfs implementation on top of pymongo.
|
||||
|
|
|
@ -1,14 +1,17 @@
|
|||
# $NetBSD: Makefile,v 1.4 2013/03/07 03:23:43 phonohawk Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2013/10/20 20:38:58 bubuchka Exp $
|
||||
|
||||
DISTNAME= pymongo-2.4.2
|
||||
PKGNAME= ${PYPKGPREFIX}-mongo-2.4.2
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= http://pypi.python.org/packages/source/p/pymongo/
|
||||
DISTNAME= pymongo-2.6.3
|
||||
PKGNAME= ${PYPKGPREFIX}-mongo-2.6.3
|
||||
CATEGORIES= databases devel python
|
||||
MASTER_SITES= https://pypi.python.org/packages/source/p/pymongo/
|
||||
FETCH_USING= curl
|
||||
|
||||
MAINTAINER= mishka@NetBSD.org
|
||||
HOMEPAGE= http://www.mongodb.org/display/DOCS/Python+Language+Center
|
||||
HOMEPAGE= http://docs.mongodb.org/ecosystem/drivers/python/
|
||||
COMMENT= Python driver for MongoDB
|
||||
LICENSE= apache-2.0
|
||||
|
||||
PYTHON_VERSIONS_INCLUDE_3X= yes
|
||||
|
||||
.include "../../lang/python/egg.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2013/03/07 03:23:43 phonohawk Exp $
|
||||
@comment $NetBSD: PLIST,v 1.4 2013/10/20 20:38:58 bubuchka Exp $
|
||||
${PYSITELIB}/bson/__init__.py
|
||||
${PYSITELIB}/bson/__init__.pyc
|
||||
${PYSITELIB}/bson/__init__.pyo
|
||||
|
@ -56,6 +56,9 @@ ${PYSITELIB}/pymongo/__init__.py
|
|||
${PYSITELIB}/pymongo/__init__.pyc
|
||||
${PYSITELIB}/pymongo/__init__.pyo
|
||||
${PYSITELIB}/pymongo/_cmessage.so
|
||||
${PYSITELIB}/pymongo/auth.py
|
||||
${PYSITELIB}/pymongo/auth.pyc
|
||||
${PYSITELIB}/pymongo/auth.pyo
|
||||
${PYSITELIB}/pymongo/collection.py
|
||||
${PYSITELIB}/pymongo/collection.pyc
|
||||
${PYSITELIB}/pymongo/collection.pyo
|
||||
|
@ -104,6 +107,9 @@ ${PYSITELIB}/pymongo/replica_set_connection.pyo
|
|||
${PYSITELIB}/pymongo/son_manipulator.py
|
||||
${PYSITELIB}/pymongo/son_manipulator.pyc
|
||||
${PYSITELIB}/pymongo/son_manipulator.pyo
|
||||
${PYSITELIB}/pymongo/ssl_match_hostname.py
|
||||
${PYSITELIB}/pymongo/ssl_match_hostname.pyc
|
||||
${PYSITELIB}/pymongo/ssl_match_hostname.pyo
|
||||
${PYSITELIB}/pymongo/thread_util.py
|
||||
${PYSITELIB}/pymongo/thread_util.pyc
|
||||
${PYSITELIB}/pymongo/thread_util.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.3 2013/03/07 03:23:43 phonohawk Exp $
|
||||
$NetBSD: distinfo,v 1.4 2013/10/20 20:38:58 bubuchka Exp $
|
||||
|
||||
SHA1 (pymongo-2.4.2.tar.gz) = eacc47f8d96a597dc0d5bcbba7367825305d89ba
|
||||
RMD160 (pymongo-2.4.2.tar.gz) = 27c8c164290882cb38304172f9607eb3c0857cf9
|
||||
Size (pymongo-2.4.2.tar.gz) = 283269 bytes
|
||||
SHA1 (pymongo-2.6.3.tar.gz) = b838d6bc6d9cf05d7a6cd45d266e917dc3267bc5
|
||||
RMD160 (pymongo-2.6.3.tar.gz) = 4e0d72f01991bc4213f055f8811e694cb48cef15
|
||||
Size (pymongo-2.6.3.tar.gz) = 324241 bytes
|
||||
|
|
Loading…
Reference in a new issue