Merge pull request #10167 from heitbaum/pkg

Package updates
This commit is contained in:
Christian Hewitt 2025-06-21 05:35:11 +04:00 committed by GitHub
commit e25fe5d01c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 30 deletions

View File

@ -3,8 +3,8 @@
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="ninja" PKG_NAME="ninja"
PKG_VERSION="1.12.1" PKG_VERSION="1.13.0"
PKG_SHA256="821bdff48a3f683bc4bb3b6f0b5fe7b2d647cf65d52aeb63328c91a6c6df285a" PKG_SHA256="f08641d00099a9e40d44ec0146f841c472ae58b7e6dd517bee3945cfd923cedf"
PKG_LICENSE="Apache" PKG_LICENSE="Apache"
PKG_SITE="https://ninja-build.org/" PKG_SITE="https://ninja-build.org/"
PKG_URL="https://github.com/ninja-build/ninja/archive/v${PKG_VERSION}.tar.gz" PKG_URL="https://github.com/ninja-build/ninja/archive/v${PKG_VERSION}.tar.gz"

View File

@ -3,8 +3,8 @@
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="nss" PKG_NAME="nss"
PKG_VERSION="3.112" PKG_VERSION="3.113"
PKG_SHA256="a8ee2b4485c4d841b1f974a13037183071ac12520512e6ec6b7d38ff36e8a125" PKG_SHA256="b62d51d900b59502eea34be33e3089537fb73977ea6b76cea8d8e6a80e1d95df"
PKG_LICENSE="Mozilla Public License" PKG_LICENSE="Mozilla Public License"
PKG_SITE="http://ftp.mozilla.org/" PKG_SITE="http://ftp.mozilla.org/"
PKG_URL="https://ftp.mozilla.org/pub/security/nss/releases/NSS_${PKG_VERSION//./_}_RTM/src/nss-${PKG_VERSION}-with-nspr-$(get_pkg_version nspr).tar.gz" PKG_URL="https://ftp.mozilla.org/pub/security/nss/releases/NSS_${PKG_VERSION//./_}_RTM/src/nss-${PKG_VERSION}-with-nspr-$(get_pkg_version nspr).tar.gz"

View File

@ -4,12 +4,12 @@
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="open-vm-tools" PKG_NAME="open-vm-tools"
PKG_VERSION="12.5.2" PKG_VERSION="13.0.0"
PKG_SHA256="45fe43982e618f52a6b12c7578d9c6b63e36de62d23034a3852267b1aa5bb9ab" PKG_SHA256="ce855a7d9a0a6561e6009784eb2a34f6a1d98b2a883afce5290cd426f78e7a6d"
PKG_ARCH="x86_64" PKG_ARCH="x86_64"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="https://github.com/vmware/open-vm-tools" PKG_SITE="https://github.com/vmware/open-vm-tools"
PKG_URL="https://github.com/vmware/open-vm-tools/releases/download/stable-${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}-24697584.tar.gz" PKG_URL="https://github.com/vmware/open-vm-tools/releases/download/stable-${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}-24696409.tar.gz"
PKG_DEPENDS_TARGET="toolchain fuse3 glib libdnet libtirpc" PKG_DEPENDS_TARGET="toolchain fuse3 glib libdnet libtirpc"
PKG_LONGDESC="open-vm-tools: open source implementation of VMware Tools" PKG_LONGDESC="open-vm-tools: open source implementation of VMware Tools"
PKG_TOOLCHAIN="autotools" PKG_TOOLCHAIN="autotools"

View File

@ -1,23 +0,0 @@
From 129d87bd5fd5f2436a467d4b7d43e0d102a867da Mon Sep 17 00:00:00 2001
From: Rudi Heitbaum <rudi@heitbaum.com>
Date: Wed, 20 Nov 2024 10:40:03 +1100
Subject: [PATCH] Fix build when compiling with -std=c23
Fixes the build when using gcc 15
---
lib/lock/ul.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/lock/ul.c b/lib/lock/ul.c
index d376a98af..fc9fdb714 100644
--- a/lib/lock/ul.c
+++ b/lib/lock/ul.c
@@ -29,7 +29,7 @@
static Bool mxInPanic = FALSE; // track when involved in a panic
static Bool mxUserCollectLockingTree = FALSE;
-Bool (*MXUserTryAcquireForceFail)() = NULL;
+Bool (*MXUserTryAcquireForceFail)(const char *) = NULL;
static MX_Rank (*MXUserMxCheckRank)(void) = NULL;
static void (*MXUserMxLockLister)(void) = NULL;