Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Nov 2015 13:07:59 +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: r401509 - in head/devel: . py-termstyle
Message-ID:  <201511131307.tADD7xkw075574@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511131307.tADD7xkw075574>