From owner-svn-ports-all@freebsd.org Sat Jun 2 17:37:13 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3797FD5E0C; Sat, 2 Jun 2018 17:37:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AA0A56E579; Sat, 2 Jun 2018 17:37:12 +0000 (UTC) (envelope-from miwi@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 862F112E6C; Sat, 2 Jun 2018 17:37:12 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w52HbCCh082901; Sat, 2 Jun 2018 17:37:12 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w52HbBHa082897; Sat, 2 Jun 2018 17:37:11 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201806021737.w52HbBHa082897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 2 Jun 2018 17:37:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471385 - in head/graphics: . py-OWSLib X-SVN-Group: ports-head X-SVN-Commit-Author: miwi X-SVN-Commit-Paths: in head/graphics: . py-OWSLib X-SVN-Commit-Revision: 471385 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Jun 2018 17:37:13 -0000 Author: miwi Date: Sat Jun 2 17:37:11 2018 New Revision: 471385 URL: https://svnweb.freebsd.org/changeset/ports/471385 Log: OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models. WWW: https://pypi.python.org/pypi/OWSLib PR: 225294 Submitted by: lbartoletti@tuxfamily.org Sponsored by: iXsystems Inc. Added: head/graphics/py-OWSLib/ head/graphics/py-OWSLib/Makefile (contents, props changed) head/graphics/py-OWSLib/distinfo (contents, props changed) head/graphics/py-OWSLib/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Jun 2 17:35:26 2018 (r471384) +++ head/graphics/Makefile Sat Jun 2 17:37:11 2018 (r471385) @@ -916,6 +916,7 @@ SUBDIR += py-opencv SUBDIR += py-openexr SUBDIR += py-openimageio + SUBDIR += py-OWSLib SUBDIR += py-paint SUBDIR += py-photocollage SUBDIR += py-pillow Added: head/graphics/py-OWSLib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-OWSLib/Makefile Sat Jun 2 17:37:11 2018 (r471385) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= OWSLib +PORTVERSION= 0.16.0 +CATEGORIES= graphics geography python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= lbartoletti@tuxfamily.org +COMMENT= Client programming with OGC web service (hence OWS) + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyproj>0:graphics/py-pyproj@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=1.0:www/py-requests@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/graphics/py-OWSLib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-OWSLib/distinfo Sat Jun 2 17:37:11 2018 (r471385) @@ -0,0 +1,3 @@ +TIMESTAMP = 1516263913 +SHA256 (OWSLib-0.16.0.tar.gz) = ec95a5e93c145a5d84b0074b9ea27570943486552a669151140debf08a100554 +SIZE (OWSLib-0.16.0.tar.gz) = 128736 Added: head/graphics/py-OWSLib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-OWSLib/pkg-descr Sat Jun 2 17:37:11 2018 (r471385) @@ -0,0 +1,5 @@ +OWSLib is a Python package for client programming with Open Geospatial +Consortium (OGC) web service (hence OWS) interface standards, and their +related content models. + +WWW: https://pypi.python.org/pypi/OWSLib