From owner-svn-ports-head@freebsd.org Sat Dec 19 20:10:28 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 4FD3B4CFBAA; Sat, 19 Dec 2020 20:10:28 +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 4Cyxg62t2Dz4fSc; Sat, 19 Dec 2020 20:10:25 +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 146262331C; Sat, 19 Dec 2020 20:10:23 +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 0BJKAMRl002478; Sat, 19 Dec 2020 20:10:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BJKAMae002475; Sat, 19 Dec 2020 20:10:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202012192010.0BJKAMae002475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 19 Dec 2020 20:10:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558536 - head/graphics/py-pyproj X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/graphics/py-pyproj X-SVN-Commit-Revision: 558536 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.34 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: Sat, 19 Dec 2020 20:10:28 -0000 Author: sunpoet Date: Sat Dec 19 20:10:22 2020 New Revision: 558536 URL: https://svnweb.freebsd.org/changeset/ports/558536 Log: Update to 3.0.0.post1 Changes: https://github.com/pyproj4/pyproj/releases Added: head/graphics/py-pyproj/pkg-plist (contents, props changed) Modified: head/graphics/py-pyproj/Makefile head/graphics/py-pyproj/distinfo Modified: head/graphics/py-pyproj/Makefile ============================================================================== --- head/graphics/py-pyproj/Makefile Sat Dec 19 20:10:17 2020 (r558535) +++ head/graphics/py-pyproj/Makefile Sat Dec 19 20:10:22 2020 (r558536) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pyproj -PORTVERSION= 2.6.1 -PORTREVISION= 2 +PORTVERSION= 3.0.0 DISTVERSIONSUFFIX= .post1 CATEGORIES= graphics python geography MASTER_SITES= CHEESESHOP @@ -15,35 +14,26 @@ COMMENT= Cython wrapper to provide python interfaces t LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= proj>=6.2.0:graphics/proj +BUILD_DEPENDS= proj>=7.2.0,1:graphics/proj LIB_DEPENDS= libproj.so:graphics/proj -USES= python:3.5+ +USES= python:3.6+ USE_PYTHON= autoplist concurrent cython distutils MAKE_ENV= PROJ_DIR=${LOCALBASE} -PORTDOCS= * -PORTDOCS1= README.md docs/* -PORTEXAMPLES= sample.out \ - 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 - OPTIONS_DEFINE= DOCS EXAMPLES post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/_proj.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyproj/*.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC}/docs/ && \ - ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR} "! -name .buildinfo" ) + cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/test/,} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/test/sample.out ${WRKSRC}/test/test_*.py ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/graphics/py-pyproj/distinfo ============================================================================== --- head/graphics/py-pyproj/distinfo Sat Dec 19 20:10:17 2020 (r558535) +++ head/graphics/py-pyproj/distinfo Sat Dec 19 20:10:22 2020 (r558536) @@ -1,3 +1,3 @@ -TIMESTAMP = 1596961504 -SHA256 (pyproj-2.6.1.post1.tar.gz) = 4f5b02b4abbd41610397c635b275a8ee4a2b5bc72a75572b98ac6ae7befa471e -SIZE (pyproj-2.6.1.post1.tar.gz) = 545482 +TIMESTAMP = 1608366160 +SHA256 (pyproj-3.0.0.post1.tar.gz) = a49581629cadd29e61fc061d153a4d62ff28b4063c71fe8ca881eeb98cd22017 +SIZE (pyproj-3.0.0.post1.tar.gz) = 663801 Added: head/graphics/py-pyproj/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyproj/pkg-plist Sat Dec 19 20:10:22 2020 (r558536) @@ -0,0 +1,57 @@ +%%PORTDOCS%%%%DOCSDIR%%/README.md +%%PORTDOCS%%%%DOCSDIR%%/advanced_examples.rst +%%PORTDOCS%%%%DOCSDIR%%/api/aoi.rst +%%PORTDOCS%%%%DOCSDIR%%/api/crs/coordinate_operation.rst +%%PORTDOCS%%%%DOCSDIR%%/api/crs/coordinate_system.rst +%%PORTDOCS%%%%DOCSDIR%%/api/crs/crs.rst +%%PORTDOCS%%%%DOCSDIR%%/api/crs/datum.rst +%%PORTDOCS%%%%DOCSDIR%%/api/crs/enums.rst +%%PORTDOCS%%%%DOCSDIR%%/api/crs/index.rst +%%PORTDOCS%%%%DOCSDIR%%/api/database.rst +%%PORTDOCS%%%%DOCSDIR%%/api/datadir.rst +%%PORTDOCS%%%%DOCSDIR%%/api/enums.rst +%%PORTDOCS%%%%DOCSDIR%%/api/exceptions.rst +%%PORTDOCS%%%%DOCSDIR%%/api/geod.rst +%%PORTDOCS%%%%DOCSDIR%%/api/global_context.rst +%%PORTDOCS%%%%DOCSDIR%%/api/index.rst +%%PORTDOCS%%%%DOCSDIR%%/api/list.rst +%%PORTDOCS%%%%DOCSDIR%%/api/network.rst +%%PORTDOCS%%%%DOCSDIR%%/api/proj.rst +%%PORTDOCS%%%%DOCSDIR%%/api/show_versions.rst +%%PORTDOCS%%%%DOCSDIR%%/api/sync.rst +%%PORTDOCS%%%%DOCSDIR%%/api/transformer.rst +%%PORTDOCS%%%%DOCSDIR%%/build_crs_cf.rst +%%PORTDOCS%%%%DOCSDIR%%/build_crs.rst +%%PORTDOCS%%%%DOCSDIR%%/cli.rst +%%PORTDOCS%%%%DOCSDIR%%/conf.py +%%PORTDOCS%%%%DOCSDIR%%/crs_compatibility.rst +%%PORTDOCS%%%%DOCSDIR%%/examples.rst +%%PORTDOCS%%%%DOCSDIR%%/gotchas.rst +%%PORTDOCS%%%%DOCSDIR%%/history.rst +%%PORTDOCS%%%%DOCSDIR%%/index.rst +%%PORTDOCS%%%%DOCSDIR%%/installation.rst +%%PORTDOCS%%%%DOCSDIR%%/make.bat +%%PORTDOCS%%%%DOCSDIR%%/Makefile +%%PORTDOCS%%%%DOCSDIR%%/optimize_transformations.rst +%%PORTDOCS%%%%DOCSDIR%%/past_versions.rst +%%PORTDOCS%%%%DOCSDIR%%/transformation_grids.rst +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample.out +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_aoi.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_awips221.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_cli.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_database.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_datadir.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_datum_shift.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_datum.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_doctest_wrapper.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_exception_logging.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_geod.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_list.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_network.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_pickle.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_proj.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_show_versions.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_sync.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_transform.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_transformer.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test_utils.py