diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2016-10-03 17:17:02 -0300 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-10-05 18:38:31 +0200 |
commit | 851a064b53dca3b14dd33eaaaca9573b1a36bf0e (patch) | |
tree | c3f36557e21d80cd4d48d38b00d86d7ce1b77482 /meta-python/classes/pypi.bbclass | |
parent | 895b25b387cae428c38990f4d2747603ee9dc92d (diff) | |
download | meta-openembedded-851a064b53dca3b14dd33eaaaca9573b1a36bf0e.tar.gz |
pypi.bbclass: Allow fetching without requiring the hash
This allow the fetching of packages in a backward compatible way[1],
using un-hashed packages.
1. https://bitbucket.org/pypa/pypi/issues/438/backwards-compatible-un-hashed-package
A equivalent fix is available on master in commit 7edad4d (pypi:
update the base pypi url to use the package info without requiring the
hash) so this is really a backport but without unrelated changes.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Tim Orling (Intel) <ticotimo@gmail.com>
Tested-by: Tim Orling (Intel) <ticotimo@gmail.com>
Acked-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/classes/pypi.bbclass')
-rw-r--r-- | meta-python/classes/pypi.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.bbclass index 659e1c0d8..cd27cd24e 100644 --- a/meta-python/classes/pypi.bbclass +++ b/meta-python/classes/pypi.bbclass | |||
@@ -13,7 +13,7 @@ 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 | pv = d.getVar('PV', True) | 15 | 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) | 16 | return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) |
17 | 17 | ||
18 | PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" | 18 | PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" |
19 | 19 | ||