svn commit: r493311 - in head/devel: . py-asciimatics

Yuri Victorovich yuri at FreeBSD.org
Mon Feb 18 19:00:55 UTC 2019


Author: yuri
Date: Mon Feb 18 19:00:53 2019
New Revision: 493311
URL: https://svnweb.freebsd.org/changeset/ports/493311

Log:
  New port: devel/py-asciimatics: Mouse/keyboard input, text color/positioning, and ASCII animations

Added:
  head/devel/py-asciimatics/
  head/devel/py-asciimatics/Makefile   (contents, props changed)
  head/devel/py-asciimatics/distinfo   (contents, props changed)
  head/devel/py-asciimatics/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Feb 18 18:46:34 2019	(r493310)
+++ head/devel/Makefile	Mon Feb 18 19:00:53 2019	(r493311)
@@ -4323,6 +4323,7 @@
     SUBDIR += py-args
     SUBDIR += py-arpeggio
     SUBDIR += py-arrow
+    SUBDIR += py-asciimatics
     SUBDIR += py-asn1crypto
     SUBDIR += py-aspects
     SUBDIR += py-aspyct

Added: head/devel/py-asciimatics/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-asciimatics/Makefile	Mon Feb 18 19:00:53 2019	(r493311)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	asciimatics
+PORTVERSION=	1.10.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Mouse/keyboard input, text color/positioning, and ASCII animations
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pillow>=2.7.0:graphics/py-pillow@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyfiglet>=0.7.2:misc/py-pyfiglet@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wcwidth>0:devel/py-wcwidth@${PY_FLAVOR}
+
+USES=		python:2.7 # only because misc/py-pyfiglet is py27-only
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-asciimatics/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-asciimatics/distinfo	Mon Feb 18 19:00:53 2019	(r493311)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1550515831
+SHA256 (asciimatics-1.10.0.tar.gz) = 9101b0b6885542f324980bbe13a772475cd6a12678f601228eaaea412db919ab
+SIZE (asciimatics-1.10.0.tar.gz) = 1534144

Added: head/devel/py-asciimatics/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-asciimatics/pkg-descr	Mon Feb 18 19:00:53 2019	(r493311)
@@ -0,0 +1,13 @@
+Asciimatics is a package to help people create full-screen text UIs
+(from interactive forms to ASCII animations) on any platform.
+
+Features:
+* Coloured/styled text - including 256 colour terminals and unicode characters
+  (even CJK languages)
+* Cursor positioning
+* Keyboard input (without blocking or echoing) including unicode support
+* Mouse input (terminal permitting)
+* Detecting and handling when the console resizes
+* Screen scraping
+
+WWW: https://github.com/peterbrittain/asciimatics


More information about the svn-ports-head mailing list