mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 07:19:16 -04:00
Ptpython is an advanced Python REPL. Features: - Syntax highlighting. - Multiline editing (the up arrow works). - Autocompletion. - Mouse support (disabled by default). - Support for color schemes. - Support for bracketed paste (if the terminal supports it). - Both Vi and Emacs key bindings. - Support for double width (Chinese) characters. - ... and many other stuff. WWW: https://github.com/jonathanslenders/ptpython
26 lines
726 B
Makefile
26 lines
726 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ptpython
|
|
PORTVERSION= 0.41
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Python REPL build on top of prompt_toolkit
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docopt>=0:devel/py-docopt@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}jedi>=0.9.0:devel/py-jedi@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=1.0.14:devel/py-prompt_toolkit@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|