forked from Lainports/freebsd-ports
programmers should find very intuitive. The data is stored and accessed on disk (it is not an in-memory database); the implementation has been designed to make all operations, and especially selection, as fast as possible with an interpreted language. The database is implemented as a Python iterator, yielding objects whose attributes are the fields defined when the base is created ; therefore, requests can be expressed as list comprehensions or generator expressions, instead of SQL queries. WWW: http://buzhug.sourceforge.net/ PR: ports/132278 Submitted by: Wen Heping <wenheping at gmail.com>
20 lines
362 B
Makefile
20 lines
362 B
Makefile
# New ports collection makefile for: buzhug
|
|
# Date created: 03 March 2009
|
|
# Whom: Wen Heping <wenheping@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= buzhug
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
COMMENT= A pure-Python database engine
|
|
|
|
USE_ZIP= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
.include <bsd.port.mk>
|