Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Apr 2017 22:52:24 +0000 (UTC)
From:      Grzegorz Blach <gblach@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r437762 - in head/textproc: . uncle
Message-ID:  <201704042252.v34MqOFT023002@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gblach
Date: Tue Apr  4 22:52:24 2017
New Revision: 437762
URL: https://svnweb.freebsd.org/changeset/ports/437762

Log:
  Add new port: textproc/uncle
  
  Uncle is a tool, which can convert UCL config file to the following formats:
  - Human readable config
  - Fine formated JSON
  - Compacted JSON
  - Embedded YAML
  - Msgpack

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Tue Apr  4 22:43:09 2017	(r437761)
+++ head/textproc/Makefile	Tue Apr  4 22:52:24 2017	(r437762)
@@ -1689,6 +1689,7 @@
     SUBDIR += uim-m17nlib
     SUBDIR += uim-qt4
     SUBDIR += uml2svg
+    SUBDIR += uncle
     SUBDIR += uncrustify
     SUBDIR += uni2ascii
     SUBDIR += unoconv

Added: head/textproc/uncle/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uncle/Makefile	Tue Apr  4 22:52:24 2017	(r437762)
@@ -0,0 +1,20 @@
+# Created by: Grzegorz Blach <gblach@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	uncle
+PORTVERSION=	0.1
+CATEGORIES=	textproc
+
+MAINTAINER=	gblach@FreeBSD.org
+COMMENT=	Convert UCL config file to desired format
+
+LICENSE=	BSD2CLAUSE
+
+LIB_DEPENDS=	libucl.so:textproc/libucl
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	MagikBSD
+
+PLIST_FILES=	bin/uncle
+
+.include <bsd.port.mk>

Added: head/textproc/uncle/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uncle/distinfo	Tue Apr  4 22:52:24 2017	(r437762)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1491346026
+SHA256 (MagikBSD-uncle-0.1_GH0.tar.gz) = 3de8049f4f8a9e81c921c0b8cbf6db802e2a83061dfd91512eab1da001bd5398
+SIZE (MagikBSD-uncle-0.1_GH0.tar.gz) = 2493

Added: head/textproc/uncle/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/uncle/pkg-descr	Tue Apr  4 22:52:24 2017	(r437762)
@@ -0,0 +1,8 @@
+Uncle is a tool, which can convert UCL config file to the following formats:
+- Human readable config
+- Fine formated JSON
+- Compacted JSON
+- Embedded YAML
+- Msgpack
+
+WWW: https://github.com/MagikBSD/uncle



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