From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB00E1382C5 for ; Tue, 23 Mar 2021 14:45:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00223E087A; Tue, 23 Mar 2021 14:45:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DCEAAE087A for ; Tue, 23 Mar 2021 14:45:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BEB51335DBD for ; Tue, 23 Mar 2021 14:45:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26EAF612 for ; Tue, 23 Mar 2021 14:45:10 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1616457791.8e732d5cb9b44f2e90e01458057e276f96a45b97.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/geopy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/geopy/Manifest dev-python/geopy/geopy-2.1.0.ebuild X-VCS-Directories: dev-python/geopy/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 8e732d5cb9b44f2e90e01458057e276f96a45b97 X-VCS-Branch: master Date: Tue, 23 Mar 2021 14:45:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e370fa85-6ee0-44ed-8625-ba4ab3f82590 X-Archives-Hash: 6d0cb5237db2fe9f2f377c47b237dc5f commit: 8e732d5cb9b44f2e90e01458057e276f96a45b97 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Mar 23 00:02:31 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Mar 23 00:03:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e732d5c dev-python/geopy: bump (untested) Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/geopy/Manifest | 1 + dev-python/geopy/geopy-2.1.0.ebuild | 58 +++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) diff --git a/dev-python/geopy/Manifest b/dev-python/geopy/Manifest index 0132d0f7f..fb82ea0b1 100644 --- a/dev-python/geopy/Manifest +++ b/dev-python/geopy/Manifest @@ -1 +1,2 @@ DIST geopy-2.0.0.tar.gz 278465 BLAKE2B 08383a509358bf902db6e47f9144380f2694e89f4d2f21f25131f2c885c1a5a9e1111da93374a723a95d117f8bf13b027446e321f098a261624dd8eeeab18577 SHA512 0b572a05c56596f65932ff422827c477d7a1a4f1e42d0cbd53ef9f11e66c60e8f4ab5a169720522c6ee5624826837b4854887a43ed34814ea3520701e60c0c06 +DIST geopy-2.1.0.tar.gz 280382 BLAKE2B 061c4f5fee8ce50690df442f431866630b6538831191b2b357ee387133d098e6aa69136ef4f11b9b627e52a8610a22438463c7e1fc5c2b193543a666ddc955b0 SHA512 6d369412f7c685cda7195589341fbd8f57564fa888fa753de266a356627125f971212afbdd7253e16df90870fbfe3faab63dfb898928d9622c6aa8654ec6fe74 diff --git a/dev-python/geopy/geopy-2.1.0.ebuild b/dev-python/geopy/geopy-2.1.0.ebuild new file mode 100644 index 000000000..4487a6ac5 --- /dev/null +++ b/dev-python/geopy/geopy-2.1.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="A Geocoding Toolbox for Python" +HOMEPAGE=" + https://geopy.readthedocs.io + https://github.com/geopy/geopy + https://pypi.org/project/geopy +" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + =sci-geosciences/GeographicLib-1.49 +" +BDEPEND=" + test? ( + dev-python/pytest-aiohttp[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest +distutils_enable_sphinx docs \ + dev-python/sphinx-issues \ + ">=dev-python/sphinx_rtd_theme-0.4.0" \ + dev-python/readme_renderer + +python_prepare_all() { + # [Errno -3] Temporary failure in name resolution + rm test/test_adapters.py || die + rm test/geocoders/algolia.py || die + rm test/geocoders/arcgis.py || die + rm test/geocoders/banfrance.py || die + rm test/geocoders/databc.py || die + rm test/geocoders/geocodefarm.py || die + rm test/geocoders/geonames.py || die + rm test/geocoders/nominatim.py || die + rm test/geocoders/photon.py || die + + # depend on the above and now fail to import + rm test/geocoders/openmapquest.py || die + rm test/geocoders/pickpoint.py || die + + distutils-r1_python_prepare_all +}