From c7b08bbe1e5fc63b48e0bec5d70d0115aad11df6 Mon Sep 17 00:00:00 2001 From: Derek Straka Date: Thu, 23 Jun 2016 11:53:43 -0400 Subject: pypi: update the base pypi url to use the package info without requiring the hash * Things have finally settled on a URL structure without needing the hash (See https://bitbucket.org/pypa/pypi/issues/438/backwards-compatible-un-hashed-package) (From meta-openembedded commit: 7edad4def408cc1bd29d6a5a247e11af1180fc2e) Signed-off-by: Derek Straka Signed-off-by: Martin Jansa Signed-off-by: Tim Orling --- classes/pypi.bbclass | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'classes') diff --git a/classes/pypi.bbclass b/classes/pypi.bbclass index 5b96c01..cd27cd2 100644 --- a/classes/pypi.bbclass +++ b/classes/pypi.bbclass @@ -12,12 +12,8 @@ PYPI_PACKAGE_EXT ?= "tar.gz" def pypi_src_uri(d): package = d.getVar('PYPI_PACKAGE', True) package_ext = d.getVar('PYPI_PACKAGE_EXT', True) - package_hash = d.getVar('PYPI_PACKAGE_HASH', True) pv = d.getVar('PV', True) - if package_hash: - return 'https://pypi.python.org/packages/%s/%s/%s/%s-%s.%s' % ( package_hash[:2], package_hash[2:4], package_hash[4:], package, pv, package_ext) - else: - return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) + return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" -- cgit 1.2.3-korg