All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pypi: update the base pypi url to use the package info without requiring the hash
@ 2016-08-22 13:46 Ruben De Smet
  0 siblings, 0 replies; only message in thread
From: Ruben De Smet @ 2016-08-22 13:46 UTC (permalink / raw)
  To: openembedded-devel

From: Derek Straka <derek@asterius.io>

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



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-08-22 13:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-22 13:46 [PATCH] pypi: update the base pypi url to use the package info without requiring the hash Ruben De Smet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.