diff options
| author | Amy Fong <amy.fong@windriver.com> | 2015-02-27 16:01:22 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-03-17 09:46:32 -0400 |
| commit | 33ea7df40bc5aa9a34f4362e976775be1076e876 (patch) | |
| tree | 50adc4109dfd5661e071986416cb1c261de673fc /recipes-devtools/python/python-simplejson_3.6.2.bb | |
| parent | 96c56a08f618c7c2a3d31c9e3bc5b341c1ef1c36 (diff) | |
| download | meta-virtualization-33ea7df40bc5aa9a34f4362e976775be1076e876.tar.gz | |
Add python packages needed for docker-registry
Signed-off-by: Amy Fong <amy.fong@windriver.com>
Diffstat (limited to 'recipes-devtools/python/python-simplejson_3.6.2.bb')
| -rw-r--r-- | recipes-devtools/python/python-simplejson_3.6.2.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-devtools/python/python-simplejson_3.6.2.bb b/recipes-devtools/python/python-simplejson_3.6.2.bb new file mode 100644 index 00000000..f13f1f38 --- /dev/null +++ b/recipes-devtools/python/python-simplejson_3.6.2.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson" | ||
| 2 | SUMMARY = "Simple, fast, extensible JSON encoder/decoder for Python" | ||
| 3 | DESCRIPTION = "\ | ||
| 4 | JSON <http://json.org> encoder and decoder for Python 2.5+ \ | ||
| 5 | and Python 3.3+. It is pure Python code with no dependencies, \ | ||
| 6 | but includes an optional C extension for a serious speed boost \ | ||
| 7 | " | ||
| 8 | SECTION = "devel/python" | ||
| 9 | LICENSE = "MIT" | ||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e" | ||
| 11 | PR = "r0" | ||
| 12 | |||
| 13 | SRCNAME = "simplejson" | ||
| 14 | |||
| 15 | SRC_URI = "https://pypi.python.org/packages/source/s/simplejson/${SRCNAME}-${PV}.tar.gz" | ||
| 16 | SRC_URI[md5sum] = "deca871b9bfa4b76ea360756b2a22710" | ||
| 17 | SRC_URI[sha256sum] = "99c092209f88d411858f01b14a97a4fcf8c4f438a685e23d733a3d65de52a35d" | ||
| 18 | |||
| 19 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 20 | |||
| 21 | inherit distutils | ||
| 22 | |||
| 23 | RDEPENDS_${PN} = "\ | ||
| 24 | python-core \ | ||
| 25 | python-re \ | ||
| 26 | python-io \ | ||
| 27 | python-netserver \ | ||
| 28 | python-numbers \ | ||
| 29 | " | ||
| 30 | |||
| 31 | |||
