From owner-svn-ports-head@FreeBSD.ORG Mon Jun 22 16:58:07 2015 Return-Path: Delivered-To: svn-ports-head@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16FB76E1; Mon, 22 Jun 2015 16:58:07 +0000 (UTC) (envelope-from robak@FreeBSD.org) 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 EA9E9B8C; Mon, 22 Jun 2015 16:58:06 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5MGw6P5071772; Mon, 22 Jun 2015 16:58:06 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5MGw5rF071760; Mon, 22 Jun 2015 16:58:05 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201506221658.t5MGw5rF071760@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Mon, 22 Jun 2015 16:58:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390302 - in head/net: . py-terminado X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Jun 2015 16:58:07 -0000 Author: robak Date: Mon Jun 22 16:58:05 2015 New Revision: 390302 URL: https://svnweb.freebsd.org/changeset/ports/390302 Log: net/py-terminado: NEW PORT - Terminals served to term.js using Tornado websockets This is a Tornado websocket backend for the term.js terminal emulator library. It evolved out of pyxterm, which was part of GraphTerm (as lineterm.py), v0.57.0 (2014-07-18), and ultimately derived from the public-domain Ajaxterm code, v0.11 (2008-11-13) (also on Github as part of QWeb). WWW: https://github.com/takluyver/terminado Submitted by: robak@FreeBSD.org Added: head/net/py-terminado/ head/net/py-terminado/Makefile (contents, props changed) head/net/py-terminado/distinfo (contents, props changed) head/net/py-terminado/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 22 16:48:24 2015 (r390301) +++ head/net/Makefile Mon Jun 22 16:58:05 2015 (r390302) @@ -958,6 +958,7 @@ SUBDIR += py-soapy SUBDIR += py-speedtest-cli SUBDIR += py-suds + SUBDIR += py-terminado SUBDIR += py-tofu SUBDIR += py-tweepy SUBDIR += py-twistedPair Added: head/net/py-terminado/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-terminado/Makefile Mon Jun 22 16:58:05 2015 (r390302) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= terminado +PORTVERSION= 0.5 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= robak@FreeBSD.org +COMMENT= Terminals served to term.js using Tornado websockets + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ptyprocess>0:${PORTSDIR}/sysutils/py-ptyprocess \ + ${PYTHON_PKGNAMEPREFIX}tornado>0:${PORTSDIR}/www/py-tornado + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/net/py-terminado/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-terminado/distinfo Mon Jun 22 16:58:05 2015 (r390302) @@ -0,0 +1,2 @@ +SHA256 (terminado-0.5.tar.gz) = 63e893eff1ba84f1ee7c4bfcca7676ba1de6394538bb9aa80cbbc8866cb875b6 +SIZE (terminado-0.5.tar.gz) = 10491 Added: head/net/py-terminado/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-terminado/pkg-descr Mon Jun 22 16:58:05 2015 (r390302) @@ -0,0 +1,7 @@ +This is a Tornado websocket backend for the term.js terminal emulator library. + +It evolved out of pyxterm, which was part of GraphTerm (as lineterm.py), +v0.57.0 (2014-07-18), and ultimately derived from the public-domain Ajaxterm +code, v0.11 (2008-11-13) (also on Github as part of QWeb). + +WWW: https://github.com/takluyver/terminado