mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-04 08:57:44 +00:00
python-simplejson: new package
[Thomas: convert to the Python package infrastructure, drop the setuptools dependency since the package uses distutils.] Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
fba747ca43
commit
b973f3bb2c
@ -406,6 +406,7 @@ source "package/python-pyusb/Config.in"
|
|||||||
source "package/python-pyzmq/Config.in"
|
source "package/python-pyzmq/Config.in"
|
||||||
source "package/python-serial/Config.in"
|
source "package/python-serial/Config.in"
|
||||||
source "package/python-setuptools/Config.in"
|
source "package/python-setuptools/Config.in"
|
||||||
|
source "package/python-simplejson/Config.in"
|
||||||
source "package/python-thrift/Config.in"
|
source "package/python-thrift/Config.in"
|
||||||
source "package/python-versiontools/Config.in"
|
source "package/python-versiontools/Config.in"
|
||||||
endmenu
|
endmenu
|
||||||
|
7
package/python-simplejson/Config.in
Normal file
7
package/python-simplejson/Config.in
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
config BR2_PACKAGE_PYTHON_SIMPLEJSON
|
||||||
|
bool "python-simplejson"
|
||||||
|
depends on BR2_PACKAGE_PYTHON
|
||||||
|
help
|
||||||
|
Simple, fast, extensible JSON encoder/decoder for Python
|
||||||
|
|
||||||
|
https://pypi.python.org/pypi/simplejson/
|
14
package/python-simplejson/python-simplejson.mk
Normal file
14
package/python-simplejson/python-simplejson.mk
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# python-simplejson
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
PYTHON_SIMPLEJSON_VERSION = 3.3.1
|
||||||
|
PYTHON_SIMPLEJSON_SOURCE = simplejson-$(PYTHON_SIMPLEJSON_VERSION).tar.gz
|
||||||
|
PYTHON_SIMPLEJSON_SITE = http://pypi.python.org/packages/source/s/simplejson/
|
||||||
|
PYTHON_SIMPLEJSON_LICENSE = MIT
|
||||||
|
PYTHON_SIMPLEJSON_LICENSE_FILES = LICENSE.txt
|
||||||
|
PYTHON_SIMPLEJSON_SETUP_TYPE = distutils
|
||||||
|
|
||||||
|
$(eval $(python-package))
|
Loading…
x
Reference in New Issue
Block a user