Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Apr 2016 14:43:49 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r413264 - in head/devel: . uclcmd
Message-ID:  <201604141443.u3EEhn8W017214@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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/



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