From owner-svn-ports-head@freebsd.org Mon Apr 16 18:55:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 192DBF9CB50; Mon, 16 Apr 2018 18:55:56 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BC26D6D4D0; Mon, 16 Apr 2018 18:55:55 +0000 (UTC) (envelope-from jwb@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 9D06A2144D; Mon, 16 Apr 2018 18:55:55 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3GIttMd081740; Mon, 16 Apr 2018 18:55:55 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3GIttSh081736; Mon, 16 Apr 2018 18:55:55 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <201804161855.w3GIttSh081736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Mon, 16 Apr 2018 18:55:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467527 - in head/math: . intervaltree X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/math: . intervaltree X-SVN-Commit-Revision: 467527 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.25 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, 16 Apr 2018 18:55:56 -0000 Author: jwb Date: Mon Apr 16 18:55:55 2018 New Revision: 467527 URL: https://svnweb.freebsd.org/changeset/ports/467527 Log: math/intervaltree: Minimal C++ interval tree implementation Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D15105 Added: head/math/intervaltree/ head/math/intervaltree/Makefile (contents, props changed) head/math/intervaltree/distinfo (contents, props changed) head/math/intervaltree/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Apr 16 18:34:38 2018 (r467526) +++ head/math/Makefile Mon Apr 16 18:55:55 2018 (r467527) @@ -263,6 +263,7 @@ SUBDIR += hs-statistics SUBDIR += hs-vector-space SUBDIR += igraph + SUBDIR += intervaltree SUBDIR += ipopt SUBDIR += ised SUBDIR += jacal Added: head/math/intervaltree/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/intervaltree/Makefile Mon Apr 16 18:55:55 2018 (r467527) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= intervaltree +DISTVERSION= g20151213 +CATEGORIES= wip math + +MAINTAINER= jwb@FreeBSD.org +COMMENT= Minimal C++ interval tree implementation + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= ekg +GH_TAGNAME= 8fc4be91866237995e1105689d84bece619f4663 + +INSTALL_TARGET= install-strip +PLIST_FILES= bin/interval_tree_test include/${PORTNAME}/IntervalTree.h + +.include + +.if ${ARCH} == i386 +post-patch: + ${REINPLACE_CMD} -e 's|||g' \ + ${WRKSRC}/interval_tree_test.cpp +.endif + +.include Added: head/math/intervaltree/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/intervaltree/distinfo Mon Apr 16 18:55:55 2018 (r467527) @@ -0,0 +1,3 @@ +TIMESTAMP = 1523601658 +SHA256 (ekg-intervaltree-g20151213-8fc4be91866237995e1105689d84bece619f4663_GH0.tar.gz) = 126f0d0d313e43cd32a07b3a2e573112f4a0e69f5d1618fa38185b93c0f6a696 +SIZE (ekg-intervaltree-g20151213-8fc4be91866237995e1105689d84bece619f4663_GH0.tar.gz) = 71387 Added: head/math/intervaltree/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/intervaltree/pkg-descr Mon Apr 16 18:55:55 2018 (r467527) @@ -0,0 +1,6 @@ +An interval tree can be used to efficiently find a set of numeric intervals +overlapping or containing another interval. This library provides a basic +implementation of an interval tree using C++ templates, allowing the insertion +of arbitrary types into the tree. + +WWW: https://github.com/ekg/intervaltree