From owner-svn-ports-all@freebsd.org Mon Feb 1 18:18:05 2021 Return-Path: Delivered-To: svn-ports-all@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 C426153177D; Mon, 1 Feb 2021 18:18:05 +0000 (UTC) (envelope-from yuri@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DTx594lrVz4WfB; Mon, 1 Feb 2021 18:18:05 +0000 (UTC) (envelope-from yuri@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 9618E1FC34; Mon, 1 Feb 2021 18:18:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 111II5PR068163; Mon, 1 Feb 2021 18:18:05 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 111II4xe068158; Mon, 1 Feb 2021 18:18:04 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202102011818.111II4xe068158@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 1 Feb 2021 18:18:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r563604 - in head/devel: . parallel-hashmap X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . parallel-hashmap X-SVN-Commit-Revision: 563604 X-SVN-Commit-Repository: ports 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.34 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: Mon, 01 Feb 2021 18:18:05 -0000 Author: yuri Date: Mon Feb 1 18:18:04 2021 New Revision: 563604 URL: https://svnweb.freebsd.org/changeset/ports/563604 Log: New port: devel/parallel-hashmap: Set of excellent hash map implementations (a C++ header-only library) Added: head/devel/parallel-hashmap/ head/devel/parallel-hashmap/Makefile (contents, props changed) head/devel/parallel-hashmap/distinfo (contents, props changed) head/devel/parallel-hashmap/pkg-descr (contents, props changed) head/devel/parallel-hashmap/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Feb 1 18:01:32 2021 (r563603) +++ head/devel/Makefile Mon Feb 1 18:18:04 2021 (r563604) @@ -3694,6 +3694,7 @@ SUBDIR += pam_wrapper SUBDIR += papi SUBDIR += papilio-loader + SUBDIR += parallel-hashmap SUBDIR += pas2dox SUBDIR += pasm SUBDIR += patch Added: head/devel/parallel-hashmap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/parallel-hashmap/Makefile Mon Feb 1 18:18:04 2021 (r563604) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= parallel-hashmap +DISTVERSION= 1.32-74 +DISTVERSIONSUFFIX= -g2af41f7 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Set of excellent hash map implementations (a C++ header-only library) + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake + +USE_GITHUB= yes +GH_ACCOUNT= greg7mdp + +NO_BUILD= yes +NO_ARCH= yes + +do-test: # clones googletest + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DPHMAP_BUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test + +.include Added: head/devel/parallel-hashmap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/parallel-hashmap/distinfo Mon Feb 1 18:18:04 2021 (r563604) @@ -0,0 +1,3 @@ +TIMESTAMP = 1612202853 +SHA256 (greg7mdp-parallel-hashmap-1.32-74-g2af41f7_GH0.tar.gz) = ed1afca101ce1e4838773c96aa54529332ae0d1e387cf8bade53e3a99b409815 +SIZE (greg7mdp-parallel-hashmap-1.32-74-g2af41f7_GH0.tar.gz) = 1994745 Added: head/devel/parallel-hashmap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/parallel-hashmap/pkg-descr Mon Feb 1 18:18:04 2021 (r563604) @@ -0,0 +1,4 @@ +The Parallel Hashmap is a set of excellent hash map implementations, as well as +a btree alternative to std::map and std::set + +WWW: https://github.com/greg7mdp/parallel-hashmap Added: head/devel/parallel-hashmap/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/parallel-hashmap/pkg-plist Mon Feb 1 18:18:04 2021 (r563604) @@ -0,0 +1,10 @@ +include/parallel_hashmap/btree.h +include/parallel_hashmap/conanfile.py +include/parallel_hashmap/meminfo.h +include/parallel_hashmap/phmap.h +include/parallel_hashmap/phmap_base.h +include/parallel_hashmap/phmap_bits.h +include/parallel_hashmap/phmap_config.h +include/parallel_hashmap/phmap_dump.h +include/parallel_hashmap/phmap_fwd_decl.h +include/parallel_hashmap/phmap_utils.h