From owner-svn-ports-all@freebsd.org Sat Feb 25 14:02:35 2017 Return-Path: Delivered-To: svn-ports-all@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 0A64ECECF75; Sat, 25 Feb 2017 14:02:35 +0000 (UTC) (envelope-from ed@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 D6987956; Sat, 25 Feb 2017 14:02:34 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1PE2XBD072321; Sat, 25 Feb 2017 14:02:33 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1PE2XQq072316; Sat, 25 Feb 2017 14:02:33 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201702251402.v1PE2XQq072316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Sat, 25 Feb 2017 14:02:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434809 - in head/devel: . argdata X-SVN-Group: ports-head 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.23 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: Sat, 25 Feb 2017 14:02:35 -0000 Author: ed (src committer) Date: Sat Feb 25 14:02:33 2017 New Revision: 434809 URL: https://svnweb.freebsd.org/changeset/ports/434809 Log: Add Argdata. The existing cloudabi-utils package has a copy of a library called Argdata integrated. Future versions of cloudabi-utils will no longer ship with it, as Argdata can be used independently of CloudABI. This change introduces a new devel/argdata port, which can be used by future versions of cloudabi-utils. Approved by: bapt Differential Revision: https://reviews.freebsd.org/D9799 Added: head/devel/argdata/ head/devel/argdata/Makefile (contents, props changed) head/devel/argdata/distinfo (contents, props changed) head/devel/argdata/pkg-descr (contents, props changed) head/devel/argdata/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Feb 25 13:50:59 2017 (r434808) +++ head/devel/Makefile Sat Feb 25 14:02:33 2017 (r434809) @@ -106,6 +106,7 @@ SUBDIR += arduino-sevseg SUBDIR += arduino-tools SUBDIR += arduino16 + SUBDIR += argdata SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argtable Added: head/devel/argdata/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/argdata/Makefile Sat Feb 25 14:02:33 2017 (r434809) @@ -0,0 +1,20 @@ +# Created by: Ed Schouten +# $FreeBSD$ + +PORTNAME= argdata +PORTVERSION= 0.1 +DISTVERSIONPREFIX=v +CATEGORIES= devel + +MAINTAINER= ed@FreeBSD.org +COMMENT= Binary serialisation format inspired by YAML, MessagePack and nvlists + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= NuxiNL + +USES= cmake compiler:c11 tar:xz +USE_LDCONFIG= yes + +.include Added: head/devel/argdata/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/argdata/distinfo Sat Feb 25 14:02:33 2017 (r434809) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488022001 +SHA256 (NuxiNL-argdata-v0.1_GH0.tar.gz) = 1fd26745e72382b9e0eda042154b3219682de980f6cdd15f574f9d4288b7df79 +SIZE (NuxiNL-argdata-v0.1_GH0.tar.gz) = 18787 Added: head/devel/argdata/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/argdata/pkg-descr Sat Feb 25 14:02:33 2017 (r434809) @@ -0,0 +1,14 @@ +Argdata is a binary serialisation format similar to FreeBSD's nvlists. +It differs from nvlists in that it uses data types that are more similar +to YAML. + +Argdata is used by CloudABI as a replacement for string command line +arguments and environment variables. CloudABI processes can start new +processes by passing them a YAML-like tree of arguments, having file +descriptors of resources annotated to the tree. + +This package provides a native port of the Argdata library, so that it +can be used in native FreeBSD applications, but also to spawn CloudABI +processes appropriately. + +WWW: https://github.com/NuxiNL/argdata Added: head/devel/argdata/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/argdata/pkg-plist Sat Feb 25 14:02:33 2017 (r434809) @@ -0,0 +1,4 @@ +include/argdata.h +include/argdata.hpp +lib/libargdata.so +lib/libargdata.so.1