From owner-svn-ports-head@freebsd.org Sun Jun 12 11:56:22 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 63D74AF0462; Sun, 12 Jun 2016 11:56:22 +0000 (UTC) (envelope-from bofh@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 2F3422286; Sun, 12 Jun 2016 11:56:22 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5CBuLrB051446; Sun, 12 Jun 2016 11:56:21 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5CBuKXA051441; Sun, 12 Jun 2016 11:56:20 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201606121156.u5CBuKXA051441@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Sun, 12 Jun 2016 11:56:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416795 - in head/devel: . libfastjson 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.22 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: Sun, 12 Jun 2016 11:56:22 -0000 Author: bofh Date: Sun Jun 12 11:56:20 2016 New Revision: 416795 URL: https://svnweb.freebsd.org/changeset/ports/416795 Log: [NEW] devel/libfastjson: libfastjson is a fork from json-c The aim of this project is not to provide a slightly modified clone of json-c. It's aim is to provide * a small library with essential json handling functions * sufficiently good json support (not 100% standards compliant) * be very fast in processing In order to reach these goals, we reduce the features of json-c. For similarities and differences, see the file DIFFERENCES. WWW: https://github.com/rsyslog/libfastjson Added: head/devel/libfastjson/ head/devel/libfastjson/Makefile (contents, props changed) head/devel/libfastjson/distinfo (contents, props changed) head/devel/libfastjson/pkg-descr (contents, props changed) head/devel/libfastjson/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 12 11:10:00 2016 (r416794) +++ head/devel/Makefile Sun Jun 12 11:56:20 2016 (r416795) @@ -1206,6 +1206,7 @@ SUBDIR += libewf SUBDIR += libexecinfo SUBDIR += libexplain + SUBDIR += libfastjson SUBDIR += libffi SUBDIR += libfirm SUBDIR += libfortuna Added: head/devel/libfastjson/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfastjson/Makefile Sun Jun 12 11:56:20 2016 (r416795) @@ -0,0 +1,25 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= libfastjson +PORTVERSION= 0.99.2 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= bofh@FreeBSD.org +COMMENT= libfastjson is a fork from json-c + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= rsyslog + +GNU_CONFIGURE= yes +USES= autoreconf libtool pkgconfig +INSTALL_TARGET= install-strip + +post-patch: + ${REINPLACE_CMD} -e 's|$(libdir)/pkgconfig|$(libdir)data/pkgconfig|' \ + ${WRKSRC}/Makefile.am + +.include Added: head/devel/libfastjson/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfastjson/distinfo Sun Jun 12 11:56:20 2016 (r416795) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465730680 +SHA256 (rsyslog-libfastjson-v0.99.2_GH0.tar.gz) = fcdca0c4702362de3db3f02c8da05f985b54a9eccd618af41730409b75d10a8f +SIZE (rsyslog-libfastjson-v0.99.2_GH0.tar.gz) = 87526 Added: head/devel/libfastjson/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfastjson/pkg-descr Sun Jun 12 11:56:20 2016 (r416795) @@ -0,0 +1,11 @@ +The aim of this project is not to provide a slightly modified clone of json-c. +It's aim is to provide + +* a small library with essential json handling functions +* sufficiently good json support (not 100% standards compliant) +* be very fast in processing + +In order to reach these goals, we reduce the features of json-c. For +similarities and differences, see the file DIFFERENCES. + +WWW: https://github.com/rsyslog/libfastjson Added: head/devel/libfastjson/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfastjson/pkg-plist Sun Jun 12 11:56:20 2016 (r416795) @@ -0,0 +1,21 @@ +include/libfastjson/arraylist.h +include/libfastjson/bits.h +include/libfastjson/debug.h +include/libfastjson/json.h +include/libfastjson/json_c_version.h +include/libfastjson/json_config.h +include/libfastjson/json_inttypes.h +include/libfastjson/json_object.h +include/libfastjson/json_object_iterator.h +include/libfastjson/json_object_private.h +include/libfastjson/json_tokener.h +include/libfastjson/json_util.h +include/libfastjson/linkhash.h +include/libfastjson/math_compat.h +include/libfastjson/printbuf.h +include/libfastjson/random_seed.h +lib/libfastjson.a +lib/libfastjson.so +lib/libfastjson.so.3 +lib/libfastjson.so.3.0.0 +libdata/pkgconfig/libfastjson.pc