Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 May 2019 16:28:59 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501383 - in head/devel: . clipp
Message-ID:  <201905121628.x4CGSxsm002969@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun May 12 16:28:59 2019
New Revision: 501383
URL: https://svnweb.freebsd.org/changeset/ports/501383

Log:
  Add clipp 1.2.3
  
  Clipp is an easy to use, powerful and expressive command line argument handling
  for C++11/14/17 contained in a single header file.
  
  WWW: https://github.com/muellan/clipp

Added:
  head/devel/clipp/
  head/devel/clipp/Makefile   (contents, props changed)
  head/devel/clipp/distinfo   (contents, props changed)
  head/devel/clipp/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun May 12 14:39:29 2019	(r501382)
+++ head/devel/Makefile	Sun May 12 16:28:59 2019	(r501383)
@@ -323,6 +323,7 @@
     SUBDIR += clig
     SUBDIR += cligen
     SUBDIR += clinfo
+    SUBDIR += clipp
     SUBDIR += clisp-hyperspec
     SUBDIR += clixon
     SUBDIR += clojure-cider

Added: head/devel/clipp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/clipp/Makefile	Sun May 12 16:28:59 2019	(r501383)
@@ -0,0 +1,27 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	clipp
+PORTVERSION=	1.2.3
+DISTVERSIONPREFIX=	v
+CATEGORIES=	devel
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Command line interfaces for modern C++
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+PLIST_FILES=	include/clipp.h
+
+GH_ACCOUNT=	muellan
+USE_GITHUB=	yes
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/include/
+	${INSTALL_DATA} ${WRKSRC}/include/clipp.h ${STAGEDIR}${PREFIX}/include/
+
+.include <bsd.port.mk>

Added: head/devel/clipp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/clipp/distinfo	Sun May 12 16:28:59 2019	(r501383)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1557535303
+SHA256 (muellan-clipp-v1.2.3_GH0.tar.gz) = 73da8e3d354fececdea99f7deb79d0343647349563ace3eafb7f4cca6e86e90b
+SIZE (muellan-clipp-v1.2.3_GH0.tar.gz) = 128251

Added: head/devel/clipp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/clipp/pkg-descr	Sun May 12 16:28:59 2019	(r501383)
@@ -0,0 +1,4 @@
+Clipp is an easy to use, powerful and expressive command line argument handling
+for C++11/14/17 contained in a single header file.
+
+WWW: https://github.com/muellan/clipp



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905121628.x4CGSxsm002969>