diff options
author | edwin <edwin@FreeBSD.org> | 2005-12-21 06:43:44 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-12-21 06:43:44 +0800 |
commit | f3548b3aca1b024e92368b21db97270deb3668a4 (patch) | |
tree | 994dbb48da0ffc7c83617b9f7a6f0f56e4c267fb | |
parent | 37f1d6e82c7c4805dedef325e2b1c963c81b2d6a (diff) | |
download | freebsd-ports-gnome-f3548b3aca1b024e92368b21db97270deb3668a4.tar.gz freebsd-ports-gnome-f3548b3aca1b024e92368b21db97270deb3668a4.tar.zst freebsd-ports-gnome-f3548b3aca1b024e92368b21db97270deb3668a4.zip |
New port: databases/pydbx Simple SQL database abstraction layer for Python
dbx is a simple SQL database abstraction layer for Python.
The goal of dbx is to make using a SQL database as simple
as possible while providing a consistent API across different
databases.
Author: David Phillips <david@acz.org>
WWW: http://david.acz.org/pydbx/
PR: ports/90623
Submitted by: David Phillips <david@acz.org>
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/pydbx/Makefile | 20 | ||||
-rw-r--r-- | databases/pydbx/distinfo | 2 | ||||
-rw-r--r-- | databases/pydbx/pkg-descr | 6 | ||||
-rw-r--r-- | databases/pydbx/pkg-plist | 10 |
5 files changed, 39 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index b4e58831df78..ff7e752e5bde 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -346,6 +346,7 @@ SUBDIR += py-sybase SUBDIR += py-tada SUBDIR += pydbdesigner + SUBDIR += pydbx SUBDIR += qdbm SUBDIR += qt-ibase-plugin SUBDIR += qt-mysql-plugin diff --git a/databases/pydbx/Makefile b/databases/pydbx/Makefile new file mode 100644 index 000000000000..887b781c1cff --- /dev/null +++ b/databases/pydbx/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: py-dbx +# Date created: 2005-12-18 +# Whom: David Phillips <david@acz.org> +# +# $FreeBSD$ +# + +PORTNAME= pydbx +PORTVERSION= 0.13 +CATEGORIES= databases python +MASTER_SITES= http://david.acz.org/pydbx/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= david@acz.org +COMMENT= Simple SQL database abstraction layer for Python + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +.include <bsd.port.mk> diff --git a/databases/pydbx/distinfo b/databases/pydbx/distinfo new file mode 100644 index 000000000000..225ad99f76ae --- /dev/null +++ b/databases/pydbx/distinfo @@ -0,0 +1,2 @@ +MD5 (pydbx-0.13.tar.gz) = c5804b34d987538e7cf795dac1a34028 +SIZE (pydbx-0.13.tar.gz) = 3574 diff --git a/databases/pydbx/pkg-descr b/databases/pydbx/pkg-descr new file mode 100644 index 000000000000..b3a75887bac6 --- /dev/null +++ b/databases/pydbx/pkg-descr @@ -0,0 +1,6 @@ +dbx is a simple SQL database abstraction layer for Python. The goal +of dbx is to make using a SQL database as simple as possible while +providing a consistent API across different databases. + +Author: David Phillips <david@acz.org> +WWW: http://david.acz.org/pydbx/ diff --git a/databases/pydbx/pkg-plist b/databases/pydbx/pkg-plist new file mode 100644 index 000000000000..484a3813a437 --- /dev/null +++ b/databases/pydbx/pkg-plist @@ -0,0 +1,10 @@ +%%PYTHON_SITELIBDIR%%/dbx/__init__.py +%%PYTHON_SITELIBDIR%%/dbx/__init__.pyc +%%PYTHON_SITELIBDIR%%/dbx/__init__.pyo +%%PYTHON_SITELIBDIR%%/dbx/mysql.py +%%PYTHON_SITELIBDIR%%/dbx/mysql.pyc +%%PYTHON_SITELIBDIR%%/dbx/mysql.pyo +%%PYTHON_SITELIBDIR%%/dbx/sqlite.py +%%PYTHON_SITELIBDIR%%/dbx/sqlite.pyc +%%PYTHON_SITELIBDIR%%/dbx/sqlite.pyo +@dirrm %%PYTHON_SITELIBDIR%%/dbx |