MongoEngine is an ORM-like layer on top of PyMongo. It allows you to define

schemas for documents and query collections using syntax inspired by the
Django ORM.

WWW:	http://hmarr.com/mongoengine/

PR:		ports/147465
Submitted by:	Mirko Zinn <mail at derzinn.de>
This commit is contained in:
Martin Wilke 2010-06-06 08:37:10 +00:00
parent d978e024a1
commit 990765b615
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=255895
4 changed files with 34 additions and 0 deletions

View File

@ -2689,6 +2689,7 @@
SUBDIR += py-lxml
SUBDIR += py-magic
SUBDIR += py-mez_xml
SUBDIR += py-mongoengine
SUBDIR += py-mongokit
SUBDIR += py-mox
SUBDIR += py-mwlib

View File

@ -0,0 +1,25 @@
# New ports collection makefile for: py-mongoengine
# Date created: 2010-06-04
# Whom: Mirko Zinn <mail@derzinn.de>
#
# $FreeBSD$
#
PORTNAME= mongoengine
PORTVERSION= 0.3
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mail@derzinn.de
COMMENT= A Python Object-Document-Mapper for working with MongoDB
RUN_DEPENDS= pymongo>=1.6:${PORTSDIR}/databases/pymongo
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
USE_PYTHON= yes
USE_PYDISTUTILS= easy_install
PYDISTUTILS_NOEGGINFO= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (mongoengine-0.3.tar.gz) = c31b42b2170347ec153098d538216ee1
SHA256 (mongoengine-0.3.tar.gz) = 0a4b4c1fabeb996302ef3fd971783250e9a14fd85f556cdc80c727c391ef2bc4
SIZE (mongoengine-0.3.tar.gz) = 59146

View File

@ -0,0 +1,5 @@
MongoEngine is an ORM-like layer on top of PyMongo. It allows you to define
schemas for documents and query collections using syntax inspired by the
Django ORM.
WWW: http://hmarr.com/mongoengine/