svn commit: r382906 - in head/devel: . py-intervaltree

Antoine Brodin antoine at FreeBSD.org
Wed Apr 1 11:40:04 UTC 2015


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 at FreeBSD.org
+# $FreeBSD$
+
+PORTNAME=	intervaltree
+PORTVERSION=	2.0.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	antoine at 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


More information about the svn-ports-head mailing list