summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/python/python-requests_2.3.0.bb
diff options
context:
space:
mode:
authorMartin Oberhuber <mober.at@gmail.com>2018-01-23 22:44:00 +0100
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-01-29 10:16:11 -0500
commit3830a671507b6cf935115ab06b576474388b44a2 (patch)
tree17d0b21ea200abde10426e5c49757908163f8799 /recipes-devtools/python/python-requests_2.3.0.bb
parent042425c1d98bdd7e44a62789bd03b375045266f5 (diff)
downloadmeta-virtualization-jethro.tar.gz
Fix docker-registry downloads by using https://pypi.python.orgjethro
The docker-registry recipe depends on a couple of Python packages which use a SRC_URI with http:// protocol. In jethro, this leads to an error message "ERROR 403: SSL is required" when building. In jethro, the issue is fixed by converting affected http:// URIs to https. Note that morty or later do not show the build error although they use http. Signed-off-by: Martin Oberhuber <mober.at@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-devtools/python/python-requests_2.3.0.bb')
-rw-r--r--recipes-devtools/python/python-requests_2.3.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/python/python-requests_2.3.0.bb b/recipes-devtools/python/python-requests_2.3.0.bb
index 6f38bf1c..36392283 100644
--- a/recipes-devtools/python/python-requests_2.3.0.bb
+++ b/recipes-devtools/python/python-requests_2.3.0.bb
@@ -19,7 +19,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c7869e52c8275537186de35e3cd5f9ec"
19PR = "r0" 19PR = "r0"
20SRCNAME = "requests" 20SRCNAME = "requests"
21 21
22SRC_URI = "http://pypi.python.org/packages/source/r/requests/${SRCNAME}-${PV}.tar.gz" 22SRC_URI = "https://pypi.python.org/packages/source/r/requests/${SRCNAME}-${PV}.tar.gz"
23 23
24SRC_URI[md5sum] = "7449ffdc8ec9ac37bbcd286003c80f00" 24SRC_URI[md5sum] = "7449ffdc8ec9ac37bbcd286003c80f00"
25SRC_URI[sha256sum] = "1c1473875d846fe563d70868acf05b1953a4472f4695b7b3566d1d978957b8fc" 25SRC_URI[sha256sum] = "1c1473875d846fe563d70868acf05b1953a4472f4695b7b3566d1d978957b8fc"