mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 10:59:19 +00:00
Add the missing run-time dependency on python3-json. As a result we no longer need to pull python3 native and can drop other *DEPENDS. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 40b4cf5a83098a5f1be873be5c29f26380bc7993) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Armin Kuster <akuster808@gmail.com>
23 lines
624 B
BlitzBasic
23 lines
624 B
BlitzBasic
# Copyright (C) 2015 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Python library for CSON (schema-compressed JSON)"
|
|
HOMEPAGE = "https://github.com/gt3389b/python-cson/"
|
|
LICENSE = "MIT"
|
|
SECTION = "devel/python"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=7709d2635e63ab96973055a23c2a4cac"
|
|
|
|
SRCREV = "f3f2898c44bb16b951d3e9f2fbf6d1c4158edda2"
|
|
SRC_URI = "git://github.com/gt3389b/python-cson.git;branch=master;protocol=https"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
RDEPENDS:${PN} = "python3-json"
|
|
|
|
inherit setuptools3
|
|
|
|
PIP_INSTALL_PACKAGE = "python_cson"
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|