databases/pythoncego: New port

The Cego Python driver enables Python programs to access cego databases,
using an API which is compliant with the Python DB API 2.0 (PEP-249).
It is written in C and uses the Cego C wrapper client library for
client server communication.

This implementation is derived from the MariaDB Connector written
by Georg Richter.
This commit is contained in:
Björn Lemke 2024-06-30 11:43:00 +02:00 committed by Kurt Jaeger
parent 8a36037e77
commit e89748e0ca
4 changed files with 31 additions and 0 deletions

View file

@ -841,6 +841,7 @@
SUBDIR += py-whisper
SUBDIR += py-xapian
SUBDIR += py-zodbpickle
SUBDIR += pythoncego
SUBDIR += qdbm
SUBDIR += qdbm-plus
SUBDIR += qdrant

View file

@ -0,0 +1,19 @@
PORTNAME= pythoncego
PORTVERSION= 1.0.1
CATEGORIES= databases
MASTER_SITES= http://www.lemke-it.com/
MAINTAINER= pi@FreeBSD.org
COMMENT= Cego database support for Python
WWW= https://www.lemke-it.com/
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libcego.so:databases/cego
USES= python
USE_PYTHON= autoplist concurrent distutils pytest
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1719740107
SHA256 (pythoncego-1.0.1.tar.gz) = 24f8b354216895a707692c47fa173f6af2deb0ed456d37351067675f8b3be87a
SIZE (pythoncego-1.0.1.tar.gz) = 34401

View file

@ -0,0 +1,8 @@
The Cego Python driver enables Python programs to access cego databases,
using an API which is compliant with the Python DB API 2.0 (PEP-249).
It is written in C and uses the Cego C wrapper client library for
client server communication.
This implementation is derived from the MariaDB Connector written
by Georg Richter.