From owner-svn-ports-head@freebsd.org Sat Sep 26 10:15:19 2020 Return-Path: Delivered-To: svn-ports-head@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 3BF063FA1FE; Sat, 26 Sep 2020 10:15:19 +0000 (UTC) (envelope-from matthew@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 4Bz4RC0vn5z4Q5F; Sat, 26 Sep 2020 10:15:19 +0000 (UTC) (envelope-from matthew@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 032DD22A8E; Sat, 26 Sep 2020 10:15:19 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08QAFIDb099859; Sat, 26 Sep 2020 10:15:18 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08QAFIws099855; Sat, 26 Sep 2020 10:15:18 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <202009261015.08QAFIws099855@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 26 Sep 2020 10:15:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550153 - in head/textproc: . py-rich X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: in head/textproc: . py-rich X-SVN-Commit-Revision: 550153 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Sep 2020 10:15:19 -0000 Author: matthew Date: Sat Sep 26 10:15:17 2020 New Revision: 550153 URL: https://svnweb.freebsd.org/changeset/ports/550153 Log: Rich is a Python library for rich text and beautiful formatting in the terminal. The Rich API makes it easy to add color and style to terminal output. Rich can also render pretty tables, progress bars, markdown, syntax highlighted source code, tracebacks, and more -- out of the box. WWW: https://github.com/willmcgugan/rich Added: head/textproc/py-rich/ head/textproc/py-rich/Makefile (contents, props changed) head/textproc/py-rich/Makefile~ (contents, props changed) head/textproc/py-rich/distinfo (contents, props changed) head/textproc/py-rich/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Sep 26 10:00:40 2020 (r550152) +++ head/textproc/Makefile Sat Sep 26 10:15:17 2020 (r550153) @@ -1357,6 +1357,7 @@ SUBDIR += py-regex SUBDIR += py-reno SUBDIR += py-reverend + SUBDIR += py-rich SUBDIR += py-rnc2rng SUBDIR += py-rss2gen SUBDIR += py-rst2html5 Added: head/textproc/py-rich/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-rich/Makefile Sat Sep 26 10:15:17 2020 (r550153) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= rich +PORTVERSION= 7.0.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Rich text and beautiful formatting in the terminal + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.0:devel/py-colorama@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}CommonMark>=0.9.0:textproc/py-CommonMark@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygments>=2.6.0:textproc/py-pygments@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4:devel/py-typing-extensions@${PY_FLAVOR} + +NO_ARCH= yes +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/textproc/py-rich/Makefile~ ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-rich/Makefile~ Sat Sep 26 10:15:17 2020 (r550153) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= rich +PORTVERSION= 7.0.0 +CATEGORIES= textproc python +MASTERSITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Rich text and beautiful formatting in the terminal + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.0:devel/py-colorama@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}CommonMark>=0.9.0:textproc/py-CommonMark@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygments>=2.6.0:textproc/py-pygments@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4:devel/py-typing-extensions@${PY_FLAVOR} + +NO_ARCH= yes +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +.include Added: head/textproc/py-rich/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-rich/distinfo Sat Sep 26 10:15:17 2020 (r550153) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601114867 +SHA256 (rich-7.0.0.tar.gz) = 291700f5c09fae83676f44781d01a292c39efad9505dd4724899646b794f9afb +SIZE (rich-7.0.0.tar.gz) = 139749 Added: head/textproc/py-rich/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-rich/pkg-descr Sat Sep 26 10:15:17 2020 (r550153) @@ -0,0 +1,9 @@ +Rich is a Python library for rich text and beautiful formatting in the +terminal. + +The Rich API makes it easy to add color and style to terminal +output. Rich can also render pretty tables, progress bars, markdown, +syntax highlighted source code, tracebacks, and more -- out of the +box. + +WWW: https://github.com/willmcgugan/rich