From owner-svn-ports-all@freebsd.org Tue Apr 4 22:52:26 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 5425CD2FA9E; Tue, 4 Apr 2017 22:52:26 +0000 (UTC) (envelope-from gblach@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 0BC8990A; Tue, 4 Apr 2017 22:52:25 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v34MqPLD023006; Tue, 4 Apr 2017 22:52:25 GMT (envelope-from gblach@FreeBSD.org) Received: (from gblach@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v34MqOFT023002; Tue, 4 Apr 2017 22:52:24 GMT (envelope-from gblach@FreeBSD.org) Message-Id: <201704042252.v34MqOFT023002@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gblach set sender to gblach@FreeBSD.org using -f From: Grzegorz Blach Date: Tue, 4 Apr 2017 22:52:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437762 - in head/textproc: . uncle 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: Tue, 04 Apr 2017 22:52:26 -0000 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 +# $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 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