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

Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
32 lines
902 B
BlitzBasic
32 lines
902 B
BlitzBasic
HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson"
|
|
SUMMARY = "Simple, fast, extensible JSON encoder/decoder for Python"
|
|
DESCRIPTION = "\
|
|
JSON <http://json.org> encoder and decoder for Python 2.5+ \
|
|
and Python 3.3+. It is pure Python code with no dependencies, \
|
|
but includes an optional C extension for a serious speed boost \
|
|
"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
|
|
PR = "r0"
|
|
|
|
SRCNAME = "simplejson"
|
|
|
|
SRC_URI = "https://pypi.python.org/packages/source/s/simplejson/${SRCNAME}-${PV}.tar.gz"
|
|
SRC_URI[md5sum] = "deca871b9bfa4b76ea360756b2a22710"
|
|
SRC_URI[sha256sum] = "99c092209f88d411858f01b14a97a4fcf8c4f438a685e23d733a3d65de52a35d"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit setuptools
|
|
|
|
RDEPENDS_${PN} = "\
|
|
python-core \
|
|
python-re \
|
|
python-io \
|
|
python-netserver \
|
|
python-numbers \
|
|
"
|
|
|
|
|