Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Aug 2017 00:25:10 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448950 - in head/devel: . py-pyqtree
Message-ID:  <201708300025.v7U0PAMl017732@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Wed Aug 30 00:25:10 2017
New Revision: 448950
URL: https://svnweb.freebsd.org/changeset/ports/448950

Log:
  New port devel/py-pyqtree: Pure Python quad tree spatial index for GIS or rendering usage
  
  Pyqtree is a pure Python spatial index for GIS or rendering usage. It storesand
  quickly retrieves items from a 2x2 rectangular grid area, and grows in depth and
  detail as more items are added. The actual quad tree implementation is adapted
  from Matt Rasmussen's compbio library and extended for geospatial use.
  
  WWW: https://github.com/karimbahgat/Pyqtree
  
  PR:		221730
  Submitted by:	lbartoletti@tuxfamily.org

Added:
  head/devel/py-pyqtree/
  head/devel/py-pyqtree/Makefile   (contents, props changed)
  head/devel/py-pyqtree/distinfo   (contents, props changed)
  head/devel/py-pyqtree/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Aug 30 00:17:03 2017	(r448949)
+++ head/devel/Makefile	Wed Aug 30 00:25:10 2017	(r448950)
@@ -4685,6 +4685,7 @@
     SUBDIR += py-pyperclip
     SUBDIR += py-pypugjs
     SUBDIR += py-pyqi
+    SUBDIR += py-pyqtree
     SUBDIR += py-pyral
     SUBDIR += py-pyrfc3339
     SUBDIR += py-pyro

Added: head/devel/py-pyqtree/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyqtree/Makefile	Wed Aug 30 00:25:10 2017	(r448950)
@@ -0,0 +1,21 @@
+# Created by: Loïc BARTOLETTI <lbartoletti@tuxfamily.org>
+# $FreeBSD$
+
+PORTNAME=	pyqtree
+PORTVERSION=	0.24
+CATEGORIES=	devel python geography
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	Pyqtree-${PORTVERSION}
+
+MAINTAINER=	lbartoletti@tuxfamily.org
+COMMENT=	Pure Python quad tree spatial index for GIS or rendering usage
+
+LICENSE=	MIT
+
+NO_ARCH=	yes
+
+USES=		python zip
+USE_PYTHON=	autoplist concurrent distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-pyqtree/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyqtree/distinfo	Wed Aug 30 00:25:10 2017	(r448950)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1503871819
+SHA256 (Pyqtree-0.24.zip) = e20a8e53a2ce0db9c824eba3144a550a804bd57c28454f18f2948db9ce97b555
+SIZE (Pyqtree-0.24.zip) = 8824

Added: head/devel/py-pyqtree/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pyqtree/pkg-descr	Wed Aug 30 00:25:10 2017	(r448950)
@@ -0,0 +1,6 @@
+Pyqtree is a pure Python spatial index for GIS or rendering usage. It storesand
+quickly retrieves items from a 2x2 rectangular grid area, and grows in depth and
+detail as more items are added. The actual quad tree implementation is adapted
+from Matt Rasmussen's compbio library and extended for geospatial use.
+
+WWW: https://github.com/karimbahgat/Pyqtree



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708300025.v7U0PAMl017732>