From owner-svn-ports-all@freebsd.org Mon Feb 18 19:00:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5429214E8654; Mon, 18 Feb 2019 19:00:55 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED09F80F90; Mon, 18 Feb 2019 19:00:54 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E194C9FC4; Mon, 18 Feb 2019 19:00:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1IJ0sbw075552; Mon, 18 Feb 2019 19:00:54 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1IJ0rG8075548; Mon, 18 Feb 2019 19:00:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201902181900.x1IJ0rG8075548@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Feb 2019 19:00:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493311 - in head/devel: . py-asciimatics X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-asciimatics X-SVN-Commit-Revision: 493311 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED09F80F90 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 18 Feb 2019 19:00:55 -0000 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@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 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