svn commit: r500568 - in head/devel: . rang

Yuri Victorovich yuri at FreeBSD.org
Tue Apr 30 21:19:33 UTC 2019


Author: yuri
Date: Tue Apr 30 21:19:31 2019
New Revision: 500568
URL: https://svnweb.freebsd.org/changeset/ports/500568

Log:
  New port: devel/rang: Minimal header-only modern C++ library for terminal goodies

Added:
  head/devel/rang/
  head/devel/rang/Makefile   (contents, props changed)
  head/devel/rang/distinfo   (contents, props changed)
  head/devel/rang/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Apr 30 21:13:26 2019	(r500567)
+++ head/devel/Makefile	Tue Apr 30 21:19:31 2019	(r500568)
@@ -5464,6 +5464,7 @@
     SUBDIR += radian
     SUBDIR += ragel
     SUBDIR += raknet
+    SUBDIR += rang
     SUBDIR += range-v3
     SUBDIR += rapidjson
     SUBDIR += raylib

Added: head/devel/rang/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rang/Makefile	Tue Apr 30 21:19:31 2019	(r500568)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	rang
+DISTVERSIONPREFIX=	v
+DISTVERSION=	3.1.0-5
+DISTVERSIONSUFFIX=	-gcabe04d
+CATEGORIES=	devel
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Minimal header-only modern C++ library for terminal goodies
+
+LICENSE=	PD
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		cmake
+USE_GITHUB=	yes
+GH_ACCOUNT=	agauniyal
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+PLIST_FILES=	include/rang.hpp
+
+.include <bsd.port.mk>

Added: head/devel/rang/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rang/distinfo	Tue Apr 30 21:19:31 2019	(r500568)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1556655471
+SHA256 (agauniyal-rang-v3.1.0-5-gcabe04d_GH0.tar.gz) = 302e7b55027df7cf3fb5a98bca2f77dae9f355147156418cf996781a36abbeaa
+SIZE (agauniyal-rang-v3.1.0-5-gcabe04d_GH0.tar.gz) = 12379

Added: head/devel/rang/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rang/pkg-descr	Tue Apr 30 21:19:31 2019	(r500568)
@@ -0,0 +1,9 @@
+C++ library for terminal goodies. It allows to print colored and styled text
+on the terminals that support it, avoiding the need to explicitly hardcode
+terminal sequences which is commonly done by software authors at the expense
+of code elegance.
+
+It also avoids printing terminal sequences when the program output is redirected
+to the file, a common problem in such situations.
+
+WWW: https://agauniyal.github.io/rang/


More information about the svn-ports-head mailing list