From owner-svn-ports-head@freebsd.org Tue Aug 14 05:52:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 333BD106D5F2; Tue, 14 Aug 2018 05:52:47 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D89E2803A1; Tue, 14 Aug 2018 05:52:46 +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 B9374179A2; Tue, 14 Aug 2018 05:52:46 +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 w7E5qki6056458; Tue, 14 Aug 2018 05:52:46 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7E5qkjp056455; Tue, 14 Aug 2018 05:52:46 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201808140552.w7E5qkjp056455@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 14 Aug 2018 05:52:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477135 - in head/devel: . cxxopts X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . cxxopts X-SVN-Commit-Revision: 477135 X-SVN-Commit-Repository: ports 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.27 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, 14 Aug 2018 05:52:47 -0000 Author: yuri Date: Tue Aug 14 05:52:45 2018 New Revision: 477135 URL: https://svnweb.freebsd.org/changeset/ports/477135 Log: New port: devel/cxxopts: Lightweight C++ command line option parser Added: head/devel/cxxopts/ head/devel/cxxopts/Makefile (contents, props changed) head/devel/cxxopts/distinfo (contents, props changed) head/devel/cxxopts/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Aug 14 05:50:48 2018 (r477134) +++ head/devel/Makefile Tue Aug 14 05:52:45 2018 (r477135) @@ -415,6 +415,7 @@ SUBDIR += cx_Freeze SUBDIR += cxmon SUBDIR += cxref + SUBDIR += cxxopts SUBDIR += cxxtest SUBDIR += cxxtools SUBDIR += d-feet Added: head/devel/cxxopts/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cxxopts/Makefile Tue Aug 14 05:52:45 2018 (r477135) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= cxxopts +DISTVERSIONPREFIX= v +DISTVERSION= 2.1.1 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Lightweight C++ command line option parser + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:outsource +USE_GITHUB= yes +GH_ACCOUNT= jarro2783 +NO_ARCH= yes + +PLIST_FILES= include/cxxopts.hpp \ + lib/cmake/cxxopts/cxxopts-config-version.cmake \ + lib/cmake/cxxopts/cxxopts-config.cmake \ + lib/cmake/cxxopts/cxxopts-targets.cmake + +.include Added: head/devel/cxxopts/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cxxopts/distinfo Tue Aug 14 05:52:45 2018 (r477135) @@ -0,0 +1,3 @@ +TIMESTAMP = 1534221397 +SHA256 (jarro2783-cxxopts-v2.1.1_GH0.tar.gz) = e19216251427d04f0273e6487c0246ae2dbb4154bf178f43896af8fa1ef89f3f +SIZE (jarro2783-cxxopts-v2.1.1_GH0.tar.gz) = 87133 Added: head/devel/cxxopts/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cxxopts/pkg-descr Tue Aug 14 05:52:45 2018 (r477135) @@ -0,0 +1,12 @@ +This is a lightweight C++ option parser library, supporting the standard GNU +style syntax for options. + +Options can be given as: +* --long +* --long=argument +* --long argument +* -a +* -ab +* -abc argument + +WWW: https://github.com/jarro2783/cxxopts