Date: Tue, 14 Aug 2018 05:52:46 +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: r477135 - in head/devel: . cxxopts Message-ID: <201808140552.w7E5qkjp056455@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808140552.w7E5qkjp056455>