aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2016-05-07 11:12:49 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2016-05-10 20:18:57 +0200
commit1c6be3d805ce635f63c2db9a118cd120bd960fbc (patch)
tree4ba55383f9b4a62aa992ee8af8b00e5e70308c79
parent9fcfef3de1f441534b3abf9ebc0695ae8af13943 (diff)
downloadmeta-python2-1c6be3d805ce635f63c2db9a118cd120bd960fbc.tar.gz
pypi: update the pypi class to support the updated URL scheme
pypi has changed the url scheme to use the blake2b rather than names http://permalink.gmane.org/gmane.linux.distributions.nixos/20158 (From meta-openembedded commit: e62215ef4e926e486f846d9167073bf16c8c6abe) 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>
-rw-r--r--classes/pypi.bbclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/classes/pypi.bbclass b/classes/pypi.bbclass
index 659e1c0..5b96c01 100644
--- a/classes/pypi.bbclass
+++ b/classes/pypi.bbclass
@@ -12,8 +12,12 @@ 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)
- return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext)
+ 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)
PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"