This module provides a sqlite-backed dictionary conforming to the

dbm interface, along with a shelve class that wraps the dict and
provides serialization for it.

WWW: http://github.com/Yelp/sqlite3dbm/
This commit is contained in:
Wen Heping 2011-10-28 08:14:02 +00:00
parent b867ff7154
commit 39c4e614e3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=284506
4 changed files with 33 additions and 0 deletions

View file

@ -690,6 +690,7 @@
SUBDIR += py-sqlalchemy
SUBDIR += py-sqlalchemy06
SUBDIR += py-sqlite3
SUBDIR += py-sqlite3dbm
SUBDIR += py-sqlkit
SUBDIR += py-sqlobject
SUBDIR += py-sqlparse

View file

@ -0,0 +1,25 @@
# New ports collection makefile for: py-sqlite3dbm
# Date created: Oct 28, 2011
# Whom: Wen Heping <wen@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= sqlite3dbm
PORTVERSION= 0.1.4
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Sqlite-backed dictionary
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
USE_PYTHON= 2.6+
USE_PYDISTUTILS=easy_install
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (sqlite3dbm-0.1.4.tar.gz) = 4721607e0b817b89efdba7e79cab881a03164b94777f4cf796ad5dd59a7612c5
SIZE (sqlite3dbm-0.1.4.tar.gz) = 12214

View file

@ -0,0 +1,5 @@
This module provides a sqlite-backed dictionary conforming to the
dbm interface, along with a shelve class that wraps the dict and
provides serialization for it.
WWW: http://github.com/Yelp/sqlite3dbm/