From owner-svn-ports-all@freebsd.org Fri Nov 13 13:08:01 2015 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 24772A2EE2E; Fri, 13 Nov 2015 13:08:01 +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 C68BD1436; Fri, 13 Nov 2015 13:08:00 +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 tADD7x6f075578; Fri, 13 Nov 2015 13:07:59 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tADD7xkw075574; Fri, 13 Nov 2015 13:07:59 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201511131307.tADD7xkw075574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Fri, 13 Nov 2015 13:07:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401509 - in head/devel: . py-termstyle 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.20 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: Fri, 13 Nov 2015 13:08:01 -0000 Author: wg Date: Fri Nov 13 13:07:59 2015 New Revision: 401509 URL: https://svnweb.freebsd.org/changeset/ports/401509 Log: devel/py-termstyle: Dirt-simple terminal-colour library for python Termstyle is a simple python library for adding coloured output to terminal (console) programs. The definitions come from ECMA-048, the "Control Functions for Coded Character Sets" standard. WWW: https://github.com/gfxmonk/termstyle Added: head/devel/py-termstyle/ head/devel/py-termstyle/Makefile (contents, props changed) head/devel/py-termstyle/distinfo (contents, props changed) head/devel/py-termstyle/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Nov 13 12:49:52 2015 (r401508) +++ head/devel/Makefile Fri Nov 13 13:07:59 2015 (r401509) @@ -4322,6 +4322,7 @@ SUBDIR += py-tconfpy SUBDIR += py-tempstorage SUBDIR += py-termcolor + SUBDIR += py-termstyle SUBDIR += py-testgears SUBDIR += py-testoob SUBDIR += py-testtools Added: head/devel/py-termstyle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-termstyle/Makefile Fri Nov 13 13:07:59 2015 (r401509) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= termstyle +PORTVERSION= 0.1.10 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Dirt-simple terminal-colour library for python + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-termstyle/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-termstyle/distinfo Fri Nov 13 13:07:59 2015 (r401509) @@ -0,0 +1,2 @@ +SHA256 (python-termstyle-0.1.10.tar.gz) = f42a6bb16fbfc5e2c66d553e7ad46524ea833872f75ee5d827c15115fafc94e2 +SIZE (python-termstyle-0.1.10.tar.gz) = 4131 Added: head/devel/py-termstyle/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-termstyle/pkg-descr Fri Nov 13 13:07:59 2015 (r401509) @@ -0,0 +1,5 @@ +Termstyle is a simple python library for adding coloured output to terminal +(console) programs. The definitions come from ECMA-048, the "Control Functions +for Coded Character Sets" standard. + +WWW: https://github.com/gfxmonk/termstyle