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>
18 lines
514 B
BlitzBasic
18 lines
514 B
BlitzBasic
DESCRIPTION = "Python documentation generator"
|
|
HOMEPAGE = "http://sphinx-doc.org/"
|
|
SECTION = "devel/python"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6dd095eaa1e7a662b279daf80ecad7e6"
|
|
|
|
PR = "r0"
|
|
SRCNAME = "Sphinx"
|
|
|
|
SRC_URI = "https://pypi.python.org/packages/source/S/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "8786a194acf9673464c5455b11fd4332"
|
|
SRC_URI[sha256sum] = "1a6e5130c2b42d2de301693c299f78cc4bd3501e78b610c08e45efc70e2b5114"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit setuptools
|