mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
package/coreutils: bump version to 9.10
Upstream does not provide hashes in sha1/sha256 format anymore. https://lists.gnu.org/archive/html/coreutils-announce/2025-11/msg00000.html https://lists.gnu.org/archive/html/coreutils-announce/2026-02/msg00000.html "'kill' and 'uptime' are no longer built by default. These programs can be built with the --enable-install-program=kill,uptime configure option." Adjust coreutils.mk to install 'kill' and 'uptime'. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
d94d4ff0a6
commit
6dcf28eaa8
@@ -1,5 +1,3 @@
|
||||
# From https://lists.gnu.org/archive/html/coreutils-announce/2025-09/msg00000.html
|
||||
sha1 a6a58e00688fe0705a7051b36592f1e43e89a9ef coreutils-9.8.tar.xz
|
||||
sha256 e6d4fd2d852c9141a1c2a18a13d146a0cd7e45195f72293a4e4c044ec6ccca15 coreutils-9.8.tar.xz
|
||||
# Locally computed
|
||||
sha256 16535a9adf0b10037364e2d612aad3d9f4eca3a344949ced74d12faf4bd51d25 coreutils-9.10.tar.xz
|
||||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 COPYING
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
COREUTILS_VERSION = 9.8
|
||||
COREUTILS_VERSION = 9.10
|
||||
COREUTILS_SITE = $(BR2_GNU_MIRROR)/coreutils
|
||||
COREUTILS_SOURCE = coreutils-$(COREUTILS_VERSION).tar.xz
|
||||
COREUTILS_LICENSE = GPL-3.0+
|
||||
@@ -16,6 +16,7 @@ COREUTILS_CPE_ID_VENDOR = gnu
|
||||
# if the system is compliant even with this option passed
|
||||
COREUTILS_CONF_OPTS = --disable-rpath \
|
||||
--disable-year2038 \
|
||||
--enable-install-program=kill,uptime \
|
||||
$(if $(BR2_TOOLCHAIN_USES_MUSL),--with-included-regex)
|
||||
|
||||
ifeq ($(BR2_PACKAGE_COREUTILS_INDIVIDUAL_BINARIES),y)
|
||||
@@ -57,7 +58,7 @@ COREUTILS_CONF_ENV = ac_cv_c_restrict=no \
|
||||
|
||||
COREUTILS_BIN_PROGS = base64 cat chgrp chmod chown cp date dd df dir echo false \
|
||||
kill link ln ls mkdir mknod mktemp mv nice printenv pwd rm rmdir \
|
||||
vdir sleep stty sync touch true uname join
|
||||
vdir sleep stty sync touch true uname uptime join
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ACL),y)
|
||||
COREUTILS_DEPENDENCIES += acl
|
||||
|
||||
Reference in New Issue
Block a user