From owner-svn-ports-all@FreeBSD.ORG Tue Sep 30 19:13:31 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD0DA6D1; Tue, 30 Sep 2014 19:13:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BE315CAA; Tue, 30 Sep 2014 19:13:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8UJDUY4064612; Tue, 30 Sep 2014 19:13:30 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8UJDT2d064608; Tue, 30 Sep 2014 19:13:29 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201409301913.s8UJDT2d064608@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Tue, 30 Sep 2014 19:13:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369656 - in head/devel: . py-prompt_toolkit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2014 19:13:31 -0000 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 +# $FreeBSD$ + +PORTNAME= prompt_toolkit +PORTVERSION= 0.18 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@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 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