From owner-svn-ports-all@freebsd.org Thu Aug 27 18:42:08 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9D20D3BC3E9; Thu, 27 Aug 2020 18:42:08 +0000 (UTC) (envelope-from sunpoet@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4Bcs5r3jNDz472s; Thu, 27 Aug 2020 18:42:08 +0000 (UTC) (envelope-from sunpoet@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 63E9987EE; Thu, 27 Aug 2020 18:42:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07RIg8g3017071; Thu, 27 Aug 2020 18:42:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07RIg7nn017067; Thu, 27 Aug 2020 18:42:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202008271842.07RIg7nn017067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 27 Aug 2020 18:42:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r546398 - in head/devel: . py-ansi X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-ansi X-SVN-Commit-Revision: 546398 X-SVN-Commit-Repository: ports 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.33 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: Thu, 27 Aug 2020 18:42:08 -0000 Author: sunpoet Date: Thu Aug 27 18:42:07 2020 New Revision: 546398 URL: https://svnweb.freebsd.org/changeset/ports/546398 Log: Add py-ansi 0.1.5 It provides various ANSI escape codes, used in moving the cursor in a text console or rendering coloured text. WWW: https://github.com/tehmaze/ansi Added: head/devel/py-ansi/ head/devel/py-ansi/Makefile (contents, props changed) head/devel/py-ansi/distinfo (contents, props changed) head/devel/py-ansi/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 27 18:40:30 2020 (r546397) +++ head/devel/Makefile Thu Aug 27 18:42:07 2020 (r546398) @@ -4050,6 +4050,7 @@ SUBDIR += py-aiortc SUBDIR += py-amalgamate SUBDIR += py-aniso8601 + SUBDIR += py-ansi SUBDIR += py-antlr4-python3-runtime SUBDIR += py-anyconfig SUBDIR += py-anyjson Added: head/devel/py-ansi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ansi/Makefile Thu Aug 27 18:42:07 2020 (r546398) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ansi +PORTVERSION= 0.1.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= ANSI cursor movement and graphics + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-ansi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ansi/distinfo Thu Aug 27 18:42:07 2020 (r546398) @@ -0,0 +1,3 @@ +TIMESTAMP = 1598456543 +SHA256 (ansi-0.1.5.tar.gz) = 0e5ca4681479e3159c89dfdfa90ed7794437ffaf956afba9b72697d297b6530b +SIZE (ansi-0.1.5.tar.gz) = 4261 Added: head/devel/py-ansi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ansi/pkg-descr Thu Aug 27 18:42:07 2020 (r546398) @@ -0,0 +1,4 @@ +It provides various ANSI escape codes, used in moving the cursor in a text +console or rendering coloured text. + +WWW: https://github.com/tehmaze/ansi