svn commit: r478559 - in head/devel: . py-ptpython

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Fri Aug 31 14:41:09 UTC 2018


Author: sunpoet
Date: Fri Aug 31 14:41:07 2018
New Revision: 478559
URL: https://svnweb.freebsd.org/changeset/ports/478559

Log:
  Add py-ptpython 0.41
  
  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

Added:
  head/devel/py-ptpython/
  head/devel/py-ptpython/Makefile   (contents, props changed)
  head/devel/py-ptpython/distinfo   (contents, props changed)
  head/devel/py-ptpython/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Aug 31 14:38:18 2018	(r478558)
+++ head/devel/Makefile	Fri Aug 31 14:41:07 2018	(r478559)
@@ -4858,6 +4858,7 @@
     SUBDIR += py-protobuf
     SUBDIR += py-protocols
     SUBDIR += py-ptable
+    SUBDIR += py-ptpython
     SUBDIR += py-ptrace
     SUBDIR += py-ptvsd
     SUBDIR += py-pudb

Added: head/devel/py-ptpython/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-ptpython/Makefile	Fri Aug 31 14:41:07 2018	(r478559)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	ptpython
+PORTVERSION=	0.41
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at 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>

Added: head/devel/py-ptpython/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-ptpython/distinfo	Fri Aug 31 14:41:07 2018	(r478559)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1535640803
+SHA256 (ptpython-0.41.tar.gz) = a78b27a85c5dbe9d89376e7f3aa70a9d8fa15cb45ee5f73a3cc3963b9b528ac1
+SIZE (ptpython-0.41.tar.gz) = 42542

Added: head/devel/py-ptpython/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-ptpython/pkg-descr	Fri Aug 31 14:41:07 2018	(r478559)
@@ -0,0 +1,14 @@
+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


More information about the svn-ports-all mailing list