44 lines
1.8 KiB
Makefile
44 lines
1.8 KiB
Makefile
PORTNAME= dns-lexicon
|
|
PORTVERSION= 3.14.1
|
|
CATEGORIES= dns python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= dns_lexicon-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Manipulate DNS records on various DNS providers in a standardized way
|
|
WWW= https://github.com/AnalogJ/lexicon
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0.0:devel/py-poetry-core@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4:www/py-beautifulsoup@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}importlib-metadata>=4:devel/py-importlib-metadata@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}yaml>=3:devel/py-yaml@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=2:www/py-requests@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}tldextract>=2:dns/py-tldextract@${PY_FLAVOR}
|
|
|
|
USES= pycryptography:run python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DDNS DUCKDNS GRANSY LOCALZONE OCI ROUTE53 SOFTLAYER
|
|
DDNS_DESC= Dynamic DNS support
|
|
DUCKDNS_DESC= Duck DNS support
|
|
GRANSY_DESC= Gransy support
|
|
LOCALZONE_DESC= localzone support
|
|
OCI_DESC= Oracle Cloud Infrastructure (OCI) support
|
|
ROUTE53_DESC= Route 53 support
|
|
SOFTLAYER_DESC= SoftLayer (IBM Cloud) support
|
|
|
|
DDNS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dnspython>=2,1:dns/py-dnspython@${PY_FLAVOR}
|
|
DUCKDNS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dnspython>=2,1:dns/py-dnspython@${PY_FLAVOR}
|
|
GRANSY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zeep>=3:net/py-zeep@${PY_FLAVOR}
|
|
LOCALZONE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}localzone>=0.9.8:dns/py-localzone@${PY_FLAVOR}
|
|
OCI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}oci>=2:devel/py-oci@${PY_FLAVOR}
|
|
ROUTE53_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>=1.28:www/py-boto3@${PY_FLAVOR}
|
|
SOFTLAYER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}softlayer>=5:net/py-softlayer@${PY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|