Merge pull request #9652 from heitbaum/pkg

Package updates
This commit is contained in:
Christian Hewitt 2025-01-06 17:45:39 +04:00 committed by GitHub
commit a4278b0c0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 10 additions and 38 deletions

View File

@ -2,8 +2,8 @@
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="mimalloc"
PKG_VERSION="2.1.7"
PKG_SHA256="0eed39319f139afde8515010ff59baf24de9e47ea316a315398e8027d198202d"
PKG_VERSION="2.1.9"
PKG_SHA256="dd8ff701691f19bf4e225d42ef0d3d5e6ca0e03498ee4f044a0402e4697e4a20"
PKG_LICENSE="MIT"
PKG_SITE="https://github.com/microsoft/mimalloc"
PKG_URL="https://github.com/microsoft/mimalloc/archive/refs/tags/v${PKG_VERSION}.tar.gz"

View File

@ -3,8 +3,8 @@
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="setuptools"
PKG_VERSION="75.6.0"
PKG_SHA256="8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"
PKG_VERSION="75.7.0"
PKG_SHA256="886ff7b16cd342f1d1defc16fc98c9ce3fde69e087a4e1983d7ab634e5f41f4f"
PKG_LICENSE="OSS"
PKG_SITE="https://pypi.org/project/setuptools"
PKG_URL="https://files.pythonhosted.org/packages/source/${PKG_NAME:0:1}/${PKG_NAME}/${PKG_NAME,,}-${PKG_VERSION}.tar.gz"

View File

@ -2,8 +2,8 @@
# Copyright (C) 2023-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="bcm2835-utils"
PKG_VERSION="e709cd6bc7b80646a99e8834eb872bd5189a3af9"
PKG_SHA256="7627edf857d21d88037cf53b46fb87dd092ae5f0c7d823dc652e8143c4407288"
PKG_VERSION="02e3ffeee7dc8f954271fd42a3ed983567c55eb4"
PKG_SHA256="1b519e2cb24108c6f4d7e7ef0c046f9bcc92e68c53367a61913136a1096cd2fd"
PKG_ARCH="arm aarch64"
PKG_LICENSE="BSD-3-Clause"
PKG_SITE="https://github.com/raspberrypi/utils"

View File

@ -1,28 +0,0 @@
From c176592e36bb1ace8d5017df602b12acf132721e Mon Sep 17 00:00:00 2001
From: Rudi Heitbaum <rudi@heitbaum.com>
Date: Sun, 5 Jan 2025 23:49:42 +1100
Subject: [PATCH] piolib: fixes may be used uninitialized
Fixes compile error:
In function 'quadrature_encoder_get_count',
inlined from 'main' at /build/bcm2835-utils/piolib/examples/quadrature_encoder.c:58:21:
/build/bcm2835-utils/piolib/examples/quadrature_encoder.pio.h:106:12: error: 'ret' may be used uninitialized [-Werror=maybe-uninitialized]
106 | return ret;
| ^~~
---
piolib/examples/quadrature_encoder.pio.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/piolib/examples/quadrature_encoder.pio.h b/piolib/examples/quadrature_encoder.pio.h
index eb15cb7..90991b0 100644
--- a/piolib/examples/quadrature_encoder.pio.h
+++ b/piolib/examples/quadrature_encoder.pio.h
@@ -94,7 +94,7 @@ static inline void quadrature_encoder_program_init(PIO pio, uint sm, uint pin, i
}
static inline int32_t quadrature_encoder_get_count(PIO pio, uint sm)
{
- uint ret;
+ uint ret = 0;
int n;
// if the FIFO has N entries, we fetch them to drain the FIFO,
// plus one entry which will be guaranteed to not be stale

View File

@ -3,8 +3,8 @@
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libinput"
PKG_VERSION="1.27.0"
PKG_SHA256="8e823cc9f44c51b63ae90af0b73676ed82c0402cc1cbd4a59ac91b7bb6cad716"
PKG_VERSION="1.27.1"
PKG_SHA256="641df745984baff8f6f822066b4e32f28482d267e95448158732eb2f65ea7fe9"
PKG_LICENSE="GPL"
PKG_SITE="https://www.freedesktop.org/wiki/Software/libinput/"
PKG_URL="https://gitlab.freedesktop.org/libinput/libinput/-/archive/${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.bz2"

View File

@ -2,8 +2,8 @@
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="xf86-input-synaptics"
PKG_VERSION="1.9.2"
PKG_SHA256="b8fa4aab913fc63754bbd6439e020658c412743a055201ddf212760593962c38"
PKG_VERSION="1.10.0"
PKG_SHA256="e0c26adb068edd0869f87a87f5e9127922d61c0265d7692a247a91a5cc1bb5c2"
PKG_LICENSE="GPL"
PKG_SITE="https://lists.freedesktop.org/mailman/listinfo/xorg"
PKG_URL="https://xorg.freedesktop.org/archive/individual/driver/${PKG_NAME}-${PKG_VERSION}.tar.xz"