Date: Sun, 8 Nov 2020 17:11:07 +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: r554483 - in head/www: . py-sentinelhub Message-ID: <202011081711.0A8HB7hE087848@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Nov 8 17:11:06 2020 New Revision: 554483 URL: https://svnweb.freebsd.org/changeset/ports/554483 Log: Add py-sentinelhub 3.1.0 The sentinelhub Python package allows users to make OGC (WMS and WCS) web requests to download and process satellite images within your Python scripts. It supports Sentinel-2 L1C and L2A, Sentinel-1, Landsat 8, MODIS and DEM data source. The package also supports obtaining data from Amazon Web Service. It can either provide data from public bucket with Sentinel-2 L1C imagery or requester pays bucket with Sentinel-2 L2A imagery. If specified the downloaded data can be stored in ESA .SAFE format (all types of .SAFE format are supported). WWW: https://github.com/sentinel-hub/sentinelhub-py Added: head/www/py-sentinelhub/ head/www/py-sentinelhub/Makefile (contents, props changed) head/www/py-sentinelhub/distinfo (contents, props changed) head/www/py-sentinelhub/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Nov 8 17:11:01 2020 (r554482) +++ head/www/Makefile Sun Nov 8 17:11:06 2020 (r554483) @@ -1711,6 +1711,7 @@ SUBDIR += py-secure-cookie SUBDIR += py-selector SUBDIR += py-selenium + SUBDIR += py-sentinelhub SUBDIR += py-slimit SUBDIR += py-slumber SUBDIR += py-sockjs-tornado Added: head/www/py-sentinelhub/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-sentinelhub/Makefile Sun Nov 8 17:11:06 2020 (r554483) @@ -0,0 +1,43 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= sentinelhub +PORTVERSION= 3.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Sentinel Hub Utilities + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aenum>=2.1.4:devel/py-aenum@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}boto3>=0:www/py-boto3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}botocore>=0:devel/py-botocore@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}click>=0:devel/py-click@${PY_FLAVOR} \ + ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}oauthlib>=0:security/py-oauthlib@${PY_FLAVOR} \ + ${PY_PILLOW} \ + ${PYTHON_PKGNAMEPREFIX}pyproj>=2.2.0:graphics/py-pyproj@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.5.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>=0:www/py-requests-oauthlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Shapely>=0:devel/py-shapely@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tifffile>=0:graphics/py-tifffile@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}utm>=0:graphics/py-utm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.pre.mk> + +.if ${PYTHON_REL} < 3700 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dataclasses>=0:devel/py-dataclasses@${PY_FLAVOR} +.endif + +.include <bsd.port.post.mk> Added: head/www/py-sentinelhub/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-sentinelhub/distinfo Sun Nov 8 17:11:06 2020 (r554483) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604680066 +SHA256 (sentinelhub-3.1.0.tar.gz) = e474e8c0d2d7fb211ba1818e702f97863ff1c697de8431f094f8d8a5d0832577 +SIZE (sentinelhub-3.1.0.tar.gz) = 186091 Added: head/www/py-sentinelhub/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-sentinelhub/pkg-descr Sun Nov 8 17:11:06 2020 (r554483) @@ -0,0 +1,11 @@ +The sentinelhub Python package allows users to make OGC (WMS and WCS) web +requests to download and process satellite images within your Python scripts. It +supports Sentinel-2 L1C and L2A, Sentinel-1, Landsat 8, MODIS and DEM data +source. + +The package also supports obtaining data from Amazon Web Service. It can either +provide data from public bucket with Sentinel-2 L1C imagery or requester pays +bucket with Sentinel-2 L2A imagery. If specified the downloaded data can be +stored in ESA .SAFE format (all types of .SAFE format are supported). + +WWW: https://github.com/sentinel-hub/sentinelhub-py
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011081711.0A8HB7hE087848>