From 8a3cb57f4683ba1f18440b7d5f8d0865e197a91f Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Sun, 15 Sep 2024 18:19:38 -0600 Subject: [PATCH] package/python-msgpack: bump to version 1.1.0 Drop workaround when a c++ compiler is not available as msgpack now uses only pure c extensions. Signed-off-by: James Hilliard Signed-off-by: Yann E. MORIN --- package/python-msgpack/python-msgpack.hash | 4 ++-- package/python-msgpack/python-msgpack.mk | 12 ++---------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/package/python-msgpack/python-msgpack.hash b/package/python-msgpack/python-msgpack.hash index 26599f2972..acacd6c664 100644 --- a/package/python-msgpack/python-msgpack.hash +++ b/package/python-msgpack/python-msgpack.hash @@ -1,5 +1,5 @@ # md5, sha256 from https://pypi.org/pypi/msgpack/json -md5 6f4d91b00537fd5069dc6bfc52ae5652 msgpack-1.0.8.tar.gz -sha256 95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3 msgpack-1.0.8.tar.gz +md5 e5769d4ab610491ac561c84fde4cf4a7 msgpack-1.1.0.tar.gz +sha256 dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e msgpack-1.1.0.tar.gz # Locally computed sha256 checksums sha256 492dedba85da5872f78e6091bcd1fea474d660d35acb4dee964b8aab3f007427 COPYING diff --git a/package/python-msgpack/python-msgpack.mk b/package/python-msgpack/python-msgpack.mk index 4e686a19a6..92d3516186 100644 --- a/package/python-msgpack/python-msgpack.mk +++ b/package/python-msgpack/python-msgpack.mk @@ -4,19 +4,11 @@ # ################################################################################ -PYTHON_MSGPACK_VERSION = 1.0.8 +PYTHON_MSGPACK_VERSION = 1.1.0 PYTHON_MSGPACK_SOURCE = msgpack-$(PYTHON_MSGPACK_VERSION).tar.gz -PYTHON_MSGPACK_SITE = https://files.pythonhosted.org/packages/08/4c/17adf86a8fbb02c144c7569dc4919483c01a2ac270307e2d59e1ce394087 +PYTHON_MSGPACK_SITE = https://files.pythonhosted.org/packages/cb/d0/7555686ae7ff5731205df1012ede15dd9d927f6227ea151e901c7406af4f PYTHON_MSGPACK_LICENSE = Apache-2.0 PYTHON_MSGPACK_LICENSE_FILES = COPYING PYTHON_MSGPACK_SETUP_TYPE = setuptools -PYTHON_MSGPACK_BUILD_OPTS = --skip-dependency-check - -# When set in the environment, whatever the value, MSGPACK_PUREPYTHON drives -# using the pure python implementation rather than rely on the C++ native code. -# So we can't force it to use C++; we can only force it to use pure python. -ifeq ($(BR2_INSTALL_LIBSTDCPP),) -PYTHON_MSGPACK_ENV = MSGPACK_PUREPYTHON=1 -endif $(eval $(python-package))