2019-02-11 20:57:04 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2017 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-simplejson
|
2020-07-22 07:35:47 +00:00
|
|
|
PKG_VERSION:=3.17.2
|
|
|
|
PKG_RELEASE:=1
|
2019-02-11 20:57:04 +00:00
|
|
|
PKG_LICENSE:=MIT
|
2019-09-19 14:07:09 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:simplejson_project:simplejson
|
2019-02-11 20:57:04 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=simplejson
|
2020-07-22 07:35:47 +00:00
|
|
|
PKG_HASH:=75ecc79f26d99222a084fbdd1ce5aad3ac3a8bd535cd9059528452da38b68841
|
2019-02-11 20:57:04 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2019-02-11 20:57:04 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-simplejson
|
2019-02-11 20:57:04 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
2020-04-21 17:27:50 +00:00
|
|
|
TITLE:=Simple, fast, extensible JSON encoder/decoder
|
2019-02-11 20:57:04 +00:00
|
|
|
URL:=https://simplejson.readthedocs.org/
|
2020-04-21 17:27:50 +00:00
|
|
|
DEPENDS:=+python3-light +python3-decimal
|
2019-02-11 20:57:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-simplejson/description
|
2020-04-01 14:21:16 +00:00
|
|
|
Simple, fast, extensible JSON encoder/decoder for Python
|
2019-02-11 20:57:04 +00:00
|
|
|
endef
|
|
|
|
|
2019-10-08 13:53:35 +00:00
|
|
|
define Py3Package/python3-simplejson/filespec
|
|
|
|
+|$(PYTHON3_PKG_DIR)
|
|
|
|
-|$(PYTHON3_PKG_DIR)/simplejson/tests
|
|
|
|
endef
|
|
|
|
|
2019-02-11 20:57:04 +00:00
|
|
|
$(eval $(call Py3Package,python3-simplejson))
|
|
|
|
$(eval $(call BuildPackage,python3-simplejson))
|
|
|
|
$(eval $(call BuildPackage,python3-simplejson-src))
|