mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
With the upstream check migrated to the simple repo API, a number of the recipes required updates to: 1. Remove outdated UPSTREAM_CHECK_REGEX checks 2. Add recipe specific UPSTREAM_CHECK_PYPI_PACKAGE definitions for packages that use '_', CamelCase, or other deviations from PEP625 in the source archive (From OE-Core rev: efbb98977664cd5392ec00d97d0eaf5374a32573) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
800 B
BlitzBasic
27 lines
800 B
BlitzBasic
SUMMARY = "Sphinx Theme reader"
|
|
HOMEPAGE = "https://github.com/readthedocs/sphinx_rtd_theme"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT & OFL-1.1"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a1db7d4ef426c2935227264e1d4ae8f9 \
|
|
file://OFL-License.txt;md5=4534c22e0147eadb6828bd9fe86d4868 \
|
|
file://Apache-License-2.0.txt;md5=8a75796f0ef19c3f601d69857f5a9a5b"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-compile \
|
|
python3-sphinx \
|
|
python3-sphinxcontrib-jquery \
|
|
"
|
|
|
|
PYPI_PACKAGE = "sphinx_rtd_theme"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
SRC_URI[sha256sum] = "b7457bc25dda723b20b086a670b9953c859eab60a2a03ee8eb2bb23e176e5f85"
|
|
|
|
inherit setuptools3 pypi
|
|
|
|
#Fake out the setup scipt
|
|
export CI = "True"
|
|
export TOX_ENV_NAME = "True"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|