mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 06:00:30 -04:00
29 lines
750 B
Makefile
29 lines
750 B
Makefile
PORTNAME= lsprotocol
|
|
PORTVERSION= 2023.0.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Python implementation of the Language Server Protocol
|
|
WWW= https://github.com/microsoft/lsprotocol
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>0:devel/py-flit-core@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=21.3.0:devel/py-attrs@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}cattrs>=23.2.1:devel/py-cattrs@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= pep517 autoplist concurrent
|
|
|
|
NO_ARCH= yes
|
|
|
|
pre-configure:
|
|
@( \
|
|
${ECHO} "from setuptools import setup" && \
|
|
${ECHO} "setup()" \
|
|
) > ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|