From owner-svn-ports-all@freebsd.org Mon Mar 14 12:41:08 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 336D2A92FCC; Mon, 14 Mar 2016 12:41:08 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 DF462BEA; Mon, 14 Mar 2016 12:41:07 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2ECf6N8069536; Mon, 14 Mar 2016 12:41:06 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2ECf6Uf069513; Mon, 14 Mar 2016 12:41:06 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201603141241.u2ECf6Uf069513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Mon, 14 Mar 2016 12:41:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411062 - in head/devel: . py-pyte 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.21 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: Mon, 14 Mar 2016 12:41:08 -0000 Author: wg Date: Mon Mar 14 12:41:06 2016 New Revision: 411062 URL: https://svnweb.freebsd.org/changeset/ports/411062 Log: devel/py-pyte: Simple VTXXX-compatible terminal emulator Its an in memory VTXXX-compatible terminal emulator. XXX stands for a series of video terminals, developed by DEC between 1970 and 1995. WWW: https://github.com/selectel/pyte Added: head/devel/py-pyte/ head/devel/py-pyte/Makefile (contents, props changed) head/devel/py-pyte/distinfo (contents, props changed) head/devel/py-pyte/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 14 12:41:06 2016 (r411061) +++ head/devel/Makefile Mon Mar 14 12:41:06 2016 (r411062) @@ -4274,6 +4274,7 @@ SUBDIR += py-pyro SUBDIR += py-pyshapelib SUBDIR += py-pytemplate + SUBDIR += py-pyte SUBDIR += py-pytest SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog Added: head/devel/py-pyte/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyte/Makefile Mon Mar 14 12:41:06 2016 (r411062) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= pyte +PORTVERSION= 0.5.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Simple VTXXX-compatible terminal emulator + +LICENSE= LGPL3 + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include Added: head/devel/py-pyte/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyte/distinfo Mon Mar 14 12:41:06 2016 (r411062) @@ -0,0 +1,2 @@ +SHA256 (pyte-0.5.1.tar.gz) = d2cf77ef6395c6b97d5c10ee47f38d348114170e504fc55a043d4c7dd1aea6e1 +SIZE (pyte-0.5.1.tar.gz) = 49849 Added: head/devel/py-pyte/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyte/pkg-descr Mon Mar 14 12:41:06 2016 (r411062) @@ -0,0 +1,4 @@ +Its an in memory VTXXX-compatible terminal emulator. XXX stands for a series +of video terminals, developed by DEC between 1970 and 1995. + +WWW: https://github.com/selectel/pyte