From owner-svn-ports-head@freebsd.org Mon Aug 12 13:14:48 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5AA20B342E; Mon, 12 Aug 2019 13:14:48 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 466bt01k21z4L9L; Mon, 12 Aug 2019 13:14:48 +0000 (UTC) (envelope-from rodrigo@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DEF72714A; Mon, 12 Aug 2019 13:14:48 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x7CDEmij058893; Mon, 12 Aug 2019 13:14:48 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7CDElGg058890; Mon, 12 Aug 2019 13:14:47 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201908121314.x7CDElGg058890@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Mon, 12 Aug 2019 13:14:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508732 - in head/devel: . robin-map X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/devel: . robin-map X-SVN-Commit-Revision: 508732 X-SVN-Commit-Repository: ports 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.29 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: Mon, 12 Aug 2019 13:14:48 -0000 Author: rodrigo Date: Mon Aug 12 13:14:47 2019 New Revision: 508732 URL: https://svnweb.freebsd.org/changeset/ports/508732 Log: Add new port devel/robin-map, a hash map and hash set library C++ implementation of a fast hash map and hash set using open-addressing and linear robin hood hashing with backward shift deletion to resolve collisions. https://github.com/Tessil/robin-map Required to update graphics/openimageio (PR 239587) PR: 239587 Submitted by: Shane Added: head/devel/robin-map/ head/devel/robin-map/Makefile (contents, props changed) head/devel/robin-map/distinfo (contents, props changed) head/devel/robin-map/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 12 12:38:41 2019 (r508731) +++ head/devel/Makefile Mon Aug 12 13:14:47 2019 (r508732) @@ -5340,6 +5340,7 @@ SUBDIR += riscv64-xtoolchain-gcc SUBDIR += rlog SUBDIR += rlwrap + SUBDIR += robin-map SUBDIR += roboctl SUBDIR += robodoc SUBDIR += root-doc Added: head/devel/robin-map/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/robin-map/Makefile Mon Aug 12 13:14:47 2019 (r508732) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= robin-map +DISTVERSIONPREFIX= v +DISTVERSION= 0.6.1 +CATEGORIES= devel + +MAINTAINER= FreeBSD@Shaneware.biz +COMMENT= Fast hash map and hash set + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= Tessil + +NO_BUILD= yes + +PLIST_FILES= include/tsl/robin_growth_policy.h \ + include/tsl/robin_hash.h \ + include/tsl/robin_map.h \ + include/tsl/robin_set.h + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/tsl + ${INSTALL_DATA} ${WRKSRC}/include/tsl/* ${STAGEDIR}${PREFIX}/include/tsl/ + +.include Added: head/devel/robin-map/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/robin-map/distinfo Mon Aug 12 13:14:47 2019 (r508732) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557648905 +SHA256 (Tessil-robin-map-v0.6.1_GH0.tar.gz) = c196a7d6a4e4ef9672ec280bbd9404003c360ac74a480a629b75cbbc84870304 +SIZE (Tessil-robin-map-v0.6.1_GH0.tar.gz) = 61705 Added: head/devel/robin-map/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/robin-map/pkg-descr Mon Aug 12 13:14:47 2019 (r508732) @@ -0,0 +1,5 @@ +A C++ implementation of a fast hash map and hash set using +open-addressing and linear robin hood hashing with backward +shift deletion to resolve collisions. + +WWW: https://github.com/Tessil/robin-map