Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Feb 2017 14:02:33 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r434809 - in head/devel: . argdata
Message-ID:  <201702251402.v1PE2XQq072316@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <ed@FreeBSD.org>
+# $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 <bsd.port.mk>

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



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