Date: Wed, 17 Jun 2020 05:14:09 +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: r539404 - in head/devel: . aixlog Message-ID: <202006170514.05H5E9tD081381@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Wed Jun 17 05:14:08 2020 New Revision: 539404 URL: https://svnweb.freebsd.org/changeset/ports/539404 Log: New port: devel/aixlog: Header-only C++ logging library Added: head/devel/aixlog/ head/devel/aixlog/Makefile (contents, props changed) head/devel/aixlog/distinfo (contents, props changed) head/devel/aixlog/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 17 04:51:49 2020 (r539403) +++ head/devel/Makefile Wed Jun 17 05:14:08 2020 (r539404) @@ -109,6 +109,7 @@ SUBDIR += agar SUBDIR += ahven SUBDIR += aifad + SUBDIR += aixlog SUBDIR += ald SUBDIR += allegro SUBDIR += allegro-devel Added: head/devel/aixlog/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/aixlog/Makefile Wed Jun 17 05:14:08 2020 (r539404) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= aixlog +DISTVERSIONPREFIX= v +DISTVERSION= 1.3.0 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Header-only C++ logging library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= badaix + +CMAKE_OFF= BUILD_EXAMPLE + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/aixlog.hpp + +.include <bsd.port.mk> Added: head/devel/aixlog/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/aixlog/distinfo Wed Jun 17 05:14:08 2020 (r539404) @@ -0,0 +1,3 @@ +TIMESTAMP = 1592370458 +SHA256 (badaix-aixlog-v1.3.0_GH0.tar.gz) = 748a00d3185eeb5cd8f0d751c4ef89d8c0948364024a432d2536eef883c9c782 +SIZE (badaix-aixlog-v1.3.0_GH0.tar.gz) = 12411 Added: head/devel/aixlog/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/aixlog/pkg-descr Wed Jun 17 05:14:08 2020 (r539404) @@ -0,0 +1,11 @@ +Header-only C++ logging library + +Features: +* Single header file implementation +* No dependcies, just vanilla C++11 +* Use ostream operator << +* Unobtrusive, typesafe and expressive +* Easy to switch from existing "cout logging" +* Native support for various platforms (through Sinks) + +WWW: https://github.com/badaix/aixlog
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006170514.05H5E9tD081381>