pickleDB is a lightweight, fast, and simple database based on Python's own

json module.

WWW:	http://packages.python.org/pyckleDB/

PR:		ports/162282
Submitted by:	Olivier Duchateau <duchateau.olivier@gmail.com>
This commit is contained in:
Martin Wilke 2011-11-05 18:41:28 +00:00
parent f10d686810
commit 07ef322d9d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=285113
4 changed files with 33 additions and 0 deletions

View file

@ -662,6 +662,7 @@
SUBDIR += py-oops
SUBDIR += py-pg8000
SUBDIR += py-pg_pqueue
SUBDIR += py-pickledb
SUBDIR += py-postgresql
SUBDIR += py-psycopg
SUBDIR += py-psycopg2

View file

@ -0,0 +1,26 @@
# New ports collection makefile for: py-pickledb
# Date created: 2011-11-04
# Whom: Olivier Duchateau <duchateau.olivier@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pickleDB
PORTVERSION= 0.2.1
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= duchateau.olivier@gmail.com
COMMENT= A lightweight, fast and simple key-value store
LICENSE= BSD
USE_PYTHON= 2.6+
USE_PYDISTUTILS= yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/pickledb.py \
%%PYTHON_SITELIBDIR%%/pickledb.pyc \
%%PYTHON_SITELIBDIR%%/pickledb.pyo
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (pickleDB-0.2.1.tar.gz) = d3c434aa6faf0af2d999645c92eb6c86a94136fccfcd1cf09fa8aaf5cce97f8a
SIZE (pickleDB-0.2.1.tar.gz) = 2232

View file

@ -0,0 +1,4 @@
pickleDB is a lightweight, fast, and simple database based on Python's own
json module.
WWW: http://packages.python.org/pyckleDB/