diff options
author | Derek Straka <derek@asterius.io> | 2016-05-07 11:12:49 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-10 20:18:57 +0200 |
commit | e62215ef4e926e486f846d9167073bf16c8c6abe (patch) | |
tree | 42bc47fc0454a1ed5b35a9f5c017673675563b23 | |
parent | ef735bb13cf926b2a30ffa63a901e1e1aecb7377 (diff) | |
download | meta-openembedded-e62215ef4e926e486f846d9167073bf16c8c6abe.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
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-python/classes/pypi.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.bbclass index 659e1c0d8..5b96c01a7 100644 --- a/meta-python/classes/pypi.bbclass +++ b/meta-python/classes/pypi.bbclass | |||
@@ -12,8 +12,12 @@ PYPI_PACKAGE_EXT ?= "tar.gz" | |||
12 | def pypi_src_uri(d): | 12 | def pypi_src_uri(d): |
13 | package = d.getVar('PYPI_PACKAGE', True) | 13 | package = d.getVar('PYPI_PACKAGE', True) |
14 | package_ext = d.getVar('PYPI_PACKAGE_EXT', True) | 14 | package_ext = d.getVar('PYPI_PACKAGE_EXT', True) |
15 | package_hash = d.getVar('PYPI_PACKAGE_HASH', True) | ||
15 | pv = d.getVar('PV', True) | 16 | pv = d.getVar('PV', True) |
16 | return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) | 17 | if package_hash: |
18 | 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) | ||
19 | else: | ||
20 | return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) | ||
17 | 21 | ||
18 | PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" | 22 | PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" |
19 | 23 | ||