commit: 9e0b65adb1c68130d9024a90c0c14c8416cf0ed1
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 4 19:58:06 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 20:34:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e0b65ad
dev-python/geopy: Clean old up
dev-python/geopy/Manifest | 1 -
dev-python/geopy/geopy-1.8.1.ebuild | 59 -------------------------------------
2 files changed, 60 deletions(-)
diff --git a/dev-python/geopy/Manifest b/dev-python/geopy/Manifest
index 1a8a16b8779..066dc7b4b46 100644
--- a/dev-python/geopy/Manifest
+++ b/dev-python/geopy/Manifest
@@ -1,2 +1 @@
DIST geopy-1.11.0.tar.gz 72035 BLAKE2B
9d0ab7407f629ccc942e55d3529dbcfa792c50046aad7a23801803085f21675ed4bb3b734c430c5f7842a6f1f69d679a5ab9b37e4e60eefd48efa30a11468557
SHA512
b3abbf0ce4ca08eadc03a97876a662bbda1901660ea03329aace30bfb5f8af17c82653273e4d2eab9aca5e817f50768dd742b4865083709e10b8599331d5573b
-DIST geopy-1.8.1.tar.gz 67542 BLAKE2B
73d3d8c1b716fe9cde8d8f5af4ef485957afcb595550d3b5b9c773cdcaa89470ca88dedbef4f8b73d6acb227ec1cf96898a43cb08f2ad7eda9adbb2afe093deb
SHA512
0df2e67ed35d5cc3f796e3188df3a37d8fa101a4b6feb6b760ea08087ba44c350765a8c1032012b5e762454fa15c520f97d59ff942f07047927ef4872232a57c
diff --git a/dev-python/geopy/geopy-1.8.1.ebuild
b/dev-python/geopy/geopy-1.8.1.ebuild
deleted file mode 100644
index 43bd2cdb513..00000000000
--- a/dev-python/geopy/geopy-1.8.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="A Geocoding Toolbox for Python"
-HOMEPAGE="http://www.geopy.org/ https://github.com/geopy/geopy"
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-IUSE="test doc yahoo"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="yahoo? ( >=dev-python/requests-oauthlib-0.4.0[${PYTHON_USEDEP}]
- dev-python/placefinder[${PYTHON_USEDEP}] )"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/nose[${PYTHON_USEDEP}]
- dev-python/nose-cover3[${PYTHON_USEDEP}]
- dev-python/pylint[${PYTHON_USEDEP}] )
- doc? ( $(python_gen_cond_dep 'dev-python/sphinx[${PYTHON_USEDEP}]'
python2_7)
- >=dev-python/python-docs-2.7.6-r1:2.7 )"
-
-python_prepare_all() {
- if use doc; then
- local PYTHON_DOC_ATOM=$(best_version --host-root
dev-python/python-docs:2.7)
- local
PYTHON_DOC_VERSION="${PYTHON_DOC_ATOM#dev-python/python-docs-}"
- local
PYTHON_DOC="/usr/share/doc/python-docs-${PYTHON_DOC_VERSION}/html"
- local PYTHON_DOC_INVENTORY="${PYTHON_DOC}/objects.inv"
- sed -i "s|'http://docs.python.org/': None|'${PYTHON_DOC}':
'${PYTHON_DOC_INVENTORY}'|" docs/conf.py || die
- fi
-
- distutils-r1_python_prepare_all
-
- # prevent install of test folder to avoid file collisions
- sed -e "s:find_packages():find_packages(exclude=['test','test.*']):" -i
setup.py || die
-}
-
-python_test() {
- # Ignore rogue class IGNFranceTestCase demanding elements beyond a
normal testsuite
- # i.e. "You should provide an api key and a username with a password"
- # Cannot decipher how to skip or exclude this
"context=IGNFranceTestCase"
- # It appears it MAY stem from nose rather than geopy's suite
- nosetests --verbose || die "Tests failed under ${EPYTHON}"
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}