# HG changeset patch # User Franz Glasner # Date 1664467671 -7200 # Node ID 73fb9a687f215f37d57d9c4ed09f17977c85a847 ADD: the latest easily available ports files for databases/sqlite3 diff -r 000000000000 -r 73fb9a687f21 Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Thu Sep 29 18:07:51 2022 +0200 @@ -0,0 +1,15 @@ +# Created by: David Naylor +# $FreeBSD: head/databases/pypy-sqlite3/Makefile 457998 2018-01-03 18:42:15Z dbn $ + +PORTNAME= sqlite3 +CATEGORIES= databases python + +MAINTAINER= python@FreeBSD.org +COMMENT= Standard PyPy binding to the SQLite3 library + +LIB_DEPENDS= libsqlite3.so:databases/sqlite3 + +CFFI_NAME= _ffi + +.include "${.CURDIR}/../../lang/pypy/bsd.pypy.cffi.mk" +.include diff -r 000000000000 -r 73fb9a687f21 pkg-descr --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pkg-descr Thu Sep 29 18:07:51 2022 +0200 @@ -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.