From ee580f7fb0be4034b863cd8f3b61dd4f724bc40f Mon Sep 17 00:00:00 2001 From: Adolf Belka Date: Fri, 12 Sep 2025 18:45:02 +0200 Subject: [PATCH] python3-msgpack: Update to version 1.1.0 - Update from version 1.0.8 to 1.1.0 - Update of rootfile - borgbackup requires python3-msgpack and has updated the version to be up to 1.1.0 - Changelog 1.1.0 use PyLong_* instead of PyInt_* for compatibility with future Cython. (#620) 1.1.0rc2 Update Cython to 3.0.11 for better Python 3.13 support. Update cibuildwheel to 2.20.0 to build Python 3.13 wheels 1.1.0rc1 Update Cython to 3.0.10 to reduce C warnings and future support for Python 3.13. Stop using C++ mode in Cython to reduce compile error on some compilers. Packer() has buf_size option to specify initial size of internal buffer to reduce reallocation. The default internal buffer size of Packer() is reduced from 1MiB to 256KiB to optimize for common use cases. Use buf_size if you are packing large data. Timestamp.to_datetime() and Timestamp.from_datetime() become more accurate by avoiding floating point calculations. (#591) The Cython code for Unpacker has been slightly rewritten for maintainability. The fallback implementation of Packer() and Unpacker() now uses keyword-only arguments to improve compatibility with the Cython implementation. Signed-off-by: Adolf Belka Signed-off-by: Michael Tremer --- config/rootfiles/packages/python3-msgpack | 10 +++++----- lfs/python3-msgpack | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/rootfiles/packages/python3-msgpack b/config/rootfiles/packages/python3-msgpack index 4859b8a714..74fe2f1aa7 100644 --- a/config/rootfiles/packages/python3-msgpack +++ b/config/rootfiles/packages/python3-msgpack @@ -1,9 +1,9 @@ usr/lib/python3.10/site-packages/msgpack -#usr/lib/python3.10/site-packages/msgpack-1.0.8-py3.10.egg-info -#usr/lib/python3.10/site-packages/msgpack-1.0.8-py3.10.egg-info/PKG-INFO -#usr/lib/python3.10/site-packages/msgpack-1.0.8-py3.10.egg-info/SOURCES.txt -#usr/lib/python3.10/site-packages/msgpack-1.0.8-py3.10.egg-info/dependency_links.txt -#usr/lib/python3.10/site-packages/msgpack-1.0.8-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/msgpack-1.1.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/msgpack-1.1.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/msgpack-1.1.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/msgpack-1.1.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/msgpack-1.1.0-py3.10.egg-info/top_level.txt usr/lib/python3.10/site-packages/msgpack/__init__.py usr/lib/python3.10/site-packages/msgpack/_cmsgpack.cpython-310-xxxMACHINExxx-linux-gnu.so usr/lib/python3.10/site-packages/msgpack/exceptions.py diff --git a/lfs/python3-msgpack b/lfs/python3-msgpack index d8edd89e03..0917d3b78a 100644 --- a/lfs/python3-msgpack +++ b/lfs/python3-msgpack @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team # +# Copyright (C) 2007-2025 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@ include Config -VER = 1.0.8 +VER = 1.1.0 SUMMARY = Python module for reading and writing MessagePack data THISAPP = msgpack-$(VER) @@ -33,7 +33,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = python3-msgpack -PAK_VER = 5 +PAK_VER = 6 DEPS = # borgbackup only works with specific versions of python3-msgpack - check when updating @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 714b0355941104e791c5a3b8ee2bd4f40b11484631a3bde63e7c0bdbb925a603c4704b037ab437c2330dc0d2e466d41ccfd50c6a45ef798e5cd34a87e4e3863f +$(DL_FILE)_BLAKE2 = fd6497ce248fabae481de41cb27bccf001e75425564f16caff9f5dceb52d82949481589a92635f4c25178f03002daf604073fc2bb07c8133e81a8ee2f1ccb7c4 install : $(TARGET) -- 2.47.3