Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fiorix committed Sep 2, 2010
2 parents 6c2cc45 + 5d66670 commit 697ce40
Show file tree
Hide file tree
Showing 11 changed files with 93 additions and 0 deletions.
11 changes: 11 additions & 0 deletions debian/changelog
@@ -0,0 +1,11 @@
python-txmongo (0.3-1) stable; urgency=low

* Backporting to Stable

-- Andre Ferraz <andre.ferraz@locaweb.com.br> Fri, 13 Aug 2010 17:11:12 +0000

python-txmongo (0.3) unstable; urgency=low

* Initial release.

-- Andre Ferraz <andre.ferraz@locaweb.com.br> Fri, 13 Aug 2010 11:48:15 +0000
1 change: 1 addition & 0 deletions debian/compat
@@ -0,0 +1 @@
5
18 changes: 18 additions & 0 deletions debian/control
@@ -0,0 +1,18 @@
Source: python-txmongo
Section: python
Priority: optional
XS-Python-Version: 2.5
Maintainer: Andre Ferraz
Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 0.4.49), python-dev, python-setuptools
Standards-Version: 3.8.4

Package: python-txmongo
Architecture: i386 amd64
Homepage: http://github.com/fiorix/mongo-async-python-driver
Depends: ${misc:Depends}, ${python:Depends}
Description: An asynchronous Python driver for the Mongo database, based on Twisted.
An asynchronous Python driver for the Mongo database, based on Twisted.
The txmongo package is an alternative to the original pymongo shipped with the Mongo database.
Because the original pymongo package has it's own connection pool and blocking low-level socket operations,
it is hard to fully implement network servers using the Twisted framework. Instead of deferring database
operations to threads, now it's possible to do it asynchronously, as easy as using the original API.
34 changes: 34 additions & 0 deletions debian/copyright
@@ -0,0 +1,34 @@
This package was debianized by Andre Ferraz
on Fri, 13 Aug 2010 14:17 -0300.

It was downloaded from http://github.com/fiorix/mongo-async-python-driver

Upstream Author:

Alex Fiori

Files: *
Copyright:
2010, Alex Fiori
License: GPL

Files: debian/*
Copyright:
2010, Andre Ferraz
License: GPL

License: GPL
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License

This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this package; if not, see .

On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-2'.
1 change: 1 addition & 0 deletions debian/files
@@ -0,0 +1 @@
python-txmongo_0.3-1_amd64.deb python optional
1 change: 1 addition & 0 deletions debian/pycompat
@@ -0,0 +1 @@
2
5 changes: 5 additions & 0 deletions debian/python-txmongo.postinst.debhelper
@@ -0,0 +1,5 @@
# Automatically added by dh_pysupport
if which update-python-modules >/dev/null 2>&1; then
update-python-modules python-txmongo.public
fi
# End automatically added section
5 changes: 5 additions & 0 deletions debian/python-txmongo.prerm.debhelper
@@ -0,0 +1,5 @@
# Automatically added by dh_pysupport
if which update-python-modules >/dev/null 2>&1; then
update-python-modules -c python-txmongo.public
fi
# End automatically added section
5 changes: 5 additions & 0 deletions debian/python-txmongo.substvars
@@ -0,0 +1,5 @@
python:Versions=2.5
python:Provides=python2.5-txmongo
python:Depends=python (<< 2.6), python (>= 2.5), python-support (>= 0.90.0)
shlibs:Depends=libc6 (>= 2.7-1)
misc:Depends=
1 change: 1 addition & 0 deletions debian/pyversions
@@ -0,0 +1 @@
2.4+
11 changes: 11 additions & 0 deletions debian/rules
@@ -0,0 +1,11 @@
#!/usr/bin/make -f
# -*- makefile -*-

DEB_PYTHON_SYSTEM := pysupport

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk

clean::
rm -rf build build-stamp configure-stamp build/ MANIFEST
dh_clean

0 comments on commit 697ce40

Please sign in to comment.