mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

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>
24 lines
578 B
BlitzBasic
24 lines
578 B
BlitzBasic
DESCRIPTION = "WSGI request and response object"
|
|
HOMEPAGE = "http://webob.org/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5"
|
|
|
|
PR = "r0"
|
|
SRCNAME = "WebOb"
|
|
|
|
SRC_URI = "https://pypi.python.org/packages/source/W/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "a5c6e8ba5431756e6a5d5ec56047ec94"
|
|
SRC_URI[sha256sum] = "12f8b98390befc47336d2c0e5bad9cc48609d808eabb3f8675dc1027a3a9e9db"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit setuptools
|
|
|
|
RDEPENDS_${PN} += " \
|
|
python-sphinx \
|
|
python-nose \
|
|
"
|
|
|