From owner-cvs-ports@FreeBSD.ORG Thu Mar 12 19:21:04 2009 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AFC66106566B; Thu, 12 Mar 2009 19:21:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9DDCE8FC16; Thu, 12 Mar 2009 19:21:04 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n2CJL4NA042106; Thu, 12 Mar 2009 19:21:04 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n2CJL425042105; Thu, 12 Mar 2009 19:21:04 GMT (envelope-from miwi) Message-Id: <200903121921.n2CJL425042105@repoman.freebsd.org> From: Martin Wilke Date: Thu, 12 Mar 2009 19:21:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/buzhug Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2009 19:21:05 -0000 miwi 2009-03-12 19:21:04 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/buzhug Makefile distinfo pkg-descr pkg-plist Log: buzhug is a fast, pure-Python database engine, using a syntax that Python 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 Revision Changes Path 1.744 +1 -0 ports/databases/Makefile 1.1 +20 -0 ports/databases/buzhug/Makefile (new) 1.1 +3 -0 ports/databases/buzhug/distinfo (new) 1.1 +13 -0 ports/databases/buzhug/pkg-descr (new) 1.1 +31 -0 ports/databases/buzhug/pkg-plist (new)