mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
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:
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
|
@ -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
|
||||
|
|
25
databases/py-sqlite3dbm/Makefile
Normal file
25
databases/py-sqlite3dbm/Makefile
Normal 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>
|
2
databases/py-sqlite3dbm/distinfo
Normal file
2
databases/py-sqlite3dbm/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (sqlite3dbm-0.1.4.tar.gz) = 4721607e0b817b89efdba7e79cab881a03164b94777f4cf796ad5dd59a7612c5
|
||||
SIZE (sqlite3dbm-0.1.4.tar.gz) = 12214
|
5
databases/py-sqlite3dbm/pkg-descr
Normal file
5
databases/py-sqlite3dbm/pkg-descr
Normal 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/
|
Loading…
Add table
Reference in a new issue