diff --git a/devel/py-click-repl/Makefile b/devel/py-click-repl/Makefile index 3eb106ad9ef5..1d2e384464a2 100644 --- a/devel/py-click-repl/Makefile +++ b/devel/py-click-repl/Makefile @@ -1,27 +1,28 @@ PORTNAME= click-repl DISTVERSION= 0.3.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= otis@FreeBSD.org COMMENT= REPL plugin for Click WWW= https://github.com/click-contrib/click-repl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}prompt-toolkit>=3.0.36:devel/py-prompt-toolkit@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox@${PY_FLAVOR} USES= python USE_PYTHON= autoplist distutils NO_ARCH= yes do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v .include diff --git a/devel/py-click-repl/pkg-descr b/devel/py-click-repl/pkg-descr index 0fbe7c9af8e4..7a7d327a67fc 100644 --- a/devel/py-click-repl/pkg-descr +++ b/devel/py-click-repl/pkg-descr @@ -1 +1,6 @@ -Enable git-like did-you-mean feature in click. +Enable REPL plugin for Click. + +Python REPL, short for Read-Eval-Print Loop, is an interactive programming +environment that allows users to execute Python code one line at a time. +It evaluates input, executes computations, and prints results instantly, +facilitating testing, debugging, and exploratory programming.