diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-12-04 09:40:13 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-12-04 09:40:13 +0000 |
commit | 3f77e0d6b2ad5efd4ab980aafdcdf689152ab464 (patch) | |
tree | d7ace68315ce90c0cb25f99187a0e87677f985ef /databases | |
parent | add patch to initializies bookmarks. (diff) |
Add py-cdb-0.22.a, a Python interface to D. J. Bernstein's CDB (constant
database) library
PR: 32489
Submitted by: Jason R. Mastaler <jason@mastaler.com>
Notes
Notes:
svn path=/head/; revision=51019
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/py-cdb/Makefile | 26 | ||||
-rw-r--r-- | databases/py-cdb/distinfo | 1 | ||||
-rw-r--r-- | databases/py-cdb/pkg-comment | 1 | ||||
-rw-r--r-- | databases/py-cdb/pkg-descr | 10 | ||||
-rw-r--r-- | databases/py-cdb/pkg-plist | 1 |
6 files changed, 40 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 93b85ceb05f9..8bff3652fc76 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -89,6 +89,7 @@ SUBDIR += py-PyGreSQL SUBDIR += py-SQLDict SUBDIR += py-bsddb3 + SUBDIR += py-cdb SUBDIR += py-gdbm SUBDIR += py-pyPgSQL SUBDIR += py-sqlrelay diff --git a/databases/py-cdb/Makefile b/databases/py-cdb/Makefile new file mode 100644 index 000000000000..e477a64f280a --- /dev/null +++ b/databases/py-cdb/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: py-cdb +# Date created: 03 December 2001 +# Whom: Jason R. Mastaler <jason@mastaler.com> +# +# $FreeBSD$ +# + +PORTNAME= cdb +PORTVERSION= 0.22.a +CATEGORIES= databases python +MASTER_SITES= http://pilcrow.madison.wi.us/sw/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION:S/.a/a/} + +MAINTAINER= jason@mastaler.com + +BUILD_DEPENDS= ${PYDISTUTILS} +USE_PYTHON= yes + +do-build: + (cd ${WRKSRC}; ${PYTHON_CMD} setup.py build) + +do-install: + (cd ${WRKSRC}; ${PYTHON_CMD} setup.py install) + +.include <bsd.port.mk> diff --git a/databases/py-cdb/distinfo b/databases/py-cdb/distinfo new file mode 100644 index 000000000000..e617e24de2dd --- /dev/null +++ b/databases/py-cdb/distinfo @@ -0,0 +1 @@ +MD5 (python-cdb-0.22a.tar.gz) = 347c2d10079644756e80537b49fad056 diff --git a/databases/py-cdb/pkg-comment b/databases/py-cdb/pkg-comment new file mode 100644 index 000000000000..2e1a1120d2c7 --- /dev/null +++ b/databases/py-cdb/pkg-comment @@ -0,0 +1 @@ +Python interface to D. J. Bernstein's CDB (constant database) library diff --git a/databases/py-cdb/pkg-descr b/databases/py-cdb/pkg-descr new file mode 100644 index 000000000000..8667df07c26a --- /dev/null +++ b/databases/py-cdb/pkg-descr @@ -0,0 +1,10 @@ +python-cdb is D. J. Bernstein's constant database library adapted as a +python extension module. + +cdb files are mappings of keys to values, designed for wickedly fast +lookups and atomic updates. This module mimics the normal cdb +utilities (cdb(get|dump|make)) via convenient high-level Python +objects. + +Author: MJ Pomraning <mjp@pilcrow.madison.wi.us> +WWW: http://pilcrow.madison.wi.us/ diff --git a/databases/py-cdb/pkg-plist b/databases/py-cdb/pkg-plist new file mode 100644 index 000000000000..e09e4fa991d0 --- /dev/null +++ b/databases/py-cdb/pkg-plist @@ -0,0 +1 @@ +lib/%%PYTHON_VERSION%%/site-packages/cdbmodule.so |