Date: Sun, 7 Mar 2021 22:09:36 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r567604 - in head/graphics: . py-osmnet Message-ID: <202103072209.127M9a6k026470@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Mar 7 22:09:35 2021 New Revision: 567604 URL: https://svnweb.freebsd.org/changeset/ports/567604 Log: Add py-osmnet 0.1.6 OSMnet offers tools to download street network data from OpenStreetMap and extract a graph network comprised of nodes and edges to be used in Pandana street network accessibility calculations. WWW: https://github.com/UDST/osmnet Added: head/graphics/py-osmnet/ head/graphics/py-osmnet/Makefile (contents, props changed) head/graphics/py-osmnet/distinfo (contents, props changed) head/graphics/py-osmnet/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Mar 7 22:09:29 2021 (r567603) +++ head/graphics/Makefile Sun Mar 7 22:09:35 2021 (r567604) @@ -850,6 +850,7 @@ SUBDIR += py-opencolorio SUBDIR += py-openimageio SUBDIR += py-openshadinglanguage + SUBDIR += py-osmnet SUBDIR += py-photocollage SUBDIR += py-piexif SUBDIR += py-pillow Added: head/graphics/py-osmnet/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-osmnet/Makefile Sun Mar 7 22:09:35 2021 (r567604) @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= osmnet +PORTVERSION= 0.1.6 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Tools for the extraction of OpenStreetMap street network data + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}geopandas>=0.7:graphics/py-geopandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numpy>=1.10,1:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=0.23,1:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.9.1:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Shapely>=1.5:devel/py-shapely@${PY_FLAVOR} + +USES= python:3.7+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/graphics/py-osmnet/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-osmnet/distinfo Sun Mar 7 22:09:35 2021 (r567604) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614794176 +SHA256 (osmnet-0.1.6.tar.gz) = 3cfb73317e59286797913e68ea3134205786ff1221111bbc5044b76ed8d26335 +SIZE (osmnet-0.1.6.tar.gz) = 27311 Added: head/graphics/py-osmnet/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-osmnet/pkg-descr Sun Mar 7 22:09:35 2021 (r567604) @@ -0,0 +1,5 @@ +OSMnet offers tools to download street network data from OpenStreetMap and +extract a graph network comprised of nodes and edges to be used in Pandana +street network accessibility calculations. + +WWW: https://github.com/UDST/osmnet
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103072209.127M9a6k026470>