* [Buildroot] [PATCH 1/2] package/procps-ng: add wchar dependency
@ 2024-12-29 13:17 Thomas Petazzoni via buildroot
2024-12-29 13:17 ` [Buildroot] [PATCH 2/2] package/procps-ng: bump version to 4.0.5 Thomas Petazzoni via buildroot
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-12-29 13:17 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni, Bernd Kuhls
Since procps-ng was bumped from 3.3.17 to 4.0.4 in commit
d79f40dbbe98983bc657d4c82d46b38b8283351b ("package/procps-ng: security
bump to version 4.0.4"), the build has been failing on !wchar
configurations with:
src/ps/output.c:68:10: fatal error: wctype.h: No such file or directory
68 | #include <wctype.h>
| ^~~~~~~~~~
compilation terminated.
The problematic code has been added by upstream commit
https://gitlab.com/procps-ng/procps/-/commit/605ea4a8f7460920b6de9e432757bd13f80f0dba,
which landed in upstream release v4.0.0.
To solve this, we simply add a BR2_USE_WCHAR dependency, and update
the comment related to this dependency on the only reverse dependency
of procps-ng.
Fixes:
http://autobuild.buildroot.net/results/afc035e866bec6f2c14f9d52fa74a9c1897706de/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
package/igt-gpu-tools/Config.in | 2 +-
package/procps-ng/Config.in | 6 ++++++
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/package/igt-gpu-tools/Config.in b/package/igt-gpu-tools/Config.in
index 809c8e28ac..08fc34e917 100644
--- a/package/igt-gpu-tools/Config.in
+++ b/package/igt-gpu-tools/Config.in
@@ -5,7 +5,7 @@ config BR2_PACKAGE_IGT_GPU_TOOLS
depends on !BR2_STATIC_LIBS
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_PACKAGE_HAS_UDEV
- depends on BR2_USE_WCHAR # elfutils
+ depends on BR2_USE_WCHAR # elfutils, procps-ng
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11 # linux/dma-buf.h
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # procps-ng
select BR2_PACKAGE_CAIRO
diff --git a/package/procps-ng/Config.in b/package/procps-ng/Config.in
index 7af0e97fb4..2b97096f00 100644
--- a/package/procps-ng/Config.in
+++ b/package/procps-ng/Config.in
@@ -1,7 +1,13 @@
+comment "procps-ng needs a toolchain w/ wchar"
+ depends on BR2_USE_MMU
+ depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+ depends on !BR2_USE_WCHAR
+
config BR2_PACKAGE_PROCPS_NG
bool "procps-ng"
depends on BR2_USE_MMU # fork()
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+ depends on BR2_USE_WCHAR
select BR2_PACKAGE_NCURSES
help
Standard informational utilities and process-handling tools.
--
2.47.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/procps-ng: bump version to 4.0.5
2024-12-29 13:17 [Buildroot] [PATCH 1/2] package/procps-ng: add wchar dependency Thomas Petazzoni via buildroot
@ 2024-12-29 13:17 ` Thomas Petazzoni via buildroot
2024-12-29 15:17 ` Baruch Siach via buildroot
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-12-29 13:17 UTC (permalink / raw)
To: buildroot; +Cc: Thomas Petazzoni
Patch 0001 is dropped as it's upstream as of
ca004d4657d5e8b468a4552ede429be53193a3a9.
Patch 0002 is dropped as it's upstream as of
263fe04f9ed6f3f40fdb7ce249221e03dc926c9b.
Patch 0003 is dropped as it's upstream as of
2507bc475782ff5e0541d37c780dff1e293c9553.
Patch 0004 is dropped as it's upstream as of
587efb47df7ddbfda4e6abdd1e7792a2531a238f.
Patch 0005 is dropped as it's upstream as of
5acbb5dc1587d688de646d739a97251eb893bbb0.
Release notes:
https://gitlab.com/procps-ng/procps/-/releases/v4.0.5
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
...1-build-sys-Add-systemd-elogind-to-w.patch | 48 ---------
.../0002-fix-ncurses-h-include.patch | 55 -----------
...03-build-sys-Fix-pidfd_open-checking.patch | 99 -------------------
...ld-sys-Fix-define-of-HAVE_PIDFD_OPEN.patch | 37 -------
...lude-sys-syscall.h-if-making-pidwait.patch | 41 --------
package/procps-ng/procps-ng.hash | 8 +-
package/procps-ng/procps-ng.mk | 2 +-
7 files changed, 5 insertions(+), 285 deletions(-)
delete mode 100644 package/procps-ng/0001-build-sys-Add-systemd-elogind-to-w.patch
delete mode 100644 package/procps-ng/0002-fix-ncurses-h-include.patch
delete mode 100644 package/procps-ng/0003-build-sys-Fix-pidfd_open-checking.patch
delete mode 100644 package/procps-ng/0004-build-sys-Fix-define-of-HAVE_PIDFD_OPEN.patch
delete mode 100644 package/procps-ng/0005-pgrep-Include-sys-syscall.h-if-making-pidwait.patch
diff --git a/package/procps-ng/0001-build-sys-Add-systemd-elogind-to-w.patch b/package/procps-ng/0001-build-sys-Add-systemd-elogind-to-w.patch
deleted file mode 100644
index 4a8b2a6a8b..0000000000
--- a/package/procps-ng/0001-build-sys-Add-systemd-elogind-to-w.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 788248ee631b3b5f82073c36320fc3f4a3c8f9ba Mon Sep 17 00:00:00 2001
-From: Craig Small <csmall@dropbear.xyz>
-Date: Thu, 31 Aug 2023 22:24:23 +1000
-Subject: [PATCH] build-sys: Add systemd/elogind to w
-
-Depending on the compiler flags, w needs to be explictly linked
-to libsystemd or elogind even though libproc2 is linked to it.
-
-Signed-off-by: Craig Small <csmall@dropbear.xyz>
-Upstream: https://gitlab.com/procps-ng/procps/-/commit/ca004d4657d5e8b468a4552ede429be53193a3a9
-Signed-off-by: Hugo Cornelis <hugo.cornelis@essensium.com>
----
- Makefile.am | 7 +++++++
- NEWS | 3 +++
- 2 files changed, 10 insertions(+)
-
-diff --git a/Makefile.am b/Makefile.am
-index f70c8fb1..ddfc0141 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -149,6 +149,13 @@ endif
-
- dist_man_MANS += man/w.1
- src_w_SOURCES = src/w.c local/fileutils.c
-+src_w_LDADD = $(LDADD)
-+if WITH_SYSTEMD
-+src_w_LDADD += @SYSTEMD_LIBS@
-+endif
-+if WITH_ELOGIND
-+src_w_LDADD += @ELOGIND_LIBS@
-+endif
- else
- EXTRA_DIST += man/w.1
- endif
-diff --git a/NEWS b/NEWS
-index 3f2158d4..4ad9f74e 100644
---- a/NEWS
-+++ b/NEWS
-@@ -1,3 +1,6 @@
-+procps-ng-NEXT
-+---------------
-+
- procps-ng-4.0.4
- ---------------
- * library (API & ABI unchanged)
---
-2.34.1
-
diff --git a/package/procps-ng/0002-fix-ncurses-h-include.patch b/package/procps-ng/0002-fix-ncurses-h-include.patch
deleted file mode 100644
index 619126b863..0000000000
--- a/package/procps-ng/0002-fix-ncurses-h-include.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 263fe04f9ed6f3f40fdb7ce249221e03dc926c9b Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Wed, 24 Jul 2024 09:51:00 +0200
-Subject: [PATCH] fix ncurses.h include
-
-Commit 58559a5b64a3634460536d6397ca382a54b599f0 was not backported from
-3.3.17 to 4.0.0 resulting in the following build failure when ncursesw
-headers are not installed in ../usr/include/ncursesw/..:
-
-src/watch.c:56:11: fatal error: ncursesw/ncurses.h: No such file or directory
- 56 | # include <ncursesw/ncurses.h>
- | ^~~~~~~~~~~~~~~~~~~~
-
-Fixes:
- - http://autobuild.buildroot.org/results/b7573be2e78f3d224f48cb3f52087e3d227d58e3
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-
-Upstream: https://gitlab.com/procps-ng/procps/-/commit/263fe04f9ed6f3f40fdb7ce249221e03dc926c9b
-
-Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
-[Bernd: backported to version 4.0.4]
----
- configure.ac | 2 +-
- src/watch.c | 5 ++++-
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index d433901f..38350aaf 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -64,7 +64,7 @@ PROCPS_PROG_PO4A
-
- # Checks for header files.
- AC_HEADER_MAJOR
--AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h langinfo.h libintl.h limits.h locale.h stdint.h stdio_ext.h stdlib.h string.h sys/file.h sys/ioctl.h sys/param.h sys/time.h termios.h unistd.h utmp.h utmpx.h values.h wchar.h wctype.h])
-+AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h langinfo.h libintl.h limits.h locale.h ncursesw/ncurses.h stdint.h stdio_ext.h stdlib.h string.h sys/file.h sys/ioctl.h sys/param.h sys/time.h termios.h unistd.h utmp.h utmpx.h values.h wchar.h wctype.h])
-
- # Checks for typedefs, structures, and compiler characteristics.
- AC_CHECK_HEADER_STDBOOL
-diff --git a/src/watch.c b/src/watch.c
-index ef638e00..7ec634b6 100644
---- a/src/watch.c
-+++ b/src/watch.c
-@@ -53,6 +53,8 @@
- # define _XOPEN_SOURCE_EXTENDED 1
- # include <wchar.h>
- # include <wctype.h>
-+#endif
-+#ifdef HAVE_NCURSESW_NCURSES_H
- # include <ncursesw/ncurses.h>
- #else
- # include <ncurses.h>
---
-GitLab
diff --git a/package/procps-ng/0003-build-sys-Fix-pidfd_open-checking.patch b/package/procps-ng/0003-build-sys-Fix-pidfd_open-checking.patch
deleted file mode 100644
index fc7e092347..0000000000
--- a/package/procps-ng/0003-build-sys-Fix-pidfd_open-checking.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-From f37d178d5c25c547835d054fbb1eda32c25034b3 Mon Sep 17 00:00:00 2001
-From: Craig Small <csmall@dropbear.xyz>
-Date: Mon, 30 Sep 2024 17:26:01 +1000
-Subject: [PATCH] build-sys: Fix pidfd_open checking
-
-The previous build setup would check for pidfd_open using
-AC_CHECK_FUNC and would be incorrectly reported as true.
-
-Also, if pidfd_open() and __NR_pidfd_open were not present,
-pidwait would silently not be built.
-
-So, changes:
- compile a small programin using pidfd_open to test it properly
- conditionally try to find NR_pidfd_open if the function fails
- complain if neither are present
- have --disable-pidwait configure option so you are explicit in
- not wanting and knowing you wont get pidwait
-
-References:
- #352
- commit d9c3e3676d86094abaa239b3218f57bf49d70b4f
- commit 17f94796a9b3c4f1ff28829107a82107dcb362b4
-
-Signed-off-by: Craig Small <csmall@dropbear.xyz>
-
-Upstream: https://gitlab.com/procps-ng/procps/-/commit/2507bc475782ff5e0541d37c780dff1e293c9553
-
-Signed-off-by: Scott Fan <fancp2007@gmail.com>
-[Scott: backported to version 4.0.4]
----
- configure.ac | 45 ++++++++++++++++++++++++++++++---------------
- 1 file changed, 30 insertions(+), 15 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index fec27e3f..0719fcd1 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -170,21 +170,6 @@ AC_TRY_COMPILE([#include <errno.h>],
- AC_MSG_RESULT(yes),
- AC_MSG_RESULT(no))
-
--AC_CHECK_FUNC([pidfd_open], [enable_pidwait=yes], [
-- AC_MSG_CHECKING([for __NR_pidfd_open])
-- AC_COMPILE_IFELSE([AC_LANG_SOURCE([
--#include <sys/syscall.h>
--#ifndef __NR_pidfd_open
--#error __NR_pidfd_open not defined
--#endif
-- ])], [enable_pidwait=yes], [enable_pidwait=no])
-- AC_MSG_RESULT([$enable_pidwait])
--])
--if test "$enable_pidwait" = yes; then
-- AC_DEFINE([ENABLE_PIDWAIT], [1], [Enable pidwait])
--fi
--AM_CONDITIONAL([BUILD_PIDWAIT], [test x$enable_pidwait = xyes])
--
- dnl watch8bit must be before the AC_ARG_WITH set as it sets up ncurses
- AC_SUBST([WITH_WATCH8BIT])
- AC_ARG_ENABLE([watch8bit],
-@@ -321,6 +306,36 @@ AC_ARG_ENABLE([pidof],
- )
- AM_CONDITIONAL(BUILD_PIDOF, test "x$enable_pidof" = xyes)
-
-+# If pidwait is enabled, we need either pidfd_open() or __NR_pidfd_open need to be defined
-+# Cannot use AC_CHECK_FUNC as it (incorrectly) passes with pidfd_open missing
-+AC_ARG_ENABLE([pidwait],
-+ AS_HELP_STRING([--disable-pidwait], [do not build pidwait]),
-+ [], [
-+ enable_pidwait=yes
-+ AC_DEFINE(ENABLE_PIDWAIT, 1, [enable pidwait])
-+ ]
-+)
-+AM_CONDITIONAL(BUILD_PIDWAIT, test "x$enable_pidwait" = xyes)
-+AC_MSG_CHECKING([for pidfd_open()])
-+AC_LINK_IFELSE([AC_LANG_PROGRAM([], [[ [pidfd_open(1,1)]]])],
-+ have_pidfd_open=yes; AC_MSG_RESULT([yes]) ,
-+ have_pidfd_open=no; AC_MSG_RESULT([no])
-+ )
-+
-+AS_IF([[test "x$enable_pidwait" = xyes -a "x$have_pidfd_open" = xno]],
-+ AC_MSG_CHECKING([for __NR_pidfd_open])
-+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([
-+#include <sys/syscall.h>
-+#ifndef __NR_pidfd_open
-+#error __NR_pidfd_open not defined
-+#endif
-+ ])],
-+ AC_MSG_RESULT([yes]),
-+ AC_MSG_RESULT([no])
-+ AC_MSG_ERROR([Neither pidfd_open or __NR_pidfd_open found. Disable pidwait with configure option --disable-pidwait])
-+ )
-+ ,[])
-+
- AC_ARG_ENABLE([kill],
- AS_HELP_STRING([--disable-kill], [do not build kill]),
- [], [enable_kill=yes]
---
-2.43.0
-
diff --git a/package/procps-ng/0004-build-sys-Fix-define-of-HAVE_PIDFD_OPEN.patch b/package/procps-ng/0004-build-sys-Fix-define-of-HAVE_PIDFD_OPEN.patch
deleted file mode 100644
index aa65df7706..0000000000
--- a/package/procps-ng/0004-build-sys-Fix-define-of-HAVE_PIDFD_OPEN.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 1e2d53e1d86cb75e8f39b42b9a5c409e5d3261ed Mon Sep 17 00:00:00 2001
-From: oli-ben <24815225-oli-ben@users.noreply.gitlab.com>
-Date: Wed, 27 Nov 2024 20:17:11 +0000
-Subject: [PATCH] build-sys: Fix define of HAVE_PIDFD_OPEN
-
-Fix cross-compilation issues when using GCC-12.3
-* configure fails to detect that the sysroot does support the pidfd_open
- syscall wrapper
-* configure fails to define HAVE_PIDFD_OPEN which is used in pgrep.c,
- so it fails building, because __NR_pidfd_open is then undefined
-
-Upstream: https://gitlab.com/procps-ng/procps/-/commit/587efb47df7ddbfda4e6abdd1e7792a2531a238f
-
-Signed-off-by: Scott Fan <fancp2007@gmail.com>
-[Scott: backported to version 4.0.4]
----
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 0719fcd1..6242a8f8 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -317,8 +317,8 @@ AC_ARG_ENABLE([pidwait],
- )
- AM_CONDITIONAL(BUILD_PIDWAIT, test "x$enable_pidwait" = xyes)
- AC_MSG_CHECKING([for pidfd_open()])
--AC_LINK_IFELSE([AC_LANG_PROGRAM([], [[ [pidfd_open(1,1)]]])],
-- have_pidfd_open=yes; AC_MSG_RESULT([yes]) ,
-+AC_LINK_IFELSE([AC_LANG_PROGRAM([], [[pidfd_open(1,1)]])],
-+ have_pidfd_open=yes; AC_DEFINE(HAVE_PIDFD_OPEN, 1, [pidfd_open is defined]) AC_MSG_RESULT([yes]),
- have_pidfd_open=no; AC_MSG_RESULT([no])
- )
-
---
-2.43.0
-
diff --git a/package/procps-ng/0005-pgrep-Include-sys-syscall.h-if-making-pidwait.patch b/package/procps-ng/0005-pgrep-Include-sys-syscall.h-if-making-pidwait.patch
deleted file mode 100644
index 74f93c8e49..0000000000
--- a/package/procps-ng/0005-pgrep-Include-sys-syscall.h-if-making-pidwait.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 81ded587d2484b6f470f2d5c837c5591491377ce Mon Sep 17 00:00:00 2001
-From: Craig Small <csmall@dropbear.xyz>
-Date: Thu, 28 Nov 2024 07:20:42 +1100
-Subject: [PATCH] pgrep: Include sys/syscall.h if making pidwait
-
-sys/syscall.h would only be included if pidwait was made
-and we found pidfd_open() The previous commit fixed the
-finding part, but in fact we want sys/syscall.h either
-way because syscall() is defined there too.
-
-Most of the time the header is included by other headers
-but adding it explicitly means if that header is removed or
-changed it still works.
-
-Signed-off-by: Craig Small <csmall@dropbear.xyz>
-
-Upstream: https://gitlab.com/procps-ng/procps/-/commit/5acbb5dc1587d688de646d739a97251eb893bbb0
-
-Signed-off-by: Scott Fan <fancp2007@gmail.com>
-[Scott: backported to version 4.0.4]
----
- src/pgrep.c | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/src/pgrep.c b/src/pgrep.c
-index d8e57dff..a2607532 100644
---- a/src/pgrep.c
-+++ b/src/pgrep.c
-@@ -44,9 +44,7 @@
-
- #ifdef ENABLE_PIDWAIT
- #include <sys/epoll.h>
--#ifndef HAVE_PIDFD_OPEN
- #include <sys/syscall.h>
--#endif /* !HAVE_PIDFD_OPEN */
- #endif
-
- /* EXIT_SUCCESS is 0 */
---
-2.43.0
-
diff --git a/package/procps-ng/procps-ng.hash b/package/procps-ng/procps-ng.hash
index 0d9cd9a835..21c661192c 100644
--- a/package/procps-ng/procps-ng.hash
+++ b/package/procps-ng/procps-ng.hash
@@ -1,8 +1,8 @@
# From http://sourceforge.net/projects/procps-ng/files/Production/
-md5 2f747fc7df8ccf402d03e375c565cf96 procps-ng-4.0.4.tar.xz
-sha1 2b859acd7060e9898ac457dbd26dbebf563cc44b procps-ng-4.0.4.tar.xz
+md5 90803e64f51f192f3325d25c3335d057 procps-ng-4.0.5.tar.xz
+sha1 a36b8ab95950addb4b34251fcf23195c45a63eda procps-ng-4.0.5.tar.xz
# Locally calculated after checking signature
-# http://downloads.sourceforge.net/project/procps-ng/Production/procps-ng-4.0.4.tar.xz.asc
-sha256 22870d6feb2478adb617ce4f09a787addaf2d260c5a8aa7b17d889a962c5e42e procps-ng-4.0.4.tar.xz
+# http://downloads.sourceforge.net/project/procps-ng/Production/procps-ng-4.0.5.tar.xz.asc
+sha256 c2e6d193cc78f84cd6ddb72aaf6d5c6a9162f0470e5992092057f5ff518562fa procps-ng-4.0.5.tar.xz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
sha256 681e386e44a19d7d0674b4320272c90e66b6610b741e7e6305f8219c42e85366 COPYING.LIB
diff --git a/package/procps-ng/procps-ng.mk b/package/procps-ng/procps-ng.mk
index 9200b6faa6..57de34561a 100644
--- a/package/procps-ng/procps-ng.mk
+++ b/package/procps-ng/procps-ng.mk
@@ -4,7 +4,7 @@
#
################################################################################
-PROCPS_NG_VERSION = 4.0.4
+PROCPS_NG_VERSION = 4.0.5
PROCPS_NG_SOURCE = procps-ng-$(PROCPS_NG_VERSION).tar.xz
PROCPS_NG_SITE = http://downloads.sourceforge.net/project/procps-ng/Production
PROCPS_NG_LICENSE = GPL-2.0+, LGPL-2.0+ (libproc and libps)
--
2.47.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/procps-ng: bump version to 4.0.5
2024-12-29 13:17 ` [Buildroot] [PATCH 2/2] package/procps-ng: bump version to 4.0.5 Thomas Petazzoni via buildroot
@ 2024-12-29 15:17 ` Baruch Siach via buildroot
2024-12-29 20:00 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 4+ messages in thread
From: Baruch Siach via buildroot @ 2024-12-29 15:17 UTC (permalink / raw)
To: Thomas Petazzoni via buildroot; +Cc: Thomas Petazzoni
Hi Thomas,
On Sun, Dec 29 2024, Thomas Petazzoni via buildroot wrote:
> Patch 0001 is dropped as it's upstream as of
> ca004d4657d5e8b468a4552ede429be53193a3a9.
>
> Patch 0002 is dropped as it's upstream as of
> 263fe04f9ed6f3f40fdb7ce249221e03dc926c9b.
With both patches dropped, is autoreconf still necessary?
In any case, the comment at PROCPS_NG_AUTORECONF needs update.
baruch
--
~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/procps-ng: bump version to 4.0.5
2024-12-29 15:17 ` Baruch Siach via buildroot
@ 2024-12-29 20:00 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-12-29 20:00 UTC (permalink / raw)
To: Baruch Siach; +Cc: Thomas Petazzoni via buildroot
On Sun, 29 Dec 2024 17:17:20 +0200
Baruch Siach <baruch@tkos.co.il> wrote:
> > Patch 0002 is dropped as it's upstream as of
> > 263fe04f9ed6f3f40fdb7ce249221e03dc926c9b.
>
> With both patches dropped, is autoreconf still necessary?
>
> In any case, the comment at PROCPS_NG_AUTORECONF needs update.
Hm, you're totally right. Let me double check this and send a v2.
Thanks for the careful review!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-29 20:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-29 13:17 [Buildroot] [PATCH 1/2] package/procps-ng: add wchar dependency Thomas Petazzoni via buildroot
2024-12-29 13:17 ` [Buildroot] [PATCH 2/2] package/procps-ng: bump version to 4.0.5 Thomas Petazzoni via buildroot
2024-12-29 15:17 ` Baruch Siach via buildroot
2024-12-29 20:00 ` Thomas Petazzoni via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox