From: Derek Straka <[email protected]> This is a backport of those commits:
7edad4def408cc1bd29d6a5a247e11af1180fc2e e62215ef4e926e486f846d9167073bf16c8c6abe http://permalink.gmane.org/gmane.linux.distributions.nixos/20158 This enables us to add newer python packages to krogoth. --- meta-python/classes/pypi.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.bbclass index 659e1c0..cd27cd2 100644 --- a/meta-python/classes/pypi.bbclass +++ b/meta-python/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)}" -- 2.9.3 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
