From owner-svn-ports-head@FreeBSD.ORG Wed Apr 1 11:40:04 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8663E584; Wed, 1 Apr 2015 11:40:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 672D3EFC; Wed, 1 Apr 2015 11:40:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t31Be4Ak029326; Wed, 1 Apr 2015 11:40:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t31Be2wU029311; Wed, 1 Apr 2015 11:40:02 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201504011140.t31Be2wU029311@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 1 Apr 2015 11:40:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382906 - in head/devel: . py-intervaltree 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.18-1 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: Wed, 01 Apr 2015 11:40:04 -0000 Author: antoine Date: Wed Apr 1 11:40:02 2015 New Revision: 382906 URL: https://svnweb.freebsd.org/changeset/ports/382906 QAT: https://qat.redports.org/buildarchive/r382906/ Log: New port: devel/py-intervaltree A mutable, self-balancing interval tree for Python 2 and 3. Queries may be by point, by range overlap, or by range envelopment. This library was designed to allow tagging text and time intervals, where the intervals include the lower bound but not the upper bound. WWW: https://github.com/chaimleib/intervaltree Added: head/devel/py-intervaltree/ head/devel/py-intervaltree/Makefile (contents, props changed) head/devel/py-intervaltree/distinfo (contents, props changed) head/devel/py-intervaltree/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Apr 1 11:35:51 2015 (r382905) +++ head/devel/Makefile Wed Apr 1 11:40:02 2015 (r382906) @@ -3862,6 +3862,7 @@ SUBDIR += py-initgroups SUBDIR += py-instant SUBDIR += py-interface + SUBDIR += py-intervaltree SUBDIR += py-ioflo SUBDIR += py-ipaddr SUBDIR += py-ipdb Added: head/devel/py-intervaltree/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-intervaltree/Makefile Wed Apr 1 11:40:02 2015 (r382906) @@ -0,0 +1,21 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= intervaltree +PORTVERSION= 2.0.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Editable interval tree data structure for Python 2 and 3 + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sortedcontainers>=0:${PORTSDIR}/devel/py-sortedcontainers + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-intervaltree/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-intervaltree/distinfo Wed Apr 1 11:40:02 2015 (r382906) @@ -0,0 +1,2 @@ +SHA256 (intervaltree-2.0.4.tar.gz) = d5c45ce8874ef04303c02b66327793320aa2027cf25c89188f74be69beaa3c5f +SIZE (intervaltree-2.0.4.tar.gz) = 35476 Added: head/devel/py-intervaltree/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-intervaltree/pkg-descr Wed Apr 1 11:40:02 2015 (r382906) @@ -0,0 +1,6 @@ +A mutable, self-balancing interval tree for Python 2 and 3. Queries may be by +point, by range overlap, or by range envelopment. This library was designed to +allow tagging text and time intervals, where the intervals include the lower +bound but not the upper bound. + +WWW: https://github.com/chaimleib/intervaltree