[Python-modules-commits] r20172 - in packages/python-mongokit/trunk (10 files)

spamaps-guest at users.alioth.debian.org spamaps-guest at users.alioth.debian.org
Sat Jan 28 03:00:01 UTC 2012


    Date: Saturday, January 28, 2012 @ 02:59:59
  Author: spamaps-guest
Revision: 20172

[svn-inject] Applying Debian modifications (0.7.2-1) to trunk

Added:
  packages/python-mongokit/trunk/debian/
  packages/python-mongokit/trunk/debian/changelog
  packages/python-mongokit/trunk/debian/compat
  packages/python-mongokit/trunk/debian/control
  packages/python-mongokit/trunk/debian/copyright
  packages/python-mongokit/trunk/debian/docs
  packages/python-mongokit/trunk/debian/rules
  packages/python-mongokit/trunk/debian/source/
  packages/python-mongokit/trunk/debian/source/format
  packages/python-mongokit/trunk/debian/watch


Property changes on: packages/python-mongokit/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-mongokit/trunk/debian/changelog
===================================================================
--- packages/python-mongokit/trunk/debian/changelog	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/changelog	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1,5 @@
+python-mongokit (0.7.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Clint Byrum <clint at ubuntu.com>  Wed, 25 Jan 2012 13:53:57 -0800

Added: packages/python-mongokit/trunk/debian/compat
===================================================================
--- packages/python-mongokit/trunk/debian/compat	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/compat	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1 @@
+8

Added: packages/python-mongokit/trunk/debian/control
===================================================================
--- packages/python-mongokit/trunk/debian/control	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/control	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1,40 @@
+Source: python-mongokit
+Section: python
+Priority: extra
+Maintainer: Clint Byrum <clint at ubuntu.com>
+Build-Depends: debhelper (>= 8.0.0), python (>= 2.6.6-3~), python-setuptools (>= 0.6c7)
+Standards-Version: 3.9.2
+Homepage: http://namlook.github.com/mongokit/
+
+Package: python-mongokit
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Description: structured schema and validation layer on top of the pymongo driver
+ MongoDB is a great schema-less document oriented database. It have a
+ lot of driver for many langages (python, ruby, perl, java, php...).
+ .
+ MongoKit is a python module that brings structured schema and validation
+ layer on top of the great pymongo driver. It has be written to be as
+ simple and light as possible with the KISS and DRY principles in mind.
+ .
+ Features
+ .
+ * schema validation (wich use simple python type for the declaration)
+ * schema less feature
+ * doted notation
+ * nested and complex schema declaration
+ * untyped field support
+ * required fields validation
+ * default values
+ * custom validators
+ * cross database document reference
+ * random query support (which returns a random document from the database)
+ * inheritance and polymorphisme support
+ * versionized document support (in beta stage)
+ * partial auth support (it brings a simple User model)
+ * operator for validation (currently : OR, NOT and IS)
+ * simple web framework integration
+ * import/export to json
+ * i18n support
+ * GridFS support
+ * document migration support

Added: packages/python-mongokit/trunk/debian/copyright
===================================================================
--- packages/python-mongokit/trunk/debian/copyright	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/copyright	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1,74 @@
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174
+Upstream-Name: mongokit
+Source: http://pypi.python.org/pypi/mongokit
+
+Files: ./mongokit/__init__.py
+ ./mongokit/auth.py
+ ./mongokit/collection.py
+ ./mongokit/connection.py
+ ./mongokit/cursor.py
+ ./mongokit/database.py
+ ./mongokit/document.py
+ ./mongokit/grid.py
+ ./mongokit/helpers.py
+ ./mongokit/migration.py
+ ./mongokit/mongo_exceptions.py
+ ./mongokit/operators.py
+ ./mongokit/schema_document.py
+ ./mongokit/versioned_document.py
+ ./setup.py
+ ./tests/*
+Copyright: 2009-2011 Nicolas Clairon
+License: BSD (3 clause)
+ All rights reserved.
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+     * Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+     * Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+     * Neither the name of the University of California, Berkeley nor the
+       names of its contributors may be used to endorse or promote products
+       derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files: ./mongokit/master_slave_connection.py
+Copyright: Andreas Jung, info at zopyx.com
+License: BSD
+ (same license as Mongokit)
+
+Files: debian/*
+Copyright: 2012 Canonical Ltd., All Rights Reserved.
+License: BSD (2 clause)
+ All rights reserved.
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+     * Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+     * Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: packages/python-mongokit/trunk/debian/docs
===================================================================
--- packages/python-mongokit/trunk/debian/docs	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/docs	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1,3 @@
+README
+PKG-INFO
+AUTHORS

Added: packages/python-mongokit/trunk/debian/rules
===================================================================
--- packages/python-mongokit/trunk/debian/rules	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/rules	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2


Property changes on: packages/python-mongokit/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-mongokit/trunk/debian/source/format
===================================================================
--- packages/python-mongokit/trunk/debian/source/format	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/source/format	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-mongokit/trunk/debian/watch
===================================================================
--- packages/python-mongokit/trunk/debian/watch	                        (rev 0)
+++ packages/python-mongokit/trunk/debian/watch	2012-01-28 02:59:59 UTC (rev 20172)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/m/mongokit/ mongokit-(.*).tar.gz




More information about the Python-modules-commits mailing list