From owner-svn-ports-head@freebsd.org Tue Feb 28 23:28:57 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C80BCF2252; Tue, 28 Feb 2017 23:28:57 +0000 (UTC) (envelope-from grembo@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 mx1.freebsd.org (Postfix) with ESMTPS id 0AC68EC0; Tue, 28 Feb 2017 23:28:56 +0000 (UTC) (envelope-from grembo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1SNSuCp098884; Tue, 28 Feb 2017 23:28:56 GMT (envelope-from grembo@FreeBSD.org) Received: (from grembo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1SNStnU098880; Tue, 28 Feb 2017 23:28:55 GMT (envelope-from grembo@FreeBSD.org) Message-Id: <201702282328.v1SNStnU098880@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: grembo set sender to grembo@FreeBSD.org using -f From: Michael Gmelin Date: Tue, 28 Feb 2017 23:28:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435110 - in head/textproc: . kiss-templates X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2017 23:28:57 -0000 Author: grembo Date: Tue Feb 28 23:28:55 2017 New Revision: 435110 URL: https://svnweb.freebsd.org/changeset/ports/435110 Log: New port: textproc/kiss-templates Type safe "Keep it simple, stupid" text templates for C++. WWW: https://github.com/rbock/kiss-templates PR: 217418 Submitted by: Andreas Sommer Added: head/textproc/kiss-templates/ head/textproc/kiss-templates/Makefile (contents, props changed) head/textproc/kiss-templates/distinfo (contents, props changed) head/textproc/kiss-templates/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Feb 28 22:54:12 2017 (r435109) +++ head/textproc/Makefile Tue Feb 28 23:28:55 2017 (r435110) @@ -372,6 +372,7 @@ SUBDIR += kibana45 SUBDIR += kibana50 SUBDIR += kibana50-x-pack + SUBDIR += kiss-templates SUBDIR += kmfl-european-latin SUBDIR += kmfl-khmer SUBDIR += kmfl-sil-ezra Added: head/textproc/kiss-templates/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/kiss-templates/Makefile Tue Feb 28 23:28:55 2017 (r435110) @@ -0,0 +1,32 @@ +# Created by: Andreas Sommer +# $FreeBSD$ + +PORTNAME= kiss-templates +PORTVERSION= 0.18 +CATEGORIES= textproc + +MAINTAINER= andreas.sommer87@googlemail.com +COMMENT= Type safe "Keep it simple, stupid" text templates for C++ + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= rbock + +PLIST_FILES= bin/kiste2cpp \ + include/kiste/html.h \ + include/kiste/kiste.h \ + include/kiste/raw.h \ + include/kiste/terminal.h + +USES= cmake + +OPTIONS_DEFINE= TEST +TEST_DESC= Build with unit tests +TEST_BUILD_DEPENDS= boost-libs>=1.55:devel/boost-libs +TEST_USES= python:2,build,test shebangfix +TEST_TEST_TARGET= test +SHEBANG_FILES= tests/comparison-based/generate.py tests/differ.py + +.include Added: head/textproc/kiss-templates/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/kiss-templates/distinfo Tue Feb 28 23:28:55 2017 (r435110) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488320042 +SHA256 (rbock-kiss-templates-0.18_GH0.tar.gz) = 9ef6441b6dff992de8a8189b35293bef2b8f1892dee2f3d1dd6d0d6d6f6fb5e9 +SIZE (rbock-kiss-templates-0.18_GH0.tar.gz) = 27930 Added: head/textproc/kiss-templates/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/kiss-templates/pkg-descr Tue Feb 28 23:28:55 2017 (r435110) @@ -0,0 +1,3 @@ +Type safe "Keep it simple, stupid" text templates for C++. + +WWW: https://github.com/rbock/kiss-templates