2020-10-19 18:09:55 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2017-2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=python-msgpack
|
2023-08-12 01:42:09 +08:00
|
|
|
PKG_VERSION:=1.0.5
|
2020-10-19 18:09:55 +08:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PYPI_NAME:=msgpack
|
2023-08-12 01:42:09 +08:00
|
|
|
PKG_HASH:=c075544284eadc5cddc70f4757331d99dcbc16b2bbd4849d15f8aae4cf36d31c
|
2020-10-19 18:09:55 +08:00
|
|
|
|
2021-07-08 21:32:31 +08:00
|
|
|
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
|
2020-10-19 18:09:55 +08:00
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
|
2023-08-12 01:42:09 +08:00
|
|
|
PKG_BUILD_DEPENDS:=python-cython/host
|
|
|
|
|
2020-10-19 18:09:55 +08:00
|
|
|
include ../pypi.mk
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
|
|
define Package/python3-msgpack
|
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
2023-08-12 01:42:09 +08:00
|
|
|
TITLE:=MessagePack serializer
|
2020-10-19 18:09:55 +08:00
|
|
|
URL:=https://msgpack.org/
|
|
|
|
DEPENDS:=+python3-light +libstdcpp
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-msgpack/description
|
|
|
|
MessagePack is an efficient binary serialization format.
|
|
|
|
It lets you exchange data among multiple languages like JSON.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-msgpack))
|
|
|
|
$(eval $(call BuildPackage,python3-msgpack))
|
|
|
|
$(eval $(call BuildPackage,python3-msgpack-src))
|