Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Nov 2014 02:35:03 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r373527 - in head/textproc: . libucl
Message-ID:  <201411280235.sAS2Z3QU007797@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Fri Nov 28 02:35:02 2014
New Revision: 373527
URL: https://svnweb.freebsd.org/changeset/ports/373527
QAT: https://qat.redports.org/buildarchive/r373527/

Log:
  textproc/libucl: Universal configuration library parser [NEW]
  
  Libucl is a parser and C API to parse and generate ucl objects. Libucl
  consists of several groups of functions:
  
   * Parser functions
   * Emitting functions
   * Conversion functions
   * Generation functions
   * Iteration functions
   * Validation functions
   * Utility functions
  
  WWW: https://github.com/vstakhov/libucl
  
  Requested by:	lattera

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Nov 28 02:12:42 2014	(r373526)
+++ head/textproc/Makefile	Fri Nov 28 02:35:02 2014	(r373527)
@@ -379,6 +379,7 @@
     SUBDIR += libtextcat
     SUBDIR += libtranslate
     SUBDIR += libtre
+    SUBDIR += libucl
     SUBDIR += libunibreak
     SUBDIR += libuninameslist
     SUBDIR += libvisio

Added: head/textproc/libucl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libucl/Makefile	Fri Nov 28 02:35:02 2014	(r373527)
@@ -0,0 +1,29 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libucl
+PORTVERSION=	0.5.2
+CATEGORIES=	textproc devel
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	Universal configuration library parser
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USES=		autoreconf gmake libtool pathfix pkgconfig
+USE_GITHUB=	yes
+USE_LDCONFIG=	yes
+
+GNU_CONFIGURE=	yes
+
+GH_ACCOUNT=	vstakhov
+GH_PROJECT=	${PORTNAME}
+GH_COMMIT=	b400246
+
+PATHFIX_MAKEFILEIN=	Makefile.am
+
+INSTALL_TARGET=	install-strip
+CONFLICTS_INSTALL=	ucl
+
+.include <bsd.port.mk>

Added: head/textproc/libucl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libucl/distinfo	Fri Nov 28 02:35:02 2014	(r373527)
@@ -0,0 +1,2 @@
+SHA256 (libucl-0.5.2.tar.gz) = 8c09b6b341ba2ad1a8a54a4c876a997abeecb99a0462f779d389258ce1334083
+SIZE (libucl-0.5.2.tar.gz) = 1969526

Added: head/textproc/libucl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libucl/pkg-descr	Fri Nov 28 02:35:02 2014	(r373527)
@@ -0,0 +1,12 @@
+Libucl is a parser and C API to parse and generate ucl objects. Libucl
+consists of several groups of functions:
+
+ * Parser functions
+ * Emitting functions
+ * Conversion functions
+ * Generation functions
+ * Iteration functions
+ * Validation functions
+ * Utility functions
+
+WWW: https://github.com/vstakhov/libucl

Added: head/textproc/libucl/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libucl/pkg-plist	Fri Nov 28 02:35:02 2014	(r373527)
@@ -0,0 +1,7 @@
+include/ucl.h
+lib/libucl.a
+lib/libucl.so
+lib/libucl.so.0
+lib/libucl.so.0.2.0
+libdata/pkgconfig/libucl.pc
+man/man3/libucl.3.gz



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