From owner-svn-ports-all@freebsd.org Wed Jun 17 05:14:10 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2C0BE34364E; Wed, 17 Jun 2020 05:14:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49mtXL0F9vz4JMQ; Wed, 17 Jun 2020 05:14:10 +0000 (UTC) (envelope-from yuri@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 02F961B3A1; Wed, 17 Jun 2020 05:14:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05H5E973081385; Wed, 17 Jun 2020 05:14:09 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05H5E9tD081381; Wed, 17 Jun 2020 05:14:09 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202006170514.05H5E9tD081381@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 17 Jun 2020 05:14:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r539404 - in head/devel: . aixlog X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . aixlog X-SVN-Commit-Revision: 539404 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Wed, 17 Jun 2020 05:14:10 -0000 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 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