diff options
author | nectar <nectar@FreeBSD.org> | 2000-10-04 04:55:20 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2000-10-04 04:55:20 +0800 |
commit | 6517fcf773f8cd904f0709068ec6fb6734020821 (patch) | |
tree | 579a05099faf79b1ea48ce3fe0942390d3220b3f /databases/py-SQLDict | |
parent | 4149bb4428080862138fe48e1be2c394c1433fff (diff) | |
download | freebsd-ports-gnome-6517fcf773f8cd904f0709068ec6fb6734020821.tar.gz freebsd-ports-gnome-6517fcf773f8cd904f0709068ec6fb6734020821.tar.zst freebsd-ports-gnome-6517fcf773f8cd904f0709068ec6fb6734020821.zip |
Python dictionary wrapper around a SQL database
Diffstat (limited to 'databases/py-SQLDict')
-rw-r--r-- | databases/py-SQLDict/Makefile | 28 | ||||
-rw-r--r-- | databases/py-SQLDict/distinfo | 1 | ||||
-rw-r--r-- | databases/py-SQLDict/pkg-comment | 1 | ||||
-rw-r--r-- | databases/py-SQLDict/pkg-descr | 6 | ||||
-rw-r--r-- | databases/py-SQLDict/pkg-plist | 3 |
5 files changed, 39 insertions, 0 deletions
diff --git a/databases/py-SQLDict/Makefile b/databases/py-SQLDict/Makefile new file mode 100644 index 000000000000..54f7734f35ee --- /dev/null +++ b/databases/py-SQLDict/Makefile @@ -0,0 +1,28 @@ +# Ports collection Makefile for: SQLDict +# Date created: 10/03/2000 +# Whom: nectar@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= SQLDict +PORTVERSION= 1.0.0 +CATEGORIES= databases python +MASTER_SITES= http://dustman.net/andy/python/SQLDict/1.0.0/ +PKGNAMEPREFIX= py- + +MAINTAINER= nectar@FreeBSD.org + +USE_PYTHON= yes +NO_WRKSUBDIR= yes + +do-build: + @cd ${WRKSRC} && ${PYTHON_CMD} -c 'import SQLDict' + @cd ${WRKSRC} && ${PYTHON_CMD} -O -c 'import SQLDict' + +do-install: +.for f in SQLDict.py SQLDict.pyc SQLDict.pyo + ${INSTALL_DATA} ${WRKSRC}/${f} ${PYTHON_SITELIBDIR}/${f} +.endfor + +.include <bsd.port.mk> diff --git a/databases/py-SQLDict/distinfo b/databases/py-SQLDict/distinfo new file mode 100644 index 000000000000..791257a8d9d2 --- /dev/null +++ b/databases/py-SQLDict/distinfo @@ -0,0 +1 @@ +MD5 (SQLDict-1.0.0.tar.gz) = b5b0c9683c9f1e15b904563d22fc7cdc diff --git a/databases/py-SQLDict/pkg-comment b/databases/py-SQLDict/pkg-comment new file mode 100644 index 000000000000..97a1d101b8f4 --- /dev/null +++ b/databases/py-SQLDict/pkg-comment @@ -0,0 +1 @@ +Python dictionary wrapper around a SQL database diff --git a/databases/py-SQLDict/pkg-descr b/databases/py-SQLDict/pkg-descr new file mode 100644 index 000000000000..3c805edd2f02 --- /dev/null +++ b/databases/py-SQLDict/pkg-descr @@ -0,0 +1,6 @@ +From the module documentation: + + SQLDict: A helper class for the Python DB API. + + This creates a database interface which works pretty much like a + Python dictionary (or shelve). diff --git a/databases/py-SQLDict/pkg-plist b/databases/py-SQLDict/pkg-plist new file mode 100644 index 000000000000..69294e6c5409 --- /dev/null +++ b/databases/py-SQLDict/pkg-plist @@ -0,0 +1,3 @@ +lib/%%PYTHON_VERSION%%/site-packages/SQLDict.py +lib/%%PYTHON_VERSION%%/site-packages/SQLDict.pyc +lib/%%PYTHON_VERSION%%/site-packages/SQLDict.pyo |