2023-11-16 09:37:05 -05:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-orjson
|
2024-12-10 19:19:17 -05:00
|
|
|
PKG_VERSION:=3.10.12
|
2023-11-16 09:37:05 -05:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PYPI_NAME:=orjson
|
2024-12-10 19:19:17 -05:00
|
|
|
PKG_HASH:=0a78bbda3aea0f9f079057ee1ee8a1ecf790d4f1af88dd67493c6b8ee52506ff
|
2023-11-16 09:37:05 -05:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Timothy Ace <openwrt@timothyace.com>
|
|
|
|
PKG_LICENSE:=Apache-2.0 MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE-APACHE LICENSE-MIT
|
|
|
|
|
|
|
|
PKG_BUILD_DEPENDS:=python-maturin/host
|
|
|
|
|
|
|
|
include ../pypi.mk
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
|
|
define Package/python3-orjson
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
|
|
|
TITLE:=Fast, correct Python JSON library
|
|
|
|
URL:=https://github.com/ijl/orjson
|
|
|
|
DEPENDS:= \
|
|
|
|
+python3-light \
|
|
|
|
$(RUST_ARCH_DEPENDS)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-orjson/description
|
|
|
|
Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-orjson))
|
|
|
|
$(eval $(call BuildPackage,python3-orjson))
|
|
|
|
$(eval $(call BuildPackage,python3-orjson-src))
|