svn commit: r369656 - in head/devel: . py-prompt_toolkit
Steven Kreuzer
skreuzer at FreeBSD.org
Tue Sep 30 19:13:31 UTC 2014
Author: skreuzer
Date: Tue Sep 30 19:13:29 2014
New Revision: 369656
URL: http://svnweb.freebsd.org/changeset/ports/369656
QAT: https://qat.redports.org/buildarchive/r369656/
Log:
prompt_toolkit is a library for building powerful interactive command lines in
Python. It ships with a nice interactive Python shell (called ptpython) built
on top of the library.
prompt_toolkit could be a replacement for readline, but it can be much more
than that.
WWW: https://github.com/jonathanslenders/python-prompt-toolkit
Added:
head/devel/py-prompt_toolkit/
head/devel/py-prompt_toolkit/Makefile (contents, props changed)
head/devel/py-prompt_toolkit/distinfo (contents, props changed)
head/devel/py-prompt_toolkit/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Sep 30 19:08:43 2014 (r369655)
+++ head/devel/Makefile Tue Sep 30 19:13:29 2014 (r369656)
@@ -3826,6 +3826,7 @@
SUBDIR += py-pqueue
SUBDIR += py-prettytable
SUBDIR += py-prioritized_methods
+ SUBDIR += py-prompt_toolkit
SUBDIR += py-protobuf
SUBDIR += py-protocols
SUBDIR += py-protocols-devel
Added: head/devel/py-prompt_toolkit/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-prompt_toolkit/Makefile Tue Sep 30 19:13:29 2014 (r369656)
@@ -0,0 +1,20 @@
+# Created by: Steven Kreuzer <skreuzer at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= prompt_toolkit
+PORTVERSION= 0.18
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= skreuzer at FreeBSD.org
+COMMENT= Library for building powerful interactive command lines in Python
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docopt>=0.6.2:${PORTSDIR}/devel/py-docopt \
+ ${PYTHON_PKGNAMEPREFIX}six>=1.7.3:${PORTSDIR}/devel/py-six \
+ ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:${PORTSDIR}/textproc/py-pygments
+
+USES= python:2
+USE_PYTHON= distutils autoplist
+
+.include <bsd.port.mk>
Added: head/devel/py-prompt_toolkit/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-prompt_toolkit/distinfo Tue Sep 30 19:13:29 2014 (r369656)
@@ -0,0 +1,2 @@
+SHA256 (prompt_toolkit-0.18.tar.gz) = 2dc598e2633a374858a50b19d08d8e4a648294a2048e0423771b86bd380023fb
+SIZE (prompt_toolkit-0.18.tar.gz) = 71634
Added: head/devel/py-prompt_toolkit/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-prompt_toolkit/pkg-descr Tue Sep 30 19:13:29 2014 (r369656)
@@ -0,0 +1,8 @@
+prompt_toolkit is a library for building powerful interactive command lines in
+Python. It ships with a nice interactive Python shell (called ptpython) built
+on top of the library.
+
+prompt_toolkit could be a replacement for readline, but it can be much more
+than that.
+
+WWW: https://github.com/jonathanslenders/python-prompt-toolkit
More information about the svn-ports-all
mailing list