From owner-svn-ports-all@freebsd.org Sun Nov 8 17:49:55 2020 Return-Path: Delivered-To: svn-ports-all@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 DD8F12D10C2; Sun, 8 Nov 2020 17:49:55 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4CThTr4ym2z4fNC; Sun, 8 Nov 2020 17:49:52 +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 962C4236BF; Sun, 8 Nov 2020 17:49:50 +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 0A8Hno5L030031; Sun, 8 Nov 2020 17:49:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0A8HnnkW030026; Sun, 8 Nov 2020 17:49:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202011081749.0A8HnnkW030026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 8 Nov 2020 17:49:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554639 - in head: graphics/py-geopandas graphics/py-pyproj misc/py-kartograph X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head: graphics/py-geopandas graphics/py-pyproj misc/py-kartograph X-SVN-Commit-Revision: 554639 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.34 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: Sun, 08 Nov 2020 17:49:56 -0000 Author: sunpoet Date: Sun Nov 8 17:49:49 2020 New Revision: 554639 URL: https://svnweb.freebsd.org/changeset/ports/554639 Log: Update to 2.6.1.post1 - Add BUILD_DEPENDS - Update WWW - Take maintainership Changes: https://github.com/pyproj4/pyproj/releases PR: 250256 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 29 days) Modified: head/graphics/py-geopandas/Makefile head/graphics/py-pyproj/Makefile head/graphics/py-pyproj/distinfo head/graphics/py-pyproj/pkg-descr head/misc/py-kartograph/Makefile Modified: head/graphics/py-geopandas/Makefile ============================================================================== --- head/graphics/py-geopandas/Makefile Sun Nov 8 17:49:44 2020 (r554638) +++ head/graphics/py-geopandas/Makefile Sun Nov 8 17:49:49 2020 (r554639) @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-p ${PYTHON_PKGNAMEPREFIX}pyproj>=1.9.3:graphics/py-pyproj@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.3.0:devel/py-six@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist cython distutils NO_ARCH= yes Modified: head/graphics/py-pyproj/Makefile ============================================================================== --- head/graphics/py-pyproj/Makefile Sun Nov 8 17:49:44 2020 (r554638) +++ head/graphics/py-pyproj/Makefile Sun Nov 8 17:49:49 2020 (r554639) @@ -2,20 +2,22 @@ # $FreeBSD$ PORTNAME= pyproj -PORTVERSION= 2.1.3 +PORTVERSION= 2.6.1 +DISTVERSIONSUFFIX= .post1 CATEGORIES= graphics python geography MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= fmysh@iijmio-mail.jp +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cython wrapper to provide python interfaces to PROJ.4 functions LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= proj>=6.2.0:graphics/proj LIB_DEPENDS= libproj.so:graphics/proj -USES= python +USES= python:3.5+ USE_PYTHON= autoplist concurrent cython distutils MAKE_ENV= PROJ_DIR=${LOCALBASE} @@ -23,7 +25,7 @@ MAKE_ENV= PROJ_DIR=${LOCALBASE} PORTDOCS= * PORTDOCS1= README.md docs/* PORTEXAMPLES= sample.out \ - test.py test_awips221.py test_crs.py test_datadir.py \ + test_awips221.py test_datadir.py \ test_datum.py test_datum_shift.py test_doctest_wrapper.py \ test_exception_logging.py test_geod.py test_pickle.py \ test_transform.py test_transformer.py Modified: head/graphics/py-pyproj/distinfo ============================================================================== --- head/graphics/py-pyproj/distinfo Sun Nov 8 17:49:44 2020 (r554638) +++ head/graphics/py-pyproj/distinfo Sun Nov 8 17:49:49 2020 (r554639) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558185597 -SHA256 (pyproj-2.1.3.tar.gz) = 99c52788b01a7bb9a88024bf4d40965c0a66a93d654600b5deacf644775f424d -SIZE (pyproj-2.1.3.tar.gz) = 521154 +TIMESTAMP = 1596961504 +SHA256 (pyproj-2.6.1.post1.tar.gz) = 4f5b02b4abbd41610397c635b275a8ee4a2b5bc72a75572b98ac6ae7befa471e +SIZE (pyproj-2.6.1.post1.tar.gz) = 545482 Modified: head/graphics/py-pyproj/pkg-descr ============================================================================== --- head/graphics/py-pyproj/pkg-descr Sun Nov 8 17:49:44 2020 (r554638) +++ head/graphics/py-pyproj/pkg-descr Sun Nov 8 17:49:49 2020 (r554639) @@ -21,4 +21,4 @@ scalars or numpy/Numeric/numarray arrays. Optimized fo that support the Python buffer protocol (regular python and numpy array objects). -WWW: https://github.com/jswhit/pyproj +WWW: https://github.com/pyproj4/pyproj Modified: head/misc/py-kartograph/Makefile ============================================================================== --- head/misc/py-kartograph/Makefile Sun Nov 8 17:49:44 2020 (r554638) +++ head/misc/py-kartograph/Makefile Sun Nov 8 17:49:49 2020 (r554639) @@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>0:devel/p ${PYTHON_PKGNAMEPREFIX}Shapely>=1.0.14:devel/py-shapely@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tinycss>0:textproc/py-tinycss@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_GITHUB= yes GH_PROJECT= ${PORTNAME}.py USE_PYTHON= distutils concurrent autoplist