From owner-svn-ports-all@freebsd.org Sun Feb 28 09:40:44 2016 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 4F1E0AB727A; Sun, 28 Feb 2016 09:40:44 +0000 (UTC) (envelope-from trasz@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 10C921177; Sun, 28 Feb 2016 09:40:43 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1S9ehxJ064571; Sun, 28 Feb 2016 09:40:43 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1S9egI7064567; Sun, 28 Feb 2016 09:40:42 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201602280940.u1S9egI7064567@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Sun, 28 Feb 2016 09:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409732 - in head/devel: . objecthash 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.20 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: Sun, 28 Feb 2016 09:40:44 -0000 Author: trasz Date: Sun Feb 28 09:40:42 2016 New Revision: 409732 URL: https://svnweb.freebsd.org/changeset/ports/409732 Log: Objecthash provides a way to cryptographically hash objects (in the JSON-ish sense) that works cross-language and therefore cross-encoding. WWW: https://github.com/benlaurie/objecthash Sponsored by: The FreeBSD Foundation Added: head/devel/objecthash/ head/devel/objecthash/Makefile (contents, props changed) head/devel/objecthash/distinfo (contents, props changed) head/devel/objecthash/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 28 09:32:43 2016 (r409731) +++ head/devel/Makefile Sun Feb 28 09:40:42 2016 (r409732) @@ -1538,6 +1538,7 @@ SUBDIR += nxt-python SUBDIR += obby SUBDIR += obfuscatejs + SUBDIR += objecthash SUBDIR += ocaml-annexlib SUBDIR += ocaml-calendar SUBDIR += ocaml-camljava Added: head/devel/objecthash/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/objecthash/Makefile Sun Feb 28 09:40:42 2016 (r409732) @@ -0,0 +1,31 @@ +# Created by: Edward Tomasz Napierala +# $FreeBSD$ + +PORTNAME= objecthash +PORTVERSION= 20160121 +CATEGORIES= devel + +MAINTAINER= trasz@FreeBSD.org +COMMENT= Cross-language way to cryptographically hash JSON objects + +LICENSE= APACHE20 + +LIB_DEPENDS= libicudata.so:${PORTSDIR}/devel/icu \ + libjson-c.so:${PORTSDIR}/devel/json-c + +USES= pkgconfig +USE_GITHUB= yes +USE_LDCONFIG= yes +GH_ACCOUNT= benlaurie +GH_PROJECT= objecthash +GH_TAGNAME= 2024cf8 + +ALL_TARGET= libobjecthash.so + +PLIST_FILES= include/objecthash.h lib/libobjecthash.so + +do-install: + ${INSTALL_LIB} ${WRKSRC}/libobjecthash.so ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/objecthash.h ${STAGEDIR}${PREFIX}/include + +.include Added: head/devel/objecthash/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/objecthash/distinfo Sun Feb 28 09:40:42 2016 (r409732) @@ -0,0 +1,2 @@ +SHA256 (benlaurie-objecthash-20160121-2024cf8_GH0.tar.gz) = 036c5bb3e3d053d0297607618b7bf0c115efe43de09eb42adc207c399d203045 +SIZE (benlaurie-objecthash-20160121-2024cf8_GH0.tar.gz) = 19034 Added: head/devel/objecthash/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/objecthash/pkg-descr Sun Feb 28 09:40:42 2016 (r409732) @@ -0,0 +1,4 @@ +Objecthash provides a way to cryptographically hash objects (in the +JSON-ish sense) that works cross-language and therefore cross-encoding. + +WWW: https://github.com/benlaurie/objecthash