Date: Mon, 8 Mar 2021 17:31:28 +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: r567857 - in head/devel: . loguru Message-ID: <202103081731.128HVSvO062164@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Mar 8 17:31:27 2021 New Revision: 567857 URL: https://svnweb.freebsd.org/changeset/ports/567857 Log: New port: devel/loguru: Lightweight and flexible C++ logging library Added: head/devel/loguru/ head/devel/loguru/Makefile (contents, props changed) head/devel/loguru/distinfo (contents, props changed) head/devel/loguru/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 8 17:29:24 2021 (r567856) +++ head/devel/Makefile Mon Mar 8 17:31:27 2021 (r567857) @@ -1441,6 +1441,7 @@ SUBDIR += log4net SUBDIR += log4sh SUBDIR += log4shib + SUBDIR += loguru SUBDIR += lokalize SUBDIR += loki SUBDIR += love Added: head/devel/loguru/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/loguru/Makefile Mon Mar 8 17:31:27 2021 (r567857) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= loguru +DISTVERSIONPREFIX= v +DISTVERSION= 2.1.0-21 +DISTVERSIONSUFFIX= -g2295c2b +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Lightweight and flexible C++ logging library + +LICENSE= PD + +USES= compiler:c++11-lang +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= emilk + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/loguru.cpp \ + include/loguru.hpp + +do-install: + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.hpp ${STAGEDIR}${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.cpp ${STAGEDIR}${PREFIX}/include # #include <loguru.cpp> is recommended by the upstream + +.include <bsd.port.mk> Added: head/devel/loguru/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/loguru/distinfo Mon Mar 8 17:31:27 2021 (r567857) @@ -0,0 +1,3 @@ +TIMESTAMP = 1615223773 +SHA256 (emilk-loguru-v2.1.0-21-g2295c2b_GH0.tar.gz) = fad5a5952526f679218358842b7e647d822f973af75ace706d9fc561a0605f7d +SIZE (emilk-loguru-v2.1.0-21-g2295c2b_GH0.tar.gz) = 246814 Added: head/devel/loguru/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/loguru/pkg-descr Mon Mar 8 17:31:27 2021 (r567857) @@ -0,0 +1,5 @@ +loguru is a logging library that produces logs that are both human-readable and +easily greped. It can also hook into the logging process to print some of the +more severe messages on-screen. + +WWW: https://github.com/emilk/loguru
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103081731.128HVSvO062164>