Date: Mon, 14 Mar 2016 12:41:06 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r411062 - in head/devel: . py-pyte Message-ID: <201603141241.u2ECf6Uf069513@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603141241.u2ECf6Uf069513>