From owner-svn-ports-all@freebsd.org Mon Dec 3 19:57:46 2018 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 76F12130A02D; Mon, 3 Dec 2018 19:57:46 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 161F36B84E; Mon, 3 Dec 2018 19:57:46 +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 EAB5C1A9A7; Mon, 3 Dec 2018 19:57:45 +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 wB3JvjBv077932; Mon, 3 Dec 2018 19:57:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB3Jvi6E077927; Mon, 3 Dec 2018 19:57:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201812031957.wB3Jvi6E077927@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 3 Dec 2018 19:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486533 - in head/devel: . p5-Color-ANSI-Util X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Color-ANSI-Util X-SVN-Commit-Revision: 486533 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 161F36B84E X-Spamd-Result: default: False [-0.19 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.34)[-0.338,0]; NEURAL_SPAM_LONG(0.05)[0.050,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.10)[0.096,0] X-Rspamd-Server: mx1.freebsd.org 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, 03 Dec 2018 19:57:46 -0000 Author: sunpoet Date: Mon Dec 3 19:57:44 2018 New Revision: 486533 URL: https://svnweb.freebsd.org/changeset/ports/486533 Log: Add p5-Color-ANSI-Util 0.162 Color::ANSI::Util provides routines for dealing with ANSI colors. The two main functions are ansifg and ansibg. With those functions, you can specify colors in RGB and let it output the correct ANSI color escape code according to the color depth support of the terminal (whether 16-color, 256-color, or 24bit). There are other functions to convert RGB to ANSI in specific color depths, or reverse functions to convert from ANSI to RGB codes. WWW: https://metacpan.org/release/Color-ANSI-Util Added: head/devel/p5-Color-ANSI-Util/ head/devel/p5-Color-ANSI-Util/Makefile (contents, props changed) head/devel/p5-Color-ANSI-Util/distinfo (contents, props changed) head/devel/p5-Color-ANSI-Util/pkg-descr (contents, props changed) head/devel/p5-Color-ANSI-Util/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 3 19:55:29 2018 (r486532) +++ head/devel/Makefile Mon Dec 3 19:57:44 2018 (r486533) @@ -2198,6 +2198,7 @@ SUBDIR += p5-Clone-More SUBDIR += p5-Clone-PP SUBDIR += p5-Code-Perl + SUBDIR += p5-Color-ANSI-Util SUBDIR += p5-Commandable SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit Added: head/devel/p5-Color-ANSI-Util/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-ANSI-Util/Makefile Mon Dec 3 19:57:44 2018 (r486533) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Color-ANSI-Util +PORTVERSION= 0.162 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Routines for dealing with ANSI colors + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/devel/p5-Color-ANSI-Util/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-ANSI-Util/distinfo Mon Dec 3 19:57:44 2018 (r486533) @@ -0,0 +1,3 @@ +TIMESTAMP = 1543776807 +SHA256 (Color-ANSI-Util-0.162.tar.gz) = 8a9904c064efddda59b2ebeb3bcfb1782f7dc65c0eaa0e8eaa46c09ecf9a31ea +SIZE (Color-ANSI-Util-0.162.tar.gz) = 21785 Added: head/devel/p5-Color-ANSI-Util/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-ANSI-Util/pkg-descr Mon Dec 3 19:57:44 2018 (r486533) @@ -0,0 +1,8 @@ +Color::ANSI::Util provides routines for dealing with ANSI colors. The two main +functions are ansifg and ansibg. With those functions, you can specify colors in +RGB and let it output the correct ANSI color escape code according to the color +depth support of the terminal (whether 16-color, 256-color, or 24bit). There are +other functions to convert RGB to ANSI in specific color depths, or reverse +functions to convert from ANSI to RGB codes. + +WWW: https://metacpan.org/release/Color-ANSI-Util Added: head/devel/p5-Color-ANSI-Util/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Color-ANSI-Util/pkg-plist Mon Dec 3 19:57:44 2018 (r486533) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Color/ANSI/Util.pm +%%PERL5_MAN3%%/Color::ANSI::Util.3.gz