python-cbor: new package

Signed-off-by: Mauro Condarelli <mc5686@mclink.it>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Mauro Condarelli 2016-02-02 01:44:43 +01:00 committed by Thomas Petazzoni
parent 81863eafc7
commit d75a2dbaa7
4 changed files with 24 additions and 0 deletions

View file

@ -622,6 +622,7 @@ menu "External python modules"
source "package/python-beautifulsoup4/Config.in"
source "package/python-bottle/Config.in"
source "package/python-can/Config.in"
source "package/python-cbor/Config.in"
source "package/python-certifi/Config.in"
source "package/python-cffi/Config.in"
source "package/python-cheetah/Config.in"

View file

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_CBOR
bool "python-cbor"
help
RFC 7049 - Concise Binary Object Representation.
https://pypi.python.org/pypi/cbor

View file

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=711ee5ecc896595c1e95c1c48356606c, sha256 locally computed.
md5 711ee5ecc896595c1e95c1c48356606c cbor-0.1.25.tar.gz
sha256 e342d425dde88bb93b741e34e3ba092492ba1f6fca94ce356054fb7daa420746 cbor-0.1.25.tar.gz

View file

@ -0,0 +1,13 @@
################################################################################
#
# python-cbor
#
################################################################################
PYTHON_CBOR_VERSION = 0.1.25
PYTHON_CBOR_SOURCE = cbor-$(PYTHON_CBOR_VERSION).tar.gz
PYTHON_CBOR_SITE = http://pypi.python.org/packages/source/c/cbor
PYTHON_CBOR_LICENSE = Apache
PYTHON_CBOR_SETUP_TYPE = setuptools
$(eval $(python-package))