mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] util-linux: Version bump. 2.41.2 -> 2.41.3
@ 2025-12-17 20:08 Christian Melki
  2026-01-15 15:12 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Melki @ 2025-12-17 20:08 UTC (permalink / raw)
  To: ptxdist

Minor fix release.
https://github.com/util-linux/util-linux/blob/v2.41.3/Documentation/releases/v2.41.3-ReleaseNotes

Plugs CVE:
CVE-2025-14104 - fix setpwnam() buffer use

* Remove patchset, applied upstream.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 ...a-bug-in-posixipc_libs-configuration.patch | 24 -------------------
 patches/util-linux-2.41.2/series              |  4 ----
 rules/util-linux.make                         |  4 ++--
 3 files changed, 2 insertions(+), 30 deletions(-)
 delete mode 100644 patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
 delete mode 100644 patches/util-linux-2.41.2/series

diff --git a/patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch b/patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
deleted file mode 100644
index 6f624093c..000000000
--- a/patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From: Martin Valgur <martin.valgur@gmail.com>
-Date: Tue, 15 Apr 2025 16:19:21 +0300
-Subject: [PATCH] meson: fix a bug in posixipc_libs configuration
-
-Should append instead of assigning. Otherwise fails with
-
-meson.build:1482:22: ERROR: Object <[ExternalLibraryHolder] holds [ExternalLibrary]: <ExternalLibrary rt: True>> of type ExternalLibrary does not support the `+` operator.
----
- meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/meson.build b/meson.build
-index 84fa4c805f59..839db6fb206e 100644
---- a/meson.build
-+++ b/meson.build
-@@ -1473,7 +1473,7 @@ has_seminfo_type = cc.has_type('struct seminfo', args : '-D_GNU_SOURCE', prefix
- 
- posixipc_libs = []
- if not cc.has_function('shm_open') and conf.get('HAVE_SYS_MMAN_H').to_string() == '1'
--  posixipc_libs = cc.find_library('rt', required : true)
-+  posixipc_libs += cc.find_library('rt', required : true)
- endif
- 
- if not cc.has_function('sem_close') and conf.get('HAVE_SEMAPHORE_H').to_string() == '1'
diff --git a/patches/util-linux-2.41.2/series b/patches/util-linux-2.41.2/series
deleted file mode 100644
index d69fea8f0..000000000
--- a/patches/util-linux-2.41.2/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
-# f2cf55d5187bed3b82ddc2a93f7c0c0e  - git-ptx-patches magic
diff --git a/rules/util-linux.make b/rules/util-linux.make
index 9e7f0f2f0..642061404 100644
--- a/rules/util-linux.make
+++ b/rules/util-linux.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX) += util-linux
 #
 # Paths and names
 #
-UTIL_LINUX_VERSION	:= 2.41.2
-UTIL_LINUX_MD5		:= 3df5bc745ab59de4effce2e11b9a2606
+UTIL_LINUX_VERSION	:= 2.41.3
+UTIL_LINUX_MD5		:= 2d7996ae58ecbc3206fb4c27a7593a00
 UTIL_LINUX		:= util-linux-$(UTIL_LINUX_VERSION)
 UTIL_LINUX_SUFFIX	:= tar.gz
 UTIL_LINUX_URL		:= https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/snapshot/$(UTIL_LINUX).$(UTIL_LINUX_SUFFIX)
-- 
2.43.0




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [APPLIED] util-linux: Version bump. 2.41.2 -> 2.41.3
  2025-12-17 20:08 [ptxdist] [PATCH] util-linux: Version bump. 2.41.2 -> 2.41.3 Christian Melki
@ 2026-01-15 15:12 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2026-01-15 15:12 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as c317090b3dfed28630d72f5aaf773f815e82b0bf.

Michael

[sent from post-receive hook]

On Thu, 15 Jan 2026 16:12:06 +0100, Christian Melki <christian.melki@t2data.com> wrote:
> Minor fix release.
> https://github.com/util-linux/util-linux/blob/v2.41.3/Documentation/releases/v2.41.3-ReleaseNotes
> 
> Plugs CVE:
> CVE-2025-14104 - fix setpwnam() buffer use
> 
> * Remove patchset, applied upstream.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20251217200842.2589885-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch b/patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
> deleted file mode 100644
> index 6f624093c3d3..000000000000
> --- a/patches/util-linux-2.41.2/0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
> +++ /dev/null
> @@ -1,24 +0,0 @@
> -From: Martin Valgur <martin.valgur@gmail.com>
> -Date: Tue, 15 Apr 2025 16:19:21 +0300
> -Subject: [PATCH] meson: fix a bug in posixipc_libs configuration
> -
> -Should append instead of assigning. Otherwise fails with
> -
> -meson.build:1482:22: ERROR: Object <[ExternalLibraryHolder] holds [ExternalLibrary]: <ExternalLibrary rt: True>> of type ExternalLibrary does not support the `+` operator.
> ----
> - meson.build | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/meson.build b/meson.build
> -index 84fa4c805f59..839db6fb206e 100644
> ---- a/meson.build
> -+++ b/meson.build
> -@@ -1473,7 +1473,7 @@ has_seminfo_type = cc.has_type('struct seminfo', args : '-D_GNU_SOURCE', prefix
> - 
> - posixipc_libs = []
> - if not cc.has_function('shm_open') and conf.get('HAVE_SYS_MMAN_H').to_string() == '1'
> --  posixipc_libs = cc.find_library('rt', required : true)
> -+  posixipc_libs += cc.find_library('rt', required : true)
> - endif
> - 
> - if not cc.has_function('sem_close') and conf.get('HAVE_SEMAPHORE_H').to_string() == '1'
> diff --git a/patches/util-linux-2.41.2/series b/patches/util-linux-2.41.2/series
> deleted file mode 100644
> index d69fea8f084e..000000000000
> --- a/patches/util-linux-2.41.2/series
> +++ /dev/null
> @@ -1,4 +0,0 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
> -0001-meson-fix-a-bug-in-posixipc_libs-configuration.patch
> -# f2cf55d5187bed3b82ddc2a93f7c0c0e  - git-ptx-patches magic
> diff --git a/rules/util-linux.make b/rules/util-linux.make
> index 9e7f0f2f0c0c..642061404281 100644
> --- a/rules/util-linux.make
> +++ b/rules/util-linux.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX) += util-linux
>  #
>  # Paths and names
>  #
> -UTIL_LINUX_VERSION	:= 2.41.2
> -UTIL_LINUX_MD5		:= 3df5bc745ab59de4effce2e11b9a2606
> +UTIL_LINUX_VERSION	:= 2.41.3
> +UTIL_LINUX_MD5		:= 2d7996ae58ecbc3206fb4c27a7593a00
>  UTIL_LINUX		:= util-linux-$(UTIL_LINUX_VERSION)
>  UTIL_LINUX_SUFFIX	:= tar.gz
>  UTIL_LINUX_URL		:= https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/snapshot/$(UTIL_LINUX).$(UTIL_LINUX_SUFFIX)



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-01-15 15:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-12-17 20:08 [ptxdist] [PATCH] util-linux: Version bump. 2.41.2 -> 2.41.3 Christian Melki
2026-01-15 15:12 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox