mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
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>
This commit is contained in:
parent
1f31d92c18
commit
3f77e0d6b2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=51019
@ -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
|
||||
|
26
databases/py-cdb/Makefile
Normal file
26
databases/py-cdb/Makefile
Normal file
@ -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>
|
1
databases/py-cdb/distinfo
Normal file
1
databases/py-cdb/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (python-cdb-0.22a.tar.gz) = 347c2d10079644756e80537b49fad056
|
1
databases/py-cdb/pkg-comment
Normal file
1
databases/py-cdb/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Python interface to D. J. Bernstein's CDB (constant database) library
|
10
databases/py-cdb/pkg-descr
Normal file
10
databases/py-cdb/pkg-descr
Normal file
@ -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/
|
1
databases/py-cdb/pkg-plist
Normal file
1
databases/py-cdb/pkg-plist
Normal file
@ -0,0 +1 @@
|
||||
lib/%%PYTHON_VERSION%%/site-packages/cdbmodule.so
|
Loading…
Reference in New Issue
Block a user