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 | 418ee0dddf509859cd0f268be8cfec97ce0f4811 (patch) | |
tree | 28fe4237a2a70776f82b449ba114207fd16aa7ca | |
parent | 5fc82c07e3b5092c4b3bec9b9338210830616fe1 (diff) | |
download | meta-python2-krogoth.tar.gz |
pypi.bbclass: Allow fetching without requiring the hashkrogoth-nextkrogoth
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.
(From meta-openembedded commit: 851a064b53dca3b14dd33eaaaca9573b1a36bf0e)
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>
Signed-off-by: Tim Orling <ticotimo@gmail.com>
-rw-r--r-- | classes/pypi.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pypi.bbclass b/classes/pypi.bbclass index 659e1c0d..cd27cd24 100644 --- a/classes/pypi.bbclass +++ b/classes/pypi.bbclass @@ -13,7 +13,7 @@ def pypi_src_uri(d): package = d.getVar('PYPI_PACKAGE', True) package_ext = d.getVar('PYPI_PACKAGE_EXT', 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) + 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)}" |