From owner-svn-ports-head@freebsd.org Fri May 8 20:46:36 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5AF092E1217; Fri, 8 May 2020 20:46:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49Jj6h13W2z4HsX; Fri, 8 May 2020 20:46:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9886184A3; Fri, 8 May 2020 20:46:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 048KkZEw099944; Fri, 8 May 2020 20:46:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 048KkYuT099940; Fri, 8 May 2020 20:46:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202005082046.048KkYuT099940@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 8 May 2020 20:46:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534419 - in head/graphics: . py-rasterio X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/graphics: . py-rasterio X-SVN-Commit-Revision: 534419 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.32 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 May 2020 20:46:36 -0000 Author: sunpoet Date: Fri May 8 20:46:34 2020 New Revision: 534419 URL: https://svnweb.freebsd.org/changeset/ports/534419 Log: Add py-rasterio 1.1.4 Rasterio reads and writes geospatial raster data. Geographic information systems use GeoTIFF and other formats to organize and store gridded, or raster, datasets. Rasterio reads and writes these formats and provides a Python API based on N-D arrays. WWW: https://github.com/mapbox/rasterio Added: head/graphics/py-rasterio/ head/graphics/py-rasterio/Makefile (contents, props changed) head/graphics/py-rasterio/distinfo (contents, props changed) head/graphics/py-rasterio/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Fri May 8 20:46:28 2020 (r534418) +++ head/graphics/Makefile Fri May 8 20:46:34 2020 (r534419) @@ -865,6 +865,7 @@ SUBDIR += py-pyx SUBDIR += py-qrencode SUBDIR += py-qt5-svg + SUBDIR += py-rasterio SUBDIR += py-rawkit SUBDIR += py-sane SUBDIR += py-scikit-image Added: head/graphics/py-rasterio/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-rasterio/Makefile Fri May 8 20:46:34 2020 (r534419) @@ -0,0 +1,31 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= rasterio +PORTVERSION= 1.1.4 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Fast and direct raster I/O for use with Numpy and SciPy + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= gdal>=1.11:graphics/gdal \ + ${PYNUMPY} +RUN_DEPENDS= gdal>=1.11:graphics/gdal \ + ${PYTHON_PKGNAMEPREFIX}affine>=0:math/py-affine@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}attrs>=0:devel/py-attrs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}click>=4.0<8:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}click-plugins>=0:devel/py-click-plugins@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cligj>=0.5:devel/py-cligj@${PY_FLAVOR} \ + ${PY_ENUM34} \ + ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}snuggs>=1.4.1:math/py-snuggs@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent cython distutils + +.include Added: head/graphics/py-rasterio/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-rasterio/distinfo Fri May 8 20:46:34 2020 (r534419) @@ -0,0 +1,3 @@ +TIMESTAMP = 1588930303 +SHA256 (rasterio-1.1.4.tar.gz) = 5d7393f3a690a91813022452022df1d5a3a2c732019f24f2bd0b051fd47a03c1 +SIZE (rasterio-1.1.4.tar.gz) = 2176246 Added: head/graphics/py-rasterio/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-rasterio/pkg-descr Fri May 8 20:46:34 2020 (r534419) @@ -0,0 +1,7 @@ +Rasterio reads and writes geospatial raster data. + +Geographic information systems use GeoTIFF and other formats to organize and +store gridded, or raster, datasets. Rasterio reads and writes these formats and +provides a Python API based on N-D arrays. + +WWW: https://github.com/mapbox/rasterio