From owner-svn-ports-head@freebsd.org Thu Apr 14 14:43:51 2016 Return-Path: Delivered-To: svn-ports-head@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 13299B10F30; Thu, 14 Apr 2016 14:43:51 +0000 (UTC) (envelope-from amdmi3@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 CA0671F2D; Thu, 14 Apr 2016 14:43:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3EEhob9017218; Thu, 14 Apr 2016 14:43:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3EEhn8W017214; Thu, 14 Apr 2016 14:43:49 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201604141443.u3EEhn8W017214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 14 Apr 2016 14:43:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413264 - in head/devel: . uclcmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 14:43:51 -0000 Author: amdmi3 Date: Thu Apr 14 14:43:49 2016 New Revision: 413264 URL: https://svnweb.freebsd.org/changeset/ports/413264 Log: Add devel/uclcmd uclcmd is a command line tool for working with UCL config files. Designed to be somewhat compatible with jq by implementing a very similar syntax. WWW: https://github.com/allanjude/uclcmd/ PR: 208332 Submitted by: xmj@FreeBSD.org Added: head/devel/uclcmd/ head/devel/uclcmd/Makefile (contents, props changed) head/devel/uclcmd/distinfo (contents, props changed) head/devel/uclcmd/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Apr 14 14:28:04 2016 (r413263) +++ head/devel/Makefile Thu Apr 14 14:43:49 2016 (r413264) @@ -4305,8 +4305,8 @@ SUBDIR += py-pyrfc3339 SUBDIR += py-pyro SUBDIR += py-pyshapelib - SUBDIR += py-pytemplate SUBDIR += py-pyte + SUBDIR += py-pytemplate SUBDIR += py-pytest SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog @@ -5368,6 +5368,7 @@ SUBDIR += ua_parser-core SUBDIR += uatraits SUBDIR += uboot-mkimage + SUBDIR += uclcmd SUBDIR += uclmmbase SUBDIR += ucommon SUBDIR += ucpp Added: head/devel/uclcmd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/uclcmd/Makefile Thu Apr 14 14:43:49 2016 (r413264) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= uclcmd +PORTVERSION= 0.1 +CATEGORIES= devel + +MAINTAINER= xmj@chaot.net +COMMENT= Command line tool for working with UCL config files + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libucl.so:textproc/libucl + +USE_GITHUB= yes +GH_ACCOUNT= allanjude +GH_TAGNAME= 0d336e9 + +USES= pkgconfig +PLIST_FILES= bin/uclcmd + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/devel/uclcmd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/uclcmd/distinfo Thu Apr 14 14:43:49 2016 (r413264) @@ -0,0 +1,2 @@ +SHA256 (allanjude-uclcmd-0.1-0d336e9_GH0.tar.gz) = ae133c099cfbef5785250dd445f7542fd75ca5ba587b24d0dbce7a3bd06af6d9 +SIZE (allanjude-uclcmd-0.1-0d336e9_GH0.tar.gz) = 18937 Added: head/devel/uclcmd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/uclcmd/pkg-descr Thu Apr 14 14:43:49 2016 (r413264) @@ -0,0 +1,6 @@ +uclcmd is a command line tool for working with UCL config files. + +Designed to be somewhat compatible with jq by implementing a very similar +syntax. + +WWW: https://github.com/allanjude/uclcmd/