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-gevent_1.0.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-gevent_1.0.1.bb')
-rw-r--r-- | recipes-devtools/python/python-gevent_1.0.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-devtools/python/python-gevent_1.0.1.bb b/recipes-devtools/python/python-gevent_1.0.1.bb index 47f1267a..f7064237 100644 --- a/recipes-devtools/python/python-gevent_1.0.1.bb +++ b/recipes-devtools/python/python-gevent_1.0.1.bb | |||
@@ -13,7 +13,7 @@ RDEPENDS_${PN} += "python-greenlet python-mime python-pprint python-re" | |||
13 | 13 | ||
14 | SRCNAME = "gevent" | 14 | SRCNAME = "gevent" |
15 | 15 | ||
16 | SRC_URI = "http://pypi.python.org/packages/source/g/gevent/${SRCNAME}-${PV}.tar.gz" | 16 | SRC_URI = "https://pypi.python.org/packages/source/g/gevent/${SRCNAME}-${PV}.tar.gz" |
17 | SRC_URI[md5sum] = "7b952591d1a0174d6eb6ac47bd975ab6" | 17 | SRC_URI[md5sum] = "7b952591d1a0174d6eb6ac47bd975ab6" |
18 | SRC_URI[sha256sum] = "4627e215d058f71d95e6b26d9e7be4c263788a4756bd2858a93775f6c072df43" | 18 | SRC_URI[sha256sum] = "4627e215d058f71d95e6b26d9e7be4c263788a4756bd2858a93775f6c072df43" |
19 | 19 | ||
@@ -30,4 +30,4 @@ SRC_URI += "file://gevent-allow-ssl-v2-or-v3-certificates.patch" | |||
30 | # so always force a cross compile | 30 | # so always force a cross compile |
31 | do_configure_append() { | 31 | do_configure_append() { |
32 | sed -i -e 's/^cross_compiling=no/cross_compiling=yes/' ${S}/libev/configure | 32 | sed -i -e 's/^cross_compiling=no/cross_compiling=yes/' ${S}/libev/configure |
33 | } \ No newline at end of file | 33 | } |