diff options
author | David Naylor <dbn@FreeBSD.org> | 2015-08-31 19:38:23 +0000 |
---|---|---|
committer | David Naylor <dbn@FreeBSD.org> | 2015-08-31 19:38:23 +0000 |
commit | eeb1443b97e50bd2070382879809fcf857973c0d (patch) | |
tree | e38ad343bb0776e7eeb5b7e1a6d397c3b069282f /databases/pypy-sqlite3 | |
parent | 5c080d0f3d7607267b4e3b530dfbf448cbfa93ad (diff) |
Notes
Diffstat (limited to 'databases/pypy-sqlite3')
-rw-r--r-- | databases/pypy-sqlite3/Makefile | 16 | ||||
-rw-r--r-- | databases/pypy-sqlite3/pkg-descr | 8 |
2 files changed, 24 insertions, 0 deletions
diff --git a/databases/pypy-sqlite3/Makefile b/databases/pypy-sqlite3/Makefile new file mode 100644 index 000000000000..cf4fb55a5da7 --- /dev/null +++ b/databases/pypy-sqlite3/Makefile @@ -0,0 +1,16 @@ +# Created by: David Naylor <dbn@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= sqlite3 +PORTVERSION= ${PYTHON_PORTVERSION} +CATEGORIES= databases python + +MAINTAINER= dbn@FreeBSD.org +COMMENT= Standard PyPy binding to the SQLite3 library + +LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 + +CFFI_NAME= _ffi + +.include "${.CURDIR}/../../lang/pypy/bsd.pypy.cffi.mk" +.include <bsd.port.mk> diff --git a/databases/pypy-sqlite3/pkg-descr b/databases/pypy-sqlite3/pkg-descr new file mode 100644 index 000000000000..8d91da89239a --- /dev/null +++ b/databases/pypy-sqlite3/pkg-descr @@ -0,0 +1,8 @@ +SQLite is a library that provides a SQL-language database that +stores data in disk files without requiring a separate server +process. pysqlite provides a SQL interface compliant with the DB-API +2.0 specification described by PEP 249. This means that it should +be possible to write the first version of your applications using +SQLite for data storage. If switching to a larger database such as +PostgreSQL or Oracle is later necessary, the switch should be +relatively easy. |