Date: Thu, 4 Aug 2016 08:58:17 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419601 - in head/misc: . py-pyfiglet Message-ID: <201608040858.u748wHBN037080@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Thu Aug 4 08:58:17 2016 New Revision: 419601 URL: https://svnweb.freebsd.org/changeset/ports/419601 Log: [NEW] misc/py-pyfiglet: Pure-python FIGlet implementation pyfiglet is a full port of FIGlet (WWW: http://www.figlet.org/) into pure python. It takes ASCII text and renders it in ASCII art fonts. WWW: https://github.com/pwaller/pyfiglet Added: head/misc/py-pyfiglet/ head/misc/py-pyfiglet/Makefile (contents, props changed) head/misc/py-pyfiglet/distinfo (contents, props changed) head/misc/py-pyfiglet/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Thu Aug 4 08:43:36 2016 (r419600) +++ head/misc/Makefile Thu Aug 4 08:58:17 2016 (r419601) @@ -374,6 +374,7 @@ SUBDIR += py-osd SUBDIR += py-pexpect SUBDIR += py-powerline-status + SUBDIR += py-pyfiglet SUBDIR += py-pyprind SUBDIR += py-progressbar SUBDIR += py-progressbar231 Added: head/misc/py-pyfiglet/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyfiglet/Makefile Thu Aug 4 08:58:17 2016 (r419601) @@ -0,0 +1,21 @@ +# Created by: Kubilay Kocak <koobs@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pyfiglet +PORTVERSION= 0.7.5 +CATEGORIES= misc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Pure-python FIGlet implementation + +LICENSE= GPLv2+ + +# Actually 2.6-2.7,3.1-3.5 (no 3.0) +USES= python:2.6-3.5 +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/misc/py-pyfiglet/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyfiglet/distinfo Thu Aug 4 08:58:17 2016 (r419601) @@ -0,0 +1,3 @@ +TIMESTAMP = 1470300341 +SHA256 (pyfiglet-0.7.5.tar.gz) = 446194e1fc3257ffc8024eafd3b486394847597f6210278d76bd582850205e12 +SIZE (pyfiglet-0.7.5.tar.gz) = 767904 Added: head/misc/py-pyfiglet/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyfiglet/pkg-descr Thu Aug 4 08:58:17 2016 (r419601) @@ -0,0 +1,4 @@ +pyfiglet is a full port of FIGlet (WWW: http://www.figlet.org/) into +pure python. It takes ASCII text and renders it in ASCII art fonts. + +WWW: https://github.com/pwaller/pyfiglet
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608040858.u748wHBN037080>