[ptxdist] [ANNOUNCE] PTXdist 2023.07.1 released

2023-07-10 Thread Robert Schwebel
On Wed, Jul 05, 2023 at 03:51:02PM +0200, Michael Olbrich wrote:
> I'm happy to announce that I've just released ptxdist-2023.07.0.

It turned out that there is a bug in the 'nested ptxdist execution'
feature that lets 'ptxdist platform ' and
similar operations return a non-zero retval, which (while the actual
operation still works) breaks at automatic builds in our test farm.

As Michael is currently on vacation, we decided yesterday to revert the
offending commit and release a ptxdist-2023.07.1, which is now on the
server.

A proper fix will follow later on.

Shortlog:

Marc Kleine-Budde (1):
  Revert "add support for nested PTXdist execution"

rsc
-- 
Pengutronix e.K.   | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21   | https://www.pengutronix.de/ |
31137 Hildesheim, Germany  | Phone: +49-5121-206917-0|
Amtsgericht Hildesheim, HRA 2686   | Fax:   +49-5121-206917-9|



[ptxdist] [PATCH] pipewire: version bump 0.3.72 -> 0.3.73

2023-07-10 Thread Philipp Zabel
https://gitlab.freedesktop.org/pipewire/pipewire/-/releases/0.3.73

Signed-off-by: Philipp Zabel 
---
 rules/pipewire.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/pipewire.make b/rules/pipewire.make
index d13ec03a93b0..8fbe8382c225 100644
--- a/rules/pipewire.make
+++ b/rules/pipewire.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PIPEWIRE) += pipewire
 #
 # Paths and names
 #
-PIPEWIRE_VERSION   := 0.3.72
-PIPEWIRE_MD5   := 8e84abc4b0ef8fae254916be0f6deef5
+PIPEWIRE_VERSION   := 0.3.73
+PIPEWIRE_MD5   := 64c6cfae9c29898133fe650e511b18e6
 PIPEWIRE   := pipewire-$(PIPEWIRE_VERSION)
 PIPEWIRE_SUFFIX:= tar.bz2
 PIPEWIRE_URL   := 
https://gitlab.freedesktop.org/pipewire/pipewire/-/archive/$(PIPEWIRE_VERSION)/$(PIPEWIRE).$(PIPEWIRE_SUFFIX)
-- 
2.39.2




[ptxdist] [PATCH 3/3] configure.ac: replace obsolete AC_HEADER_STDC

2023-07-10 Thread Robert Schwebel
The AC_HEADER_STDC macro is obsolete (found by autoupdate), replace it by
AC_CHECK_INCLUDES_DEFAULT and AC_PROG_EGREP which do the same.

Signed-off-by: Robert Schwebel 
---
 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 2499b06fc..7a013a51a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -38,7 +38,8 @@ AS_IF([test -z "$PKG_CONFIG"], AC_MSG_ERROR([pkg-config not 
found.]))
 dnl
 dnl Check header files, mostly for lxdialog & kconfig
 dnl
-AC_HEADER_STDC
+AC_CHECK_INCLUDES_DEFAULT
+AC_PROG_EGREP
 
 AC_CHECK_HEADERS([fcntl.h inttypes.h libintl.h limits.h locale.h malloc.h 
stddef.h stdlib.h string.h sys/time.h unistd.h])
 
-- 
2.30.2




[ptxdist] [PATCH 1/3] configure.ac: bump required autoconf version from 2.59 to 2.69

2023-07-10 Thread Robert Schwebel
2.69 is in debian o-o-stable (buster) and o-stable (bullseye), so it
should be safe as a prerequisite.

Signed-off-by: Robert Schwebel 
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 43e00f86e..c096b818e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl
 dnl Process this file with autoconf to produce a configure script.
 dnl Most parts of this configure script have been borrowed from quilt.
 dnl
-AC_PREREQ(2.59)
+AC_PREREQ([2.69])
 
 AC_INIT([ptxdist],
m4_esyscmd([scripts/kernel/setlocalversion .tarball-version]),
-- 
2.30.2




[ptxdist] [PATCH 2/3] configure.ac: adapt quoting to autoupdate's suggestion

2023-07-10 Thread Robert Schwebel
Signed-off-by: Robert Schwebel 
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index c096b818e..2499b06fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,8 +5,8 @@ dnl
 AC_PREREQ([2.69])
 
 AC_INIT([ptxdist],
-   m4_esyscmd([scripts/kernel/setlocalversion .tarball-version]),
-   [ptxdist@pengutronix.de])
+   [m4_esyscmd([scripts/kernel/setlocalversion .tarball-version])],
+   [ptxdist@pengutronix.de])
 AC_CONFIG_AUX_DIR(scripts/autoconf)
 AC_CANONICAL_BUILD
 AC_CANONICAL_HOST
-- 
2.30.2