Merge pull request #9589 from heitbaum/pkg

This commit is contained in:
Christian Hewitt 2024-12-18 15:15:33 +04:00 committed by GitHub
commit 41972bf670
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 11 additions and 44 deletions

View File

@ -2,8 +2,8 @@
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="mold"
PKG_VERSION="2.35.0"
PKG_SHA256="2703f1c88c588523815886478950bcae1ef02190dc4787e0d120a293b1a46e3b"
PKG_VERSION="2.35.1"
PKG_SHA256="912b90afe7fde03e53db08d85a62c7b03a57417e54afc72c08e2fa07cab421ff"
PKG_LICENSE="MIT"
PKG_SITE="https://github.com/rui314/mold"
PKG_URL="https://github.com/rui314/mold/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="llvm"
PKG_VERSION="19.1.5"
PKG_SHA256="bd8445f554aae33d50d3212a15e993a667c0ad1b694ac1977f3463db3338e542"
PKG_VERSION="19.1.6"
PKG_SHA256="e3f79317adaa9196d2cfffe1c869d7c100b7540832bc44fe0d3f44a12861fa34"
PKG_LICENSE="Apache-2.0"
PKG_SITE="http://llvm.org/"
PKG_URL="https://github.com/llvm/llvm-project/releases/download/llvmorg-${PKG_VERSION}/llvm-project-${PKG_VERSION/-/}.src.tar.xz"

View File

@ -2,8 +2,8 @@
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="meson"
PKG_VERSION="1.6.0"
PKG_SHA256="999b65f21c03541cf11365489c1fad22e2418bb0c3d50ca61139f2eec09d5496"
PKG_VERSION="1.6.1"
PKG_SHA256="1eca49eb6c26d58bbee67fd3337d8ef557c0804e30a6d16bfdf269db997464de"
PKG_LICENSE="Apache"
PKG_SITE="https://mesonbuild.com"
PKG_URL="https://github.com/mesonbuild/meson/releases/download/${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.gz"

View File

@ -3,8 +3,8 @@
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="dbus"
PKG_VERSION="1.15.12"
PKG_SHA256="0589c9c707dd593e31f0709caefa5828e69c668c887a7c0d2e5ba445a86bae4d"
PKG_VERSION="1.16.0"
PKG_SHA256="9f8ca5eb51cbe09951aec8624b86c292990ae2428b41b856e2bed17ec65c8849"
PKG_LICENSE="GPL"
PKG_SITE="https://dbus.freedesktop.org"
PKG_URL="https://dbus.freedesktop.org/releases/${PKG_NAME}/${PKG_NAME}-${PKG_VERSION}.tar.xz"
@ -16,7 +16,7 @@ PKG_MESON_OPTS_TARGET="--libexecdir=/usr/lib/dbus \
-Dapparmor=disabled \
-Dasserts=false \
-Dchecks=true \
-Dembedded_tests=false \
-Dintrusive_tests=false \
-Dinstalled_tests=false \
-Dmodular_tests=disabled \
-Dxml_docs=disabled \

View File

@ -3,8 +3,8 @@
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="xorg-server"
PKG_VERSION="21.1.14"
PKG_SHA256="8f2102cebdc4747d1656c1099ef610f5063c7422c24a177e300de569b354ee35"
PKG_VERSION="21.1.15"
PKG_SHA256="841c82901282902725762df03adbbcd68153d4cdfb0d61df0cfd73ad677ae089"
PKG_LICENSE="OSS"
PKG_SITE="http://www.X.org"
PKG_URL="https://www.x.org/releases/individual/xserver/${PKG_NAME}-${PKG_VERSION}.tar.xz"

View File

@ -1,33 +0,0 @@
From 70c7dafbd54f94a2a0f1d113cb5536ade62585fb Mon Sep 17 00:00:00 2001
From: Rudi Heitbaum <rudi@heitbaum.com>
Date: Wed, 22 May 2024 04:47:12 +0000
Subject: [PATCH] os/access: fix pointer type mismatch
Fixes compile error with gcc-14.1.0
../os/access.c: In function 'siHostnameAddrMatch':
../os/access.c:1873:27: error: assignment to 'const char **' from incompatible pointer type 'char **' [-Wincompatible-pointer-types]
1873 | for (addrlist = hp->h_addr_list; *addrlist; addrlist++)
| ^
Signed-off-by: Rudi Heitbaum rudi@heitbaum.com
---
os/access.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/os/access.c b/os/access.c
index c7a2ab8c56..e694cd7925 100644
--- a/os/access.c
+++ b/os/access.c
@@ -1882,7 +1882,7 @@ siHostnameAddrMatch(int family, void *addr, int len,
if ((hp = _XGethostbyname(hostname, hparams)) != NULL) {
#ifdef h_addr /* new 4.3bsd version of gethostent */
/* iterate over the addresses */
- for (addrlist = hp->h_addr_list; *addrlist; addrlist++)
+ for (addrlist = (const char **) hp->h_addr_list; *addrlist; addrlist++)
#else
addrlist = &hp->h_addr;
#endif
--
GitLab