aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2016-06-23 11:53:43 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2016-07-11 15:16:04 +0200
commitc7b08bbe1e5fc63b48e0bec5d70d0115aad11df6 (patch)
tree7579beea8380f4962681de1459692ed3d2ba9783 /classes
parentf25bb5731d31343641c5dc4ded725872563e76c8 (diff)
downloadmeta-python2-c7b08bbe1e5fc63b48e0bec5d70d0115aad11df6.tar.gz
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 <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Tim Orling <ticotimo@gmail.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/pypi.bbclass6
1 files changed, 1 insertions, 5 deletions
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)}"