Date: Sat, 27 Feb 2021 09:12:38 +0000 (UTC) From: Rainer Hurling <rhurlin@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566679 - in head/textproc: . py-python-language-server Message-ID: <202102270912.11R9Cc9T004521@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rhurlin Date: Sat Feb 27 09:12:37 2021 New Revision: 566679 URL: https://svnweb.freebsd.org/changeset/ports/566679 Log: New port: textproc/py-python-language-server: Python implementation of the Language Server Protocol https://github.com/palantir/python-language-server Added: head/textproc/py-python-language-server/ head/textproc/py-python-language-server/Makefile (contents, props changed) head/textproc/py-python-language-server/distinfo (contents, props changed) head/textproc/py-python-language-server/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Feb 27 08:39:11 2021 (r566678) +++ head/textproc/Makefile Sat Feb 27 09:12:37 2021 (r566679) @@ -1372,6 +1372,7 @@ SUBDIR += py-python-docs-theme SUBDIR += py-python-docx SUBDIR += py-python-gettext + SUBDIR += py-python-language-server SUBDIR += py-python-slugify SUBDIR += py-python-xmp-toolkit SUBDIR += py-pytidylib Added: head/textproc/py-python-language-server/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-language-server/Makefile Sat Feb 27 09:12:37 2021 (r566679) @@ -0,0 +1,30 @@ +# Created by: Rainer Hurling <rhurlin@gwdg.de> +# $FreeBSD$ + +PORTNAME= python-language-server +PORTVERSION= 0.36.2 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rhurlin@FreeBSD.org +COMMENT= Python implementation of the Language Server Protocol + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jedi>0:devel/py-jedi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rope>0:devel/py-rope@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyflakes>0:devel/py-pyflakes@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mccabe>0:devel/py-mccabe@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycodestyle>0:devel/py-pycodestyle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydocstyle>0:devel/py-pydocstyle@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}autopep8>0:textproc/py-autopep8@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yapf>0:textproc/py-yapf@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/textproc/py-python-language-server/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-language-server/distinfo Sat Feb 27 09:12:37 2021 (r566679) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614410166 +SHA256 (python-language-server-0.36.2.tar.gz) = 9984c84a67ee2c5102c8e703215f407fcfa5e62b0ae86c9572d0ada8c4b417b0 +SIZE (python-language-server-0.36.2.tar.gz) = 74499 Added: head/textproc/py-python-language-server/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-language-server/pkg-descr Sat Feb 27 09:12:37 2021 (r566679) @@ -0,0 +1,6 @@ +An implementation of the Language Server Protocol for Python. + +The base language server provide Completions, Definitions, +Hover, References, Signature Help, and Symbols. + +WWW: https://github.com/palantir/python-language-server
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102270912.11R9Cc9T004521>