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 4FA08138353 for ; Mon, 6 Apr 2020 18:01:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91282E11CF; Mon, 6 Apr 2020 18:01:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7B076E11CF for ; Mon, 6 Apr 2020 18:01:42 +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 8594134EF4E for ; Mon, 6 Apr 2020 18:01:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 270BE1C5 for ; Mon, 6 Apr 2020 18:01:40 +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: <1586196058.c99d254cdc153c1263c54b5bfb53afc695dd1dc8.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/geopy-1.21.0.ebuild X-VCS-Directories: dev-python/geopy/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: c99d254cdc153c1263c54b5bfb53afc695dd1dc8 X-VCS-Branch: master Date: Mon, 6 Apr 2020 18:01:40 +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: f7c05519-30f7-4149-beaf-aebea2967bd9 X-Archives-Hash: 23141f5970287cef49d0d24da29f1839 Message-ID: <20200406180140.gA3fTypr-E2B56MvrK_ZUrIGgJMYYt-GMR524WKzt3o@z> commit: c99d254cdc153c1263c54b5bfb53afc695dd1dc8 Author: Andrew Ammerlaan riseup net> AuthorDate: Mon Apr 6 18:00:58 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Mon Apr 6 18:00:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c99d254c dev-python/geopy: fix tests and doc Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/geopy/geopy-1.21.0.ebuild | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/dev-python/geopy/geopy-1.21.0.ebuild b/dev-python/geopy/geopy-1.21.0.ebuild index fa0f5ce..cb9c814 100644 --- a/dev-python/geopy/geopy-1.21.0.ebuild +++ b/dev-python/geopy/geopy-1.21.0.ebuild @@ -38,6 +38,24 @@ DEPEND=" " distutils_enable_tests pytest -distutils_enable_sphinx \ +distutils_enable_sphinx docs \ ">=dev-python/sphinx_rtd_theme-0.4.0" \ dev-python/readme_renderer + +python_prepare_all() { + # [Errno -3] Temporary failure in name resolution + rm test/geocoders/nominatim.py || die + rm test/geocoders/geocodefarm.py || die + rm test/geocoders/databc.py || die + rm test/geocoders/banfrance.py || die + rm test/geocoders/arcgis.py || die + rm test/test_proxy.py || die + rm test/geocoders/geonames.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 +}