databases/py-sqlite-fts4: New port: Python functions for working with SQLite FTS4 search

Custom SQLite functions written in Python for ranking documents
indexed using the FTS4 extension.

WWW: https://github.com/simonw/sqlite-fts4
This commit is contained in:
Fukang Chen 2022-07-26 06:02:55 +00:00
parent 4f0b6807f6
commit 4f49555a4b
4 changed files with 29 additions and 0 deletions

View File

@ -832,6 +832,7 @@
SUBDIR += py-sqlalchemy12
SUBDIR += py-sqlalchemy13
SUBDIR += py-sqlalchemy14
SUBDIR += py-sqlite-fts4
SUBDIR += py-sqlite3
SUBDIR += py-sqlobject
SUBDIR += py-sqlparse

View File

@ -0,0 +1,21 @@
PORTNAME= sqlite-fts4
PORTVERSION= 1.0.1
CATEGORIES= databases python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= loader@FreeBSD.org
COMMENT= Python functions for working with SQLite FTS4 search
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
USES= python:3.6+
USE_GITHUB= yes
GH_ACCOUNT= simonw
USE_PYTHON= autoplist distutils pytest
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1658735890
SHA256 (simonw-sqlite-fts4-1.0.1_GH0.tar.gz) = a261ece8ddb0c70751660220fa64c19c5b491c76111e3ea3870ca1c1c143dfe5
SIZE (simonw-sqlite-fts4-1.0.1_GH0.tar.gz) = 10786

View File

@ -0,0 +1,4 @@
Custom SQLite functions written in Python for ranking documents
indexed using the FTS4 extension.
WWW: https://github.com/simonw/sqlite-fts4