From a6077139d30dbfcfb7e2e4b8e77fa0b5879aa880 Mon Sep 17 00:00:00 2001 From: dbaio Date: Wed, 30 Aug 2017 00:25:10 +0000 Subject: 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 --- devel/Makefile | 1 + devel/py-pyqtree/Makefile | 21 +++++++++++++++++++++ devel/py-pyqtree/distinfo | 3 +++ devel/py-pyqtree/pkg-descr | 6 ++++++ 4 files changed, 31 insertions(+) create mode 100644 devel/py-pyqtree/Makefile create mode 100644 devel/py-pyqtree/distinfo create mode 100644 devel/py-pyqtree/pkg-descr (limited to 'devel') diff --git a/devel/Makefile b/devel/Makefile index 72cc31ea3692..3ec6b4743e6c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -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 diff --git a/devel/py-pyqtree/Makefile b/devel/py-pyqtree/Makefile new file mode 100644 index 000000000000..f1b0dc976bf9 --- /dev/null +++ b/devel/py-pyqtree/Makefile @@ -0,0 +1,21 @@ +# Created by: Loïc BARTOLETTI +# $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 diff --git a/devel/py-pyqtree/distinfo b/devel/py-pyqtree/distinfo new file mode 100644 index 000000000000..abdff697b59c --- /dev/null +++ b/devel/py-pyqtree/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1503871819 +SHA256 (Pyqtree-0.24.zip) = e20a8e53a2ce0db9c824eba3144a550a804bd57c28454f18f2948db9ce97b555 +SIZE (Pyqtree-0.24.zip) = 8824 diff --git a/devel/py-pyqtree/pkg-descr b/devel/py-pyqtree/pkg-descr new file mode 100644 index 000000000000..8f76ef125cfb --- /dev/null +++ b/devel/py-pyqtree/pkg-descr @@ -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 -- cgit