Date: Mon, 9 Dec 2019 18:49:59 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519626 - in head/devel: . termcolor Message-ID: <201912091849.xB9InxGD002784@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Dec 9 18:49:59 2019 New Revision: 519626 URL: https://svnweb.freebsd.org/changeset/ports/519626 Log: New port: devel/termcolor: Header-only C++ library for printing colored messages to the terminal Added: head/devel/termcolor/ head/devel/termcolor/Makefile (contents, props changed) head/devel/termcolor/distinfo (contents, props changed) head/devel/termcolor/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 9 17:17:32 2019 (r519625) +++ head/devel/Makefile Mon Dec 9 18:49:59 2019 (r519626) @@ -6492,6 +6492,7 @@ SUBDIR += tdl SUBDIR += template-glib SUBDIR += termbox + SUBDIR += termcolor SUBDIR += terminality SUBDIR += tevent SUBDIR += tevent1 Added: head/devel/termcolor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/termcolor/Makefile Mon Dec 9 18:49:59 2019 (r519626) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= termcolor +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.1-9 +DISTVERSIONSUFFIX= -g4881b2f +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Header-only C++ library for printing colored messages to the terminal + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= ikalnytskyi + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/termcolor/termcolor.hpp \ + lib/cmake/termcolor/termcolor-config.cmake \ + lib/cmake/termcolor/termcolor-targets.cmake + +.include <bsd.port.mk> Added: head/devel/termcolor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/termcolor/distinfo Mon Dec 9 18:49:59 2019 (r519626) @@ -0,0 +1,3 @@ +TIMESTAMP = 1575917154 +SHA256 (ikalnytskyi-termcolor-v1.0.1-9-g4881b2f_GH0.tar.gz) = 06ffcbfb46fbceb1fcef2e133ecac23ef36d4af6f88ecb1af08befcad54a33cd +SIZE (ikalnytskyi-termcolor-v1.0.1-9-g4881b2f_GH0.tar.gz) = 86919 Added: head/devel/termcolor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/termcolor/pkg-descr Mon Dec 9 18:49:59 2019 (r519626) @@ -0,0 +1,7 @@ +Termcolor is a header-only C++ library for printing colored messages to the +terminal. Written just for fun with a help of the Force. Termcolor uses ANSI +color formatting, so you can use it on every system that is used such terminals +(most *nix systems, including Linux and Mac OS). On Windows, WinAPI is used +instead but some limitations are applied. + +WWW: https://github.com/ikalnytskyi/termcolor
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912091849.xB9InxGD002784>