Received: by mail.netbsd.org (Postfix, from userid 605) id 8094C84EBC; Sat, 21 Mar 2020 18:59:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0991084DCF for ; Sat, 21 Mar 2020 18:59:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 9Oj9JCxphstg for ; Sat, 21 Mar 2020 18:59:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 53AB784CD2 for ; Sat, 21 Mar 2020 18:59:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 50F31FB27; Sat, 21 Mar 2020 18:59:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1584817197109450" MIME-Version: 1.0 Date: Sat, 21 Mar 2020 18:59:57 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/geography To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200321185957.50F31FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1584817197109450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Mar 21 18:59:57 UTC 2020 Modified Files: pkgsrc/geography: Makefile Added Files: pkgsrc/geography/py-googlemaps: DESCR Makefile PLIST distinfo Removed Files: pkgsrc/geography/py-google-maps-services-python: DESCR Makefile PLIST distinfo Log Message: py-google-maps-services-python: renamed to py-googlemaps To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 pkgsrc/geography/Makefile cvs rdiff -u -r1.2 -r0 pkgsrc/geography/py-google-maps-services-python/DESCR cvs rdiff -u -r1.11 -r0 \ pkgsrc/geography/py-google-maps-services-python/Makefile cvs rdiff -u -r1.6 -r0 pkgsrc/geography/py-google-maps-services-python/PLIST cvs rdiff -u -r1.8 -r0 \ pkgsrc/geography/py-google-maps-services-python/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/geography/py-googlemaps/DESCR \ pkgsrc/geography/py-googlemaps/Makefile \ pkgsrc/geography/py-googlemaps/PLIST \ pkgsrc/geography/py-googlemaps/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1584817197109450 Content-Disposition: inline Content-Length: 5258 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/Makefile diff -u pkgsrc/geography/Makefile:1.78 pkgsrc/geography/Makefile:1.79 --- pkgsrc/geography/Makefile:1.78 Wed Mar 11 10:55:28 2020 +++ pkgsrc/geography/Makefile Sat Mar 21 18:59:56 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.78 2020/03/11 10:55:28 wiz Exp $ +# $NetBSD: Makefile,v 1.79 2020/03/21 18:59:56 adam Exp $ # COMMENT= Software for geographical-related uses @@ -54,7 +54,7 @@ SUBDIR+= proj-doc SUBDIR+= py-country SUBDIR+= py-gdal SUBDIR+= py-geojson -SUBDIR+= py-google-maps-services-python +SUBDIR+= py-googlemaps SUBDIR+= py-obspy SUBDIR+= py-proj SUBDIR+= py-trytond-country Added files: Index: pkgsrc/geography/py-googlemaps/DESCR diff -u /dev/null pkgsrc/geography/py-googlemaps/DESCR:1.1 --- /dev/null Sat Mar 21 18:59:57 2020 +++ pkgsrc/geography/py-googlemaps/DESCR Sat Mar 21 18:59:57 2020 @@ -0,0 +1,17 @@ +Use Python? Want to geocode something? Looking for directions? Maybe +matrices of directions? This library brings the Google Maps API Web +Services to your Python application. + +The Python Client for Google Maps Services is a Python Client library +for the following Google Maps APIs: + + - Directions API + - Distance Matrix API + - Elevation API + - Geocoding API + - Time Zone API + - Roads API + - Places API + +Keep in mind that the same terms and conditions apply to usage of +the APIs when they're accessed through this library. Index: pkgsrc/geography/py-googlemaps/Makefile diff -u /dev/null pkgsrc/geography/py-googlemaps/Makefile:1.1 --- /dev/null Sat Mar 21 18:59:57 2020 +++ pkgsrc/geography/py-googlemaps/Makefile Sat Mar 21 18:59:57 2020 @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1 2020/03/21 18:59:57 adam Exp $ + +DISTNAME= googlemaps-4.2.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= geography python +MASTER_SITES= ${MASTER_SITE_PYPI:=g/googlemaps/} + +MAINTAINER= kleink@NetBSD.org +HOMEPAGE= https://github.com/googlemaps/google-maps-services-python +COMMENT= Python client library for Google Maps Platform +LICENSE= apache-2.0 + +DEPENDS+= ${PYPKGPREFIX}-requests>=2.20.0:../../devel/py-requests +TEST_DEPENDS+= ${PYPKGPREFIX}-responses-[0-9]*:../../net/py-responses +TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov +TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner + +USE_LANGUAGES= # none + +PYSETUPTESTTARGET= pytest + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/geography/py-googlemaps/PLIST diff -u /dev/null pkgsrc/geography/py-googlemaps/PLIST:1.1 --- /dev/null Sat Mar 21 18:59:57 2020 +++ pkgsrc/geography/py-googlemaps/PLIST Sat Mar 21 18:59:57 2020 @@ -0,0 +1,45 @@ +@comment $NetBSD: PLIST,v 1.1 2020/03/21 18:59:57 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/googlemaps/__init__.py +${PYSITELIB}/googlemaps/__init__.pyc +${PYSITELIB}/googlemaps/__init__.pyo +${PYSITELIB}/googlemaps/client.py +${PYSITELIB}/googlemaps/client.pyc +${PYSITELIB}/googlemaps/client.pyo +${PYSITELIB}/googlemaps/convert.py +${PYSITELIB}/googlemaps/convert.pyc +${PYSITELIB}/googlemaps/convert.pyo +${PYSITELIB}/googlemaps/directions.py +${PYSITELIB}/googlemaps/directions.pyc +${PYSITELIB}/googlemaps/directions.pyo +${PYSITELIB}/googlemaps/distance_matrix.py +${PYSITELIB}/googlemaps/distance_matrix.pyc +${PYSITELIB}/googlemaps/distance_matrix.pyo +${PYSITELIB}/googlemaps/elevation.py +${PYSITELIB}/googlemaps/elevation.pyc +${PYSITELIB}/googlemaps/elevation.pyo +${PYSITELIB}/googlemaps/exceptions.py +${PYSITELIB}/googlemaps/exceptions.pyc +${PYSITELIB}/googlemaps/exceptions.pyo +${PYSITELIB}/googlemaps/geocoding.py +${PYSITELIB}/googlemaps/geocoding.pyc +${PYSITELIB}/googlemaps/geocoding.pyo +${PYSITELIB}/googlemaps/geolocation.py +${PYSITELIB}/googlemaps/geolocation.pyc +${PYSITELIB}/googlemaps/geolocation.pyo +${PYSITELIB}/googlemaps/maps.py +${PYSITELIB}/googlemaps/maps.pyc +${PYSITELIB}/googlemaps/maps.pyo +${PYSITELIB}/googlemaps/places.py +${PYSITELIB}/googlemaps/places.pyc +${PYSITELIB}/googlemaps/places.pyo +${PYSITELIB}/googlemaps/roads.py +${PYSITELIB}/googlemaps/roads.pyc +${PYSITELIB}/googlemaps/roads.pyo +${PYSITELIB}/googlemaps/timezone.py +${PYSITELIB}/googlemaps/timezone.pyc +${PYSITELIB}/googlemaps/timezone.pyo Index: pkgsrc/geography/py-googlemaps/distinfo diff -u /dev/null pkgsrc/geography/py-googlemaps/distinfo:1.1 --- /dev/null Sat Mar 21 18:59:57 2020 +++ pkgsrc/geography/py-googlemaps/distinfo Sat Mar 21 18:59:57 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/03/21 18:59:57 adam Exp $ + +SHA1 (googlemaps-4.2.0.tar.gz) = 6feb0107169eac62073803df39920e158f7a115f +RMD160 (googlemaps-4.2.0.tar.gz) = f9b8e7aab9bbf7aa0e030ddde81bf512ffba9c50 +SHA512 (googlemaps-4.2.0.tar.gz) = 2cf36fc9952566b4dbb0404bbb8984f1aeb20ebc6fd34ab6996cc818a487839fa14360eefd9f408eb3caabe36e3196d1665c83e047ec8c3c363c00ddf3d7779d +Size (googlemaps-4.2.0.tar.gz) = 40229 bytes --_----------=_1584817197109450--