include $(TOPDIR)/rules.mk
PKG_NAME:=util-linux
-PKG_VERSION:=2.40.2
+PKG_VERSION:=2.41
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
-PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.40
-PKG_HASH:=d78b37a66f5922d70edf3bdfb01a6b33d34ed3c3cafd6628203b2a2b67c8e8b3
+PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.41
+PKG_HASH:=81ee93b3cfdfeb7d7c4090cedeba1d7bbce9141fd0b501b686b3fe475ddca4c6
PKG_CPE_ID:=cpe:/a:kernel:util-linux
PKG_LICENSE:=GPL-2.0-only
-Dlibuser=disabled \
-Duse-tty-group=false \
-Duse-tls=false \
+ -Dtranslate-docs=disabled \
-Dbuild-python=disabled \
-Dbuild-zramctl=disabled \
-Dbuild-fsck=disabled \
-Dbuild-fdformat=disabled \
-Dbuild-lslogins=disabled \
-Dbuild-wdctl=disabled \
- -Dbuild-cal=disabled \
-Dbuild-switch_root=disabled \
-Dbuild-pivot_root=disabled \
-Dbuild-lsmem=disabled \
--- /dev/null
+From cd5038306e6815592fafbd06d406f45af2df3fcc Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= <thomas@t-8ch.de>
+Date: Mon, 14 Apr 2025 23:32:36 +0200
+Subject: [PATCH] meson: add feature for translated documentation
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Translating the documentation is slow.
+Add a feature which can be used to disable this step.
+
+Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
+---
+ meson_options.txt | 2 ++
+ po-man/meson.build | 2 +-
+ 2 files changed, 3 insertions(+), 1 deletion(-)
+
+--- a/meson_options.txt
++++ b/meson_options.txt
+@@ -25,6 +25,8 @@ option('sysvinit', type : 'feature',
+ option('btrfs', type : 'feature')
+ option('widechar', type : 'feature',
+ description : 'compile with wide character support')
++option('translate-docs', type : 'feature',
++ description : 'translate documentation')
+
+ # enable building of various programs and features ("build-" prefix)
+
+--- a/po-man/meson.build
++++ b/po-man/meson.build
+@@ -1,6 +1,6 @@
+ po4a = find_program('po4a', required : false)
+
+-if not (asciidoctor.found() and po4a.found())
++if not get_option('translate-docs').require(asciidoctor.found()).require(po4a.found()).allowed()
+ subdir_done()
+ endif
+
--- /dev/null
+From 363e48da01956321fb9337c59d78865c97c711a2 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= <thomas@t-8ch.de>
+Date: Mon, 14 Apr 2025 23:19:06 +0200
+Subject: [PATCH] meson: remove tinfo dependency from 'more'
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+The more utility does not need libtinfo and it is not
+specified in autotools either.
+
+Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
+---
+ meson.build | 6 ++----
+ 1 file changed, 2 insertions(+), 4 deletions(-)
+
+--- a/meson.build
++++ b/meson.build
+@@ -1387,8 +1387,7 @@ exe = executable(
+ more_sources,
+ link_with : [lib_common],
+ include_directories : includes,
+- dependencies : [lib_tinfo,
+- curses_libs,
++ dependencies : [curses_libs,
+ lib_magic],
+ install : opt,
+ build_by_default : opt)
+@@ -1398,8 +1397,7 @@ exe2 = executable(
+ link_with : [lib_common],
+ include_directories : includes,
+ c_args : '-DTEST_PROGRAM',
+- dependencies : [lib_tinfo,
+- curses_libs,
++ dependencies : [curses_libs,
+ lib_magic],
+ build_by_default : opt and program_tests)
+ exes += exe