View | Details | Raw Unified | Return to bug 275157 | Differences between
and this patch

Collapse All | Expand All

(-)b/databases/Makefile (+1 lines)
Lines 767-772 Link Here
767
    SUBDIR += py-leveldb
767
    SUBDIR += py-leveldb
768
    SUBDIR += py-litecli
768
    SUBDIR += py-litecli
769
    SUBDIR += py-lmdb
769
    SUBDIR += py-lmdb
770
    SUBDIR += py-mariadb
770
    SUBDIR += py-marshmallow-sqlalchemy
771
    SUBDIR += py-marshmallow-sqlalchemy
771
    SUBDIR += py-minidb
772
    SUBDIR += py-minidb
772
    SUBDIR += py-mongoengine
773
    SUBDIR += py-mongoengine
(-)b/databases/py-mariadb/Makefile (+27 lines)
Added Link Here
1
PORTNAME=	mariadb
2
DISTVERSION=	1.1.8
3
CATEGORIES=	databases python
4
MASTER_SITES=	PYPI
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	DtxdF@disroot.org
8
COMMENT=	Python MariaDB extension
9
WWW=		https://www.github.com/mariadb-corporation/mariadb-connector-python
10
11
LICENSE=	LGPL21
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR}
15
LIB_DEPENDS=	libmariadb.so:databases/mariadb-connector-c
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR}
17
18
USES=		python
19
USE_PYTHON=	autoplist distutils
20
21
NO_ARCH=	yes
22
NO_ARCH_IGNORE=	_mariadb.cpython-${PYTHON_VER:S/.//1}.so
23
24
post-install:
25
	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_mariadb.cpython-${PYTHON_VER:S/.//1}.so
26
27
.include <bsd.port.mk>
(-)b/databases/py-mariadb/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1700175623
2
SHA256 (mariadb-1.1.8.tar.gz) = f73f1269dad5f14aee20b48ca56db7d90a51f2d5971a400c7d66e16b3976b4c9
3
SIZE (mariadb-1.1.8.tar.gz) = 85307
(-)b/databases/py-mariadb/pkg-descr (-1 / +4 lines)
Added Link Here
0
- 
1
MariaDB Connector/Python enables python programs to access MariaDB
2
and MySQL databases, using an API which is compliant with the Python
3
DB API 2.0 (PEP-249). It is written in C and Python and uses MariaDB
4
Connector/C client library for client server communication.

Return to bug 275157