mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 11:20:46 -04:00
29 lines
850 B
Makefile
29 lines
850 B
Makefile
PORTNAME= pygls
|
|
PORTVERSION= 1.3.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Pythonic generic language server (pronounced like 'pie glass')
|
|
WWW= https://pygls.readthedocs.io/en/latest/ \
|
|
https://github.com/openlawlibrary/pygls
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=0:devel/py-poetry-core@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cattrs>=23.1.2:devel/py-cattrs@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}lsprotocol>=2023.0.1:devel/py-lsprotocol@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= WS
|
|
WS_DESC= WebSocket support
|
|
|
|
WS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}websockets>=11.0.3:devel/py-websockets@${PY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|