Date: Wed, 1 Apr 2015 11:40:02 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382906 - in head/devel: . py-intervaltree Message-ID: <201504011140.t31Be2wU029311@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504011140.t31Be2wU029311>