diff options
author | Martin Oberhuber <mober.at@gmail.com> | 2018-01-23 22:44:00 +0100 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-01-29 10:16:11 -0500 |
commit | 3830a671507b6cf935115ab06b576474388b44a2 (patch) | |
tree | 17d0b21ea200abde10426e5c49757908163f8799 /recipes-devtools/python/python-webob_1.4.1.bb | |
parent | 042425c1d98bdd7e44a62789bd03b375045266f5 (diff) | |
download | meta-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-webob_1.4.1.bb')
-rw-r--r-- | recipes-devtools/python/python-webob_1.4.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/python/python-webob_1.4.1.bb b/recipes-devtools/python/python-webob_1.4.1.bb index 18b38066..e5663637 100644 --- a/recipes-devtools/python/python-webob_1.4.1.bb +++ b/recipes-devtools/python/python-webob_1.4.1.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5 | |||
7 | PR = "r0" | 7 | PR = "r0" |
8 | SRCNAME = "WebOb" | 8 | SRCNAME = "WebOb" |
9 | 9 | ||
10 | SRC_URI = "http://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | 10 | SRC_URI = "https://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" |
11 | 11 | ||
12 | SRC_URI[md5sum] = "a5c6e8ba5431756e6a5d5ec56047ec94" | 12 | SRC_URI[md5sum] = "a5c6e8ba5431756e6a5d5ec56047ec94" |
13 | SRC_URI[sha256sum] = "12f8b98390befc47336d2c0e5bad9cc48609d808eabb3f8675dc1027a3a9e9db" | 13 | SRC_URI[sha256sum] = "12f8b98390befc47336d2c0e5bad9cc48609d808eabb3f8675dc1027a3a9e9db" |