7d289cb32f
- While I'm here, fix options dependency helpers - Bump PORTREVISION for dependency change Approved by: portmgr (blanket) With hat: python
31 lines
793 B
Makefile
31 lines
793 B
Makefile
PORTNAME= pymysql
|
|
DISTVERSION= 1.1.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= lwhsu@FreeBSD.org
|
|
COMMENT= Pure Python MySQL Driver
|
|
WWW= https://github.com/PyMySQL/PyMySQL
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist pep517
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= ED25519 RSA
|
|
|
|
ED25519_DESC= MariaDB ed25519 auth method support
|
|
ED25519_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}PyNaCl>=1.4.0:security/py-pynacl@${PY_FLAVOR}
|
|
|
|
RSA_DESC= sha256_password or caching_sha2_password auth method support
|
|
RSA_USE= PYTHON=cryptography
|
|
|
|
.include <bsd.port.mk>
|