mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2
@ 2020-07-26 14:24 Robert Schwebel
  2020-07-26 14:24 ` [ptxdist] [PATCH 02/13] openssh: version bump 8.0p1 -> 8.3p1 Robert Schwebel
                   ` (12 more replies)
  0 siblings, 13 replies; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Patches have been ported, one new configure option.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 ...1-teach-ncurses-config-about-sysroot.patch | 28 ++++++-------------
 patches/{ncurses-6.1 => ncurses-6.2}/series   |  0
 rules/ncurses.make                            |  7 +++--
 3 files changed, 12 insertions(+), 23 deletions(-)
 rename patches/{ncurses-6.1 => ncurses-6.2}/0001-teach-ncurses-config-about-sysroot.patch (54%)
 rename patches/{ncurses-6.1 => ncurses-6.2}/series (100%)

diff --git a/patches/ncurses-6.1/0001-teach-ncurses-config-about-sysroot.patch b/patches/ncurses-6.2/0001-teach-ncurses-config-about-sysroot.patch
similarity index 54%
rename from patches/ncurses-6.1/0001-teach-ncurses-config-about-sysroot.patch
rename to patches/ncurses-6.2/0001-teach-ncurses-config-about-sysroot.patch
index 64a0e960a..707b5a49c 100644
--- a/patches/ncurses-6.1/0001-teach-ncurses-config-about-sysroot.patch
+++ b/patches/ncurses-6.2/0001-teach-ncurses-config-about-sysroot.patch
@@ -5,40 +5,28 @@ Subject: [PATCH] teach ncurses-config about sysroot
 This patch teaches ncurses-config about sysroot
 
 Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
+[ported from ncurses 6.1 to 6.2]
+Signed-off-by: Robert Schwebel <rsc@pengutronix.de>
 ---
  misc/ncurses-config.in |   12 ++++++------
  1 files changed, 6 insertions(+), 6 deletions(-)
 
---- ncurses-6.1/misc/ncurses-config.in	2017-12-09 23:45:44.000000000 +0100
-+++ ncurses-6.1/misc/ncurses-config.in	2018-02-08 13:50:07.365266351 +0100
-@@ -101,21 +101,21 @@
+--- ncurses-6.2/misc/ncurses-config.in	2020-02-03 00:34:34.000000000 +0100
++++ ncurses-6.2-ptx/misc/ncurses-config.in	2020-07-25 23:28:48.123350040 +0200
+@@ -149,10 +149,10 @@
  	--cflags)
  		INCS="@PKG_CFLAGS@"
- 		if test "x@WITH_OVERWRITE@" = xno ; then
+ 		if [ "x@WITH_OVERWRITE@" = xno ]; then
 -			INCS="$INCS -I${includesubdir}"
 +			INCS="$INCS -I${SYSROOT}${includesubdir}"
  		fi
--		if test "${includedir}" != /usr/include ; then
+ 		if [ "${includedir}" != /usr/include ]; then
 -			INCS="$INCS -I${includedir}"
-+		if test "${SYSROOT}${includedir}" != /usr/include ; then
 +			INCS="$INCS -I${SYSROOT}${includedir}"
  		fi
  		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
  			$INCS
- ENDECHO
- 		;;
- 	--libs)
--		if test "$libdir" = /usr/lib
-+		if test "${SYSROOT}$libdir" = /usr/lib
- 		then
- 			LIBDIR=
- 		else
--			LIBDIR=-L$libdir
-+			LIBDIR=-L${SYSROOT}$libdir
- 		fi
- 		if test @TINFO_NAME@ = @LIB_NAME@ ; then
- 		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
-@@ -154,7 +154,7 @@
+@@ -235,7 +235,7 @@
  		echo $INCS
  		;;
  	--libdir)
diff --git a/patches/ncurses-6.1/series b/patches/ncurses-6.2/series
similarity index 100%
rename from patches/ncurses-6.1/series
rename to patches/ncurses-6.2/series
diff --git a/rules/ncurses.make b/rules/ncurses.make
index 3d2e75ce9..6a7a13ef1 100644
--- a/rules/ncurses.make
+++ b/rules/ncurses.make
@@ -13,16 +13,16 @@ PACKAGES-$(PTXCONF_NCURSES) += ncurses
 #
 # Paths and names
 #
-NCURSES_VERSION	:= 6.1
+NCURSES_VERSION	:= 6.2
 NCURSES_MAJOR	:= $(word 1,$(subst ., ,$(NCURSES_VERSION)))
-NCURSES_MD5	:= 98c889aaf8d23910d2b92d65be2e737a
+NCURSES_MD5	:= e812da327b1c2214ac1aed440ea3ae8d
 NCURSES		:= ncurses-$(NCURSES_VERSION)
 NCURSES_SUFFIX	:= tar.gz
 NCURSES_URL	:= $(call ptx/mirror, GNU, ncurses/$(NCURSES).$(NCURSES_SUFFIX))
 NCURSES_SOURCE	:= $(SRCDIR)/$(NCURSES).$(NCURSES_SUFFIX)
 NCURSES_DIR	:= $(BUILDDIR)/$(NCURSES)
 NCURSES_LICENSE	:= MIT
-NCURSES_LICENSE_FILES := file://COPYING;md5=8a241caac0fd66225f7ac2d1b2ef76ac
+NCURSES_LICENSE_FILES := file://COPYING;md5=910e05334f7e0b7631da6b4ebb1e1aab
 
 # ----------------------------------------------------------------------------
 # Prepare
@@ -61,6 +61,7 @@ NCURSES_AUTOCONF_SHARED = \
 	--without-ticlib \
 	--without-gpm \
 	--without-dlsym \
+	--without-pcre2 \
 	--without-sysmouse \
 	--disable-rpath \
 	--disable-relink \
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 02/13] openssh: version bump 8.0p1 -> 8.3p1
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 03/13] libndp: version bump 1.6 -> 1.7 Robert Schwebel
                   ` (11 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There is one new configure option.
The change in the license file fixes an umlaut encoding.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/openssh.make | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/rules/openssh.make b/rules/openssh.make
index 29b8535c3..2e3fedcae 100644
--- a/rules/openssh.make
+++ b/rules/openssh.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_OPENSSH) += openssh
 #
 # Paths and names
 #
-OPENSSH_VERSION	:= 8.0p1
-OPENSSH_MD5	:= bf050f002fe510e1daecd39044e1122d
+OPENSSH_VERSION	:= 8.3p1
+OPENSSH_MD5	:= 68d7527bf2672153ca47402f6489a1af
 OPENSSH		:= openssh-$(OPENSSH_VERSION)
 OPENSSH_SUFFIX	:= tar.gz
 OPENSSH_URL	:= \
@@ -26,7 +26,7 @@ OPENSSH_URL	:= \
 OPENSSH_SOURCE	:= $(SRCDIR)/$(OPENSSH).$(OPENSSH_SUFFIX)
 OPENSSH_DIR	:= $(BUILDDIR)/$(OPENSSH)
 OPENSSH_LICENSE	:= BSD AND BSD-2-Clause AND BSD-3-Clause AND MIT AND Beerware AND ISC
-OPENSSH_LICENSE_FILES := file://LICENCE;encoding=ISO-8859-1;md5=429658c6612f3a9b1293782366ab29d8
+OPENSSH_LICENSE_FILES := file://LICENCE;encoding=ISO-8859-1;md5=18d9e5a8b3dd1790d73502f50426d4d3
 
 # ----------------------------------------------------------------------------
 # Prepare
@@ -51,6 +51,7 @@ OPENSSH_CONF_OPT	:= \
 	--sysconfdir=/etc/ssh \
 	$(GLOBAL_LARGE_FILE_OPTION) \
 	--disable-pkcs11 \
+	--disable-security-key \
 	--disable-strip \
 	--disable-etc-default-login \
 	--disable-lastlog \
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 03/13] libndp: version bump 1.6 -> 1.7
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
  2020-07-26 14:24 ` [ptxdist] [PATCH 02/13] openssh: version bump 8.0p1 -> 8.3p1 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 04/13] haveged: version bump 1.9.8 -> 1.9.13 Robert Schwebel
                   ` (10 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are no configure option changes and no patches.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/libndp.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/libndp.make b/rules/libndp.make
index 11c327ad3..1711c508c 100644
--- a/rules/libndp.make
+++ b/rules/libndp.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBNDP) += libndp
 #
 # Paths and names
 #
-LIBNDP_VERSION	:= 1.6
-LIBNDP_MD5	:= 1e54d26bcb4a4110bc3f90c5dd04f1a7
+LIBNDP_VERSION	:= 1.7
+LIBNDP_MD5	:= ea4a2a3351991c1d561623772364ae14
 LIBNDP		:= libndp-$(LIBNDP_VERSION)
 LIBNDP_SUFFIX	:= tar.gz
 LIBNDP_URL	:= http://libndp.org/files/$(LIBNDP).$(LIBNDP_SUFFIX)
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 04/13] haveged: version bump 1.9.8 -> 1.9.13
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
  2020-07-26 14:24 ` [ptxdist] [PATCH 02/13] openssh: version bump 8.0p1 -> 8.3p1 Robert Schwebel
  2020-07-26 14:24 ` [ptxdist] [PATCH 03/13] libndp: version bump 1.6 -> 1.7 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 05/13] less: version bump 487 -> 530 Robert Schwebel
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

The patch was a backport from upstream and has been applied meanwhile.

The license was extended by one line, with a new copyright holder and
year, but no change of content.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 ...-fix-compilation-with-enable-threads.patch | 33 -------------------
 patches/haveged-1.9.8/series                  |  1 -
 rules/haveged.make                            |  6 ++--
 3 files changed, 3 insertions(+), 37 deletions(-)
 delete mode 100644 patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch
 delete mode 100644 patches/haveged-1.9.8/series

diff --git a/patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch b/patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch
deleted file mode 100644
index 38895a97c..000000000
--- a/patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From cb1f0653c45d9c4a9a855119c85a1d4bfcc9b3b2 Mon Sep 17 00:00:00 2001
-From: Lars Wendler <polynomial-c@gentoo.org>
-Date: Thu, 14 Nov 2019 16:15:00 +0100
-Subject: [PATCH] build: Fix compilation with --enable-threads
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Previously failed with:
-
-havegetune.c:190:12: error: ‘BUILD_THREAD’ undeclared (first use in this function); did you mean ‘BUILD_THREADS’?
-  190 |    *bp++ = BUILD_THREAD;
-      |            ^~~~~~~~~~~~
-      |            BUILD_THREADS
-
-Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
----
- src/havegetune.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/havegetune.c b/src/havegetune.c
-index de39c53..6f14476 100644
---- a/src/havegetune.c
-+++ b/src/havegetune.c
-@@ -187,7 +187,7 @@ void havege_tune(          /* RETURN: none               */
-    *bp++ = BUILD_CPUID;
- #endif
- #if NUMBER_CORES>1
--   *bp++ = BUILD_THREAD;
-+   *bp++ = BUILD_THREADS;
- #endif
- #ifdef ONLINE_TESTS_ENABLE
-    *bp++ = BUILD_OLT;
diff --git a/patches/haveged-1.9.8/series b/patches/haveged-1.9.8/series
deleted file mode 100644
index cb49a0968..000000000
--- a/patches/haveged-1.9.8/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-cb1f06-fix-compilation-with-enable-threads.patch
diff --git a/rules/haveged.make b/rules/haveged.make
index 155c142d4..7c015c714 100644
--- a/rules/haveged.make
+++ b/rules/haveged.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_HAVEGED) += haveged
 #
 # Paths and names
 #
-HAVEGED_VERSION	:= 1.9.8
-HAVEGED_MD5	:= fba3c88e416ad99ed69849b61fdcaad0
+HAVEGED_VERSION	:= 1.9.13
+HAVEGED_MD5	:= 5391978794208b6cca6f53d7a6211c04
 HAVEGED		:= haveged-$(HAVEGED_VERSION)
 HAVEGED_SUFFIX	:= tar.gz
 HAVEGED_URL	:= \
@@ -25,7 +25,7 @@ HAVEGED_DIR	:= $(BUILDDIR)/$(HAVEGED)
 HAVEGED_LICENSE	:= GPL-3.0-or-later
 HAVEGED_LICENSE_FILES   := \
 	file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
-	file://src/haveged.c;startline=1;endline=19;md5=772ad7f0aa1fd2230cffdf7be784b15f
+	file://src/haveged.c;startline=1;endline=20;md5=0b45b25b79d4a3b7d800cc2c951429b2
 
 # ----------------------------------------------------------------------------
 # Prepare
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 05/13] less: version bump 487 -> 530
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (2 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 04/13] haveged: version bump 1.9.8 -> 1.9.13 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 06/13] i2c-tools: version bump 4.0 -> 4.1 Robert Schwebel
                   ` (8 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There is a new version, without configure changes or patches.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/less.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/less.make b/rules/less.make
index 0a392cfec..7ccb54a99 100644
--- a/rules/less.make
+++ b/rules/less.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
 #
 # Paths and names
 #
-LESS_VERSION	:= 487
-LESS_MD5	:= dcc8bf183a83b362d37fe9ef8df1fb60
+LESS_VERSION	:= 530
+LESS_MD5	:= 6a39bccf420c946b0fd7ffc64961315b
 LESS		:= less-$(LESS_VERSION)
 LESS_SUFFIX	:= tar.gz
 LESS_URL	:= $(call ptx/mirror, GNU, less/$(LESS).$(LESS_SUFFIX))
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 06/13] i2c-tools: version bump 4.0 -> 4.1
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (3 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 05/13] less: version bump 487 -> 530 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 07/13] libseccomp: version bump 2.4.3 -> 2.5.0 Robert Schwebel
                   ` (7 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

The patches can be removed, as they were all backports from upstream and
are applied in the meantime.

Makefile has changed slightly, adapt the rules.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 ...b-Module.mk-Add-missing-dependencies.patch | 28 ---------
 ...s-Module.mk-Add-missing-dependencies.patch | 62 -------------------
 ...rog-Module.mk-Add-missing-dependency.patch | 26 --------
 patches/i2c-tools-4.0/series                  |  6 --
 rules/i2c-tools.make                          | 10 +--
 5 files changed, 6 insertions(+), 126 deletions(-)
 delete mode 100644 patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch
 delete mode 100644 patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch
 delete mode 100644 patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch
 delete mode 100644 patches/i2c-tools-4.0/series

diff --git a/patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch b/patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch
deleted file mode 100644
index cb8908802..000000000
--- a/patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From: Jean Delvare <jdelvare@suse.de>
-Date: Wed, 6 Dec 2017 09:55:04 +0100
-Subject: [PATCH] lib/Module.mk: Add missing dependencies
-
-The lib symlinks lacked a dependency to the actual library file, so
-parallel builds could run into a race and break.
----
- lib/Module.mk | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/lib/Module.mk b/lib/Module.mk
-index 432a0518fc54..fd2c8c4e59f5 100644
---- a/lib/Module.mk
-+++ b/lib/Module.mk
-@@ -42,11 +42,11 @@ endif
- $(LIB_DIR)/$(LIB_SHLIBNAME): $(LIB_DIR)/smbus.o
- 	$(CC) -shared $(LDFLAGS) -Wl,--version-script=$(LIB_DIR)/libi2c.map -Wl,-soname,$(LIB_SHSONAME) -o $@ $^ -lc
- 
--$(LIB_DIR)/$(LIB_SHSONAME):
-+$(LIB_DIR)/$(LIB_SHSONAME): $(LIB_DIR)/$(LIB_SHLIBNAME)
- 	$(RM) $@
- 	$(LN) $(LIB_SHLIBNAME) $@
- 
--$(LIB_DIR)/$(LIB_SHBASENAME):
-+$(LIB_DIR)/$(LIB_SHBASENAME): $(LIB_DIR)/$(LIB_SHLIBNAME)
- 	$(RM) $@
- 	$(LN) $(LIB_SHLIBNAME) $@
- 
diff --git a/patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch b/patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch
deleted file mode 100644
index c4d5b9bda..000000000
--- a/patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-From: Jean Delvare <jdelvare@suse.de>
-Date: Thu, 14 Dec 2017 08:52:26 +0100
-Subject: [PATCH] tools/Module.mk: Add missing dependencies
-
-Better build the library before building the tools which link against
-it, otherwise parallel builds could run into a race and break.
-
-Signed-off-by: Jean Delvare <jdelvare@suse.de>
-Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com>
-Acked-by: Angelo Compagnucci <angelo@amarulasolutions.com>
----
- lib/Module.mk   |  7 +++++++
- tools/Module.mk | 10 +++++-----
- 2 files changed, 12 insertions(+), 5 deletions(-)
-
-diff --git a/lib/Module.mk b/lib/Module.mk
-index fd2c8c4e59f5..92aba30131f0 100644
---- a/lib/Module.mk
-+++ b/lib/Module.mk
-@@ -35,6 +35,13 @@ LIB_TARGETS	+= $(LIB_STLIBNAME)
- LIB_OBJECTS	+= smbus.ao
- endif
- 
-+# Library file to link against (static or dynamic)
-+ifeq ($(USE_STATIC_LIB),1)
-+LIB_DEPS	:= $(LIB_DIR)/$(LIB_STLIBNAME)
-+else
-+LIB_DEPS	:= $(LIB_DIR)/$(LIB_SHBASENAME)
-+endif
-+
- #
- # Libraries
- #
-diff --git a/tools/Module.mk b/tools/Module.mk
-index 6421a23883bf..609de7a24784 100644
---- a/tools/Module.mk
-+++ b/tools/Module.mk
-@@ -24,19 +24,19 @@ TOOLS_TARGETS	:= i2cdetect i2cdump i2cset i2cget i2ctransfer
- # Programs
- #
- 
--$(TOOLS_DIR)/i2cdetect: $(TOOLS_DIR)/i2cdetect.o $(TOOLS_DIR)/i2cbusses.o
-+$(TOOLS_DIR)/i2cdetect: $(TOOLS_DIR)/i2cdetect.o $(TOOLS_DIR)/i2cbusses.o $(LIB_DEPS)
- 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
- 
--$(TOOLS_DIR)/i2cdump: $(TOOLS_DIR)/i2cdump.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
-+$(TOOLS_DIR)/i2cdump: $(TOOLS_DIR)/i2cdump.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
- 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
- 
--$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
-+$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
- 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
- 
--$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
-+$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
- 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
- 
--$(TOOLS_DIR)/i2ctransfer: $(TOOLS_DIR)/i2ctransfer.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
-+$(TOOLS_DIR)/i2ctransfer: $(TOOLS_DIR)/i2ctransfer.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
- 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
- 
- #
diff --git a/patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch b/patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch
deleted file mode 100644
index 902b5d775..000000000
--- a/patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: "Maxin B. John" <maxin.john@gmail.com>
-Date: Tue, 19 Dec 2017 13:46:15 +0100
-Subject: [PATCH] eeprog/Module.mk: Add missing dependency
-
-Absence of this dependency caused parallel build to run into a race
-and break.
-
-Signed-off-by: Maxin B. John <maxin.john@intel.com>
-Signed-off-by: Jean Delvare <jdelvare@suse.de>
----
- eeprog/Module.mk | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/eeprog/Module.mk b/eeprog/Module.mk
-index 9d368698c6a5..d2158555ab76 100644
---- a/eeprog/Module.mk
-+++ b/eeprog/Module.mk
-@@ -20,7 +20,7 @@ EEPROG_TARGETS	:= eeprog
- # Programs
- #
- 
--$(EEPROG_DIR)/eeprog: $(EEPROG_DIR)/eeprog.o $(EEPROG_DIR)/24cXX.o
-+$(EEPROG_DIR)/eeprog: $(EEPROG_DIR)/eeprog.o $(EEPROG_DIR)/24cXX.o $(LIB_DEPS)
- 	$(CC) $(LDFLAGS) -o $@ $^ $(EEPROG_LDFLAGS)
- 
- #
diff --git a/patches/i2c-tools-4.0/series b/patches/i2c-tools-4.0/series
deleted file mode 100644
index e3baaaea2..000000000
--- a/patches/i2c-tools-4.0/series
+++ /dev/null
@@ -1,6 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-lib-Module.mk-Add-missing-dependencies.patch
-0002-tools-Module.mk-Add-missing-dependencies.patch
-0003-eeprog-Module.mk-Add-missing-dependency.patch
-# 17489d574df925f551430e5937f3baa9  - git-ptx-patches magic
diff --git a/rules/i2c-tools.make b/rules/i2c-tools.make
index 9a409deed..9100c8a95 100644
--- a/rules/i2c-tools.make
+++ b/rules/i2c-tools.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_I2C_TOOLS) += i2c-tools
 #
 # Paths and names
 #
-I2C_TOOLS_VERSION	:= 4.0
-I2C_TOOLS_MD5		:= f873c657d00bc00e9c47ed938c2cd770
+I2C_TOOLS_VERSION	:= 4.1
+I2C_TOOLS_MD5		:= e2981debb4a822a279be7e45a0ede988
 I2C_TOOLS		:= i2c-tools-$(I2C_TOOLS_VERSION)
 I2C_TOOLS_SUFFIX	:= tar.xz
 I2C_TOOLS_URL		:= https://www.kernel.org/pub/software/utils/i2c-tools/$(I2C_TOOLS).$(I2C_TOOLS_SUFFIX)
@@ -31,12 +31,14 @@ I2C_TOOLS_CONF_TOOL := NO
 
 I2C_TOOLS_MAKE_ENV := \
 	$(CROSS_ENV) \
-	BUILD_STATIC_LIB=0
+	BUILD_STATIC_LIB=0 \
+	BUILD_DYNAMIC_LIB=1 \
+	USE_DYNAMIC_LIB=1
 
 # install the header files to include/i2c-tools
 # this way they don't collide with the toolchain's i2c headers
 I2C_TOOLS_INSTALL_OPT := \
-	prefix=/usr \
+	PREFIX=/usr \
 	incdir=/usr/include/i2c-tools \
 	install
 
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 07/13] libseccomp: version bump 2.4.3 -> 2.5.0
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (4 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 06/13] i2c-tools: version bump 4.0 -> 4.1 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 08/13] readline: version bump 7.0 -> 8.0 Robert Schwebel
                   ` (6 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Patches have been ported; there are no changes in configure.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 ...1-run-time-use-a-broadly-supported-shell-interpreter.patch | 0
 patches/{libseccomp-2.4.3 => libseccomp-2.5.0}/series         | 0
 rules/libseccomp.make                                         | 4 ++--
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename patches/{libseccomp-2.4.3 => libseccomp-2.5.0}/0001-run-time-use-a-broadly-supported-shell-interpreter.patch (100%)
 rename patches/{libseccomp-2.4.3 => libseccomp-2.5.0}/series (100%)

diff --git a/patches/libseccomp-2.4.3/0001-run-time-use-a-broadly-supported-shell-interpreter.patch b/patches/libseccomp-2.5.0/0001-run-time-use-a-broadly-supported-shell-interpreter.patch
similarity index 100%
rename from patches/libseccomp-2.4.3/0001-run-time-use-a-broadly-supported-shell-interpreter.patch
rename to patches/libseccomp-2.5.0/0001-run-time-use-a-broadly-supported-shell-interpreter.patch
diff --git a/patches/libseccomp-2.4.3/series b/patches/libseccomp-2.5.0/series
similarity index 100%
rename from patches/libseccomp-2.4.3/series
rename to patches/libseccomp-2.5.0/series
diff --git a/rules/libseccomp.make b/rules/libseccomp.make
index 07734c82a..71f2c0570 100644
--- a/rules/libseccomp.make
+++ b/rules/libseccomp.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBSECCOMP) += libseccomp
 #
 # Paths and names
 #
-LIBSECCOMP_VERSION	:= 2.4.3
-LIBSECCOMP_MD5		:= 1de97a3c04889a790d97722d08f4a8d1
+LIBSECCOMP_VERSION	:= 2.5.0
+LIBSECCOMP_MD5		:= 463b688bf7d227325b5a465b6bdc3ec4
 LIBSECCOMP		:= libseccomp-$(LIBSECCOMP_VERSION)
 LIBSECCOMP_SUFFIX	:= tar.gz
 LIBSECCOMP_URL		:= https://github.com/seccomp/libseccomp/releases/download/v$(LIBSECCOMP_VERSION)/$(LIBSECCOMP).$(LIBSECCOMP_SUFFIX)
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 08/13] readline: version bump 7.0 -> 8.0
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (5 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 07/13] libseccomp: version bump 2.4.3 -> 2.5.0 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-07-27  9:05   ` Roland Hieber
  2020-07-26 14:24 ` [ptxdist] [PATCH 09/13] procps: version bump 3.3.15 -> 3.3.16 Robert Schwebel
                   ` (5 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There is one new configure option; the patche have been forward-ported
and are still valid.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 .../0001-rl-attribute.patch                            | 10 +++++++---
 .../0002-rl-header.patch                               | 10 +++++++---
 .../0003-rl-no-rpath.patch                             |  8 ++++++--
 .../0004-rlfe-history.patch                            |  6 +++++-
 ...005-always-link-against-our-termcap-libraries.patch |  6 +++++-
 patches/{readline-7.0 => readline-8.0}/series          |  3 ---
 rules/readline.make                                    |  5 +++--
 7 files changed, 33 insertions(+), 15 deletions(-)
 rename patches/{readline-7.0 => readline-8.0}/0001-rl-attribute.patch (84%)
 rename patches/{readline-7.0 => readline-8.0}/0002-rl-header.patch (81%)
 rename patches/{readline-7.0 => readline-8.0}/0003-rl-no-rpath.patch (83%)
 rename patches/{readline-7.0 => readline-8.0}/0004-rlfe-history.patch (92%)
 rename patches/{readline-7.0 => readline-8.0}/0005-always-link-against-our-termcap-libraries.patch (89%)
 rename patches/{readline-7.0 => readline-8.0}/series (55%)

diff --git a/patches/readline-7.0/0001-rl-attribute.patch b/patches/readline-8.0/0001-rl-attribute.patch
similarity index 84%
rename from patches/readline-7.0/0001-rl-attribute.patch
rename to patches/readline-8.0/0001-rl-attribute.patch
index ac9bd84e8..a4fe2d9cd 100644
--- a/patches/readline-7.0/0001-rl-attribute.patch
+++ b/patches/readline-8.0/0001-rl-attribute.patch
@@ -1,6 +1,7 @@
+From dbf7a7e80d4abfd38999a64f8e0bb00367db7203 Mon Sep 17 00:00:00 2001
 From: "doko@debian.org" <doko@debian.org>
 Date: Sun, 24 Jan 2010 00:31:09 +0100
-Subject: [PATCH] rl-attribute.
+Subject: [PATCH 1/5] rl-attribute.
 
 rl-attribute.dpatch by  <doko@debian.org>
 
@@ -14,10 +15,10 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  2 files changed, 5 insertions(+), 5 deletions(-)
 
 diff --git a/readline.h b/readline.h
-index 924bbfb0f213..b1a177a577d5 100644
+index da782716af2a..5858147b2e8d 100644
 --- a/readline.h
 +++ b/readline.h
-@@ -385,7 +385,7 @@ extern int rl_reset_line_state PARAMS((void));
+@@ -393,7 +393,7 @@ extern int rl_reset_line_state PARAMS((void));
  extern int rl_crlf PARAMS((void));
  
  #if defined (USE_VARARGS) && defined (PREFER_STDARG)
@@ -45,3 +46,6 @@ index 2aaa30babfbd..82b607cb35df 100644
  #endif
  
  /* Moved from config.h.in because readline.h:rl_message depends on these
+-- 
+2.27.0
+
diff --git a/patches/readline-7.0/0002-rl-header.patch b/patches/readline-8.0/0002-rl-header.patch
similarity index 81%
rename from patches/readline-7.0/0002-rl-header.patch
rename to patches/readline-8.0/0002-rl-header.patch
index 94a7f616e..04135a956 100644
--- a/patches/readline-7.0/0002-rl-header.patch
+++ b/patches/readline-8.0/0002-rl-header.patch
@@ -1,6 +1,7 @@
+From fb98ee08894cbb46e0a5ea9a6ca5e77ab2adfbb4 Mon Sep 17 00:00:00 2001
 From: "doko@debian.org" <doko@debian.org>
 Date: Sun, 24 Jan 2010 00:31:22 +0100
-Subject: [PATCH] rl-header.
+Subject: [PATCH 2/5] rl-header.
 
 rl-header.dpatch by  <doko@debian.org>
 
@@ -14,7 +15,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  2 files changed, 2 insertions(+)
 
 diff --git a/history.h b/history.h
-index 8ce7c805d168..8d568a79fa29 100644
+index cc3de29a6423..24cd63ce111c 100644
 --- a/history.h
 +++ b/history.h
 @@ -32,6 +32,7 @@ extern "C" {
@@ -26,7 +27,7 @@ index 8ce7c805d168..8d568a79fa29 100644
  #  include <readline/rltypedefs.h>
  #endif
 diff --git a/readline.h b/readline.h
-index b1a177a577d5..06c2abe61736 100644
+index 5858147b2e8d..7d4ecd2346fa 100644
 --- a/readline.h
 +++ b/readline.h
 @@ -32,6 +32,7 @@ extern "C" {
@@ -37,3 +38,6 @@ index b1a177a577d5..06c2abe61736 100644
  #  include <readline/rlstdc.h>
  #  include <readline/rltypedefs.h>
  #  include <readline/keymaps.h>
+-- 
+2.27.0
+
diff --git a/patches/readline-7.0/0003-rl-no-rpath.patch b/patches/readline-8.0/0003-rl-no-rpath.patch
similarity index 83%
rename from patches/readline-7.0/0003-rl-no-rpath.patch
rename to patches/readline-8.0/0003-rl-no-rpath.patch
index 5a97e715e..2ca05de1c 100644
--- a/patches/readline-7.0/0003-rl-no-rpath.patch
+++ b/patches/readline-8.0/0003-rl-no-rpath.patch
@@ -1,6 +1,7 @@
+From fc7215492dc479db9b01cc4ef6eb288c3a06bbee Mon Sep 17 00:00:00 2001
 From: "doko@debian.org" <doko@debian.org>
 Date: Sun, 24 Jan 2010 00:31:36 +0100
-Subject: [PATCH] rl-no-rpath.
+Subject: [PATCH 3/5] rl-no-rpath.
 
 rl-no-rpath.dpatch by  <doko@debian.org>
 
@@ -13,7 +14,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/support/shobj-conf b/support/shobj-conf
-index 1f64433dea83..ce435d7db254 100644
+index 7920f1b5cb90..7ac9c9fb311d 100644
 --- a/support/shobj-conf
 +++ b/support/shobj-conf
 @@ -128,7 +128,7 @@ linux*-*|gnu*-*|k*bsd*-gnu-*|freebsd*-gentoo)
@@ -25,3 +26,6 @@ index 1f64433dea83..ce435d7db254 100644
  	SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)$(SHLIB_MINOR)'
  	;;
  
+-- 
+2.27.0
+
diff --git a/patches/readline-7.0/0004-rlfe-history.patch b/patches/readline-8.0/0004-rlfe-history.patch
similarity index 92%
rename from patches/readline-7.0/0004-rlfe-history.patch
rename to patches/readline-8.0/0004-rlfe-history.patch
index 1bd44d33f..b78bab45e 100644
--- a/patches/readline-7.0/0004-rlfe-history.patch
+++ b/patches/readline-8.0/0004-rlfe-history.patch
@@ -1,6 +1,7 @@
+From 0d58b129904d451ca3d3b5aee041f576c29906ad Mon Sep 17 00:00:00 2001
 From: "andrew@pimlott.net" <andrew@pimlott.net>
 Date: Sun, 24 Jan 2010 00:31:48 +0100
-Subject: [PATCH] rlfe-history.
+Subject: [PATCH 4/5] rlfe-history.
 
 rlfe-history.dpatch by  <andrew@pimlott.net>
 
@@ -58,3 +59,6 @@ index f40b2ddaf00f..89bb17e462db 100644
  	    }
  	  old_count = buf_count;
  
+-- 
+2.27.0
+
diff --git a/patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch b/patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
similarity index 89%
rename from patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch
rename to patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
index 20cac9fe5..3a817f423 100644
--- a/patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch
+++ b/patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
@@ -1,6 +1,7 @@
+From 10e1cac0a0ab576338ce8e5978f7140bec2c9e72 Mon Sep 17 00:00:00 2001
 From: Marc Kleine-Budde <mkl@pengutronix.de>
 Date: Sun, 24 Jan 2010 00:32:08 +0100
-Subject: [PATCH] always link against our $termcap libraries
+Subject: [PATCH 5/5] always link against our $termcap libraries
 
 This way our $user doesn't need to know wich $termcap library
 we linked against.
@@ -31,3 +32,6 @@ index f2ec3e46b7ba..3298008abec4 100644
  
  # Since tilde.c is shared between readline and bash, make sure we compile 
  # it with the right flags when it's built as part of readline
+-- 
+2.27.0
+
diff --git a/patches/readline-7.0/series b/patches/readline-8.0/series
similarity index 55%
rename from patches/readline-7.0/series
rename to patches/readline-8.0/series
index 5b5cd2fea..0eb1c742a 100644
--- a/patches/readline-7.0/series
+++ b/patches/readline-8.0/series
@@ -1,8 +1,5 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
 0001-rl-attribute.patch
 0002-rl-header.patch
 0003-rl-no-rpath.patch
 0004-rlfe-history.patch
 0005-always-link-against-our-termcap-libraries.patch
-# 7b8eea3fcea421a1233d1d9232c74be5  - git-ptx-patches magic
diff --git a/rules/readline.make b/rules/readline.make
index 4cb9663f2..14b89cfb9 100644
--- a/rules/readline.make
+++ b/rules/readline.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_READLINE) += readline
 #
 # Paths and names
 #
-READLINE_VERSION	:= 7.0
-READLINE_MD5		:= 205b03a87fc83dab653b628c59b9fc91
+READLINE_VERSION	:= 8.0
+READLINE_MD5		:= 7e6c1f16aee3244a69aba6e438295ca3
 READLINE		:= readline-$(READLINE_VERSION)
 READLINE_SUFFIX		:= tar.gz
 READLINE_URL		:= $(call ptx/mirror, GNU, readline/$(READLINE).$(READLINE_SUFFIX))
@@ -34,6 +34,7 @@ READLINE_AUTOCONF := \
 	--disable-multibyte \
 	--enable-shared \
 	--disable-static\
+	--disable-install-examples \
 	$(GLOBAL_LARGE_FILE_OPTION) \
 	--$(call ptx/wwo,PTXCONF_READLINE_NCURSES)-curses
 
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 09/13] procps: version bump 3.3.15 -> 3.3.16
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (6 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 08/13] readline: version bump 7.0 -> 8.0 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 10/13] strace: version bump 5.4 -> 5.7 Robert Schwebel
                   ` (4 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are no configure changes and no patches.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/procps.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/procps.make b/rules/procps.make
index 9a042900d..17efd0c26 100644
--- a/rules/procps.make
+++ b/rules/procps.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_PROCPS) += procps
 #
 # Paths and names
 #
-PROCPS_VERSION	:= 3.3.15
-PROCPS_MD5	:= 2b0717a7cb474b3d6dfdeedfbad2eccc
+PROCPS_VERSION	:= 3.3.16
+PROCPS_MD5	:= e8dc8455e573bdc40b8381d572bbb89b
 PROCPS		:= procps-ng-$(PROCPS_VERSION)
 PROCPS_SUFFIX	:= tar.xz
 PROCPS_URL	:= $(call ptx/mirror, SF, procps-ng/Production/$(PROCPS).$(PROCPS_SUFFIX))
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 10/13] strace: version bump 5.4 -> 5.7
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (7 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 09/13] procps: version bump 3.3.15 -> 3.3.16 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 11/13] pciutils: version bump 3.6.2 -> 3.7.0 Robert Schwebel
                   ` (3 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are neigher new configure options nor patches that need porting.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/strace.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/strace.make b/rules/strace.make
index cc10b8077..703301c3a 100644
--- a/rules/strace.make
+++ b/rules/strace.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_STRACE) += strace
 #
 # Paths and names
 #
-STRACE_VERSION	:= 5.4
-STRACE_MD5	:= b2b58f05eb3c5c0bf9d1e26003b4d698
+STRACE_VERSION	:= 5.7
+STRACE_MD5	:= 8c35b8ebf187b2ec18209bd7bbd16e7a
 STRACE		:= strace-$(STRACE_VERSION)
 STRACE_SUFFIX	:= tar.xz
 STRACE_URL	:= https://strace.io/files/$(STRACE_VERSION)/$(STRACE).$(STRACE_SUFFIX)
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 11/13] pciutils: version bump 3.6.2 -> 3.7.0
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (8 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 10/13] strace: version bump 5.4 -> 5.7 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 12/13] util-linux-nt: version bump 2.35.2 -> 2.36 Robert Schwebel
                   ` (2 subsequent siblings)
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

The license refers to an url which has changed from http to https.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/pciutils.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/rules/pciutils.make b/rules/pciutils.make
index 10e782859..6f472e63d 100644
--- a/rules/pciutils.make
+++ b/rules/pciutils.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_PCIUTILS) += pciutils
 #
 # Paths and names
 #
-PCIUTILS_VERSION	:= 3.6.2
-PCIUTILS_MD5		:= 77963796d1be4f451b83e6da28ba4f82
+PCIUTILS_VERSION	:= 3.7.0
+PCIUTILS_MD5		:= e6e20482b4f25c5186e6a753c5edc361
 PCIUTILS		:= pciutils-$(PCIUTILS_VERSION)
 PCIUTILS_SUFFIX		:= tar.xz
 PCIUTILS_URL		:= $(call ptx/mirror, KERNEL, ../software/utils/pciutils/$(PCIUTILS).$(PCIUTILS_SUFFIX))
@@ -24,7 +24,7 @@ PCIUTILS_SOURCE		:= $(SRCDIR)/$(PCIUTILS).$(PCIUTILS_SUFFIX)
 PCIUTILS_DIR		:= $(BUILDDIR)/$(PCIUTILS)
 PCIUTILS_LICENSE	:= GPL-2.0-or-later
 PCIUTILS_LICENSE_FILES	:= \
-	file://README;startline=4;endline=8;md5=e6d1f5496a9acbc746789a7b925d02e1
+	file://README;startline=4;endline=8;md5=2ae7724797a960932b288272eed49a30
 
 # ----------------------------------------------------------------------------
 # Prepare
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 12/13] util-linux-nt: version bump 2.35.2 -> 2.36
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (9 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 11/13] pciutils: version bump 3.6.2 -> 3.7.0 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-07-30 13:41   ` Michael Olbrich
  2020-07-26 14:24 ` [ptxdist] [PATCH 13/13] iproute2: version bump 5.6.0 -> 5.7.0 Robert Schwebel
  2020-08-03  6:30 ` [ptxdist] [APPLIED] ncurses: version bump 6.1 -> 6.2 Michael Olbrich
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are two new tools: lsirq and irqtop.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/util-linux-ng.in   | 16 ++++++++++++++++
 rules/util-linux-ng.make | 16 ++++++++++++++--
 2 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index 34fcd5a47..da7ebcc99 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -279,6 +279,22 @@ config UTIL_LINUX_NG_IPCS
 	  ipcs provides information on the ipc facilities
 	  for which the calling process has read access.
 
+config UTIL_LINUX_NG_IRQTOP
+	bool
+	select UTIL_LINUX_NG_USES_NCURSES
+	prompt "irqtop"
+	depends on !BUSYBOX_IRQTOP || ALLYES
+	help
+	  irqtop is a tool to observe irqs and softirqs in
+          a top like fashion.
+
+config UTIL_LINUX_NG_LSIRQ
+	bool
+	prompt "lsirq"
+	depends on !BUSYBOX_lsirq || ALLYES
+	help
+	  lsirq is a tool to list kernel interrupt information.
+
 comment "BusyBox' ipcs is selected!"
 	depends on BUSYBOX_IPCS
 
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index dbb81fc1f..3c53a4a95 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
 #
 # Paths and names
 #
-UTIL_LINUX_NG_VERSION	:= 2.35.2
-UTIL_LINUX_NG_MD5	:= 248a4d0810c9193e0e9a4bb3f26b93d8
+UTIL_LINUX_NG_VERSION	:= 2.36
+UTIL_LINUX_NG_MD5	:= fe7c0f7e439f08970e462c9d44599903
 UTIL_LINUX_NG		:= util-linux-$(UTIL_LINUX_NG_VERSION)
 UTIL_LINUX_NG_SUFFIX	:= tar.xz
 UTIL_LINUX_NG_BASENAME	:= v$(call ptx/sh, echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[^0-9].*\?/\1/g')
@@ -50,7 +50,9 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
 	--bindir=/usr/bin \
 	--sbindir=/usr/sbin \
+	--disable-werror \
 	--disable-asan \
+	--disable-ubsan \
 	--enable-shared \
 	--disable-static \
 	--enable-symvers \
@@ -101,6 +103,8 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_CHMEM)-chmem \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCRM)-ipcrm \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCS)-ipcs \
+	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IRQTOP)-irqtop \
+	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_LSIRQ)-lsirq \
 	--disable-rfkill \
 	--disable-tunelp \
 	--disable-kill \
@@ -151,12 +155,14 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	--without-readline \
 	--without-utempter \
 	--without-cap-ng \
+	--without-libmagic \
 	--without-libz \
 	--without-user \
 	--without-btrfs \
 	--without-systemd \
 	--with-systemdsystemunitdir=/usr/lib/systemd/system \
 	--without-smack \
+	--without-econf \
 	--without-python
 
 # ----------------------------------------------------------------------------
@@ -255,6 +261,12 @@ endif
 ifdef PTXCONF_UTIL_LINUX_NG_IPCS
 	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
 endif
+ifdef PTXCONF_UTIL_LINUX_NG_IRQTOP
+	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/irqtop)
+endif
+ifdef PTXCONF_UTIL_LINUX_NG_LSIRQ
+	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsirq)
+endif
 ifdef PTXCONF_UTIL_LINUX_NG_IPCRM
 	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcrm)
 endif
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 13/13] iproute2: version bump 5.6.0 -> 5.7.0
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (10 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 12/13] util-linux-nt: version bump 2.35.2 -> 2.36 Robert Schwebel
@ 2020-07-26 14:24 ` Robert Schwebel
  2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-08-03  6:30 ` [ptxdist] [APPLIED] ncurses: version bump 6.1 -> 6.2 Michael Olbrich
  12 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-26 14:24 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are no relevant Makefile changes and no patches.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/iproute2.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/iproute2.make b/rules/iproute2.make
index 3f7d1532b..4e11d382b 100644
--- a/rules/iproute2.make
+++ b/rules/iproute2.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_IPROUTE2) += iproute2
 #
 # Paths and names
 #
-IPROUTE2_VERSION	:= 5.6.0
-IPROUTE2_MD5		:= 9da0c352707c34b8b1fec3bf42fcfd09
+IPROUTE2_VERSION	:= 5.7.0
+IPROUTE2_MD5		:= da22ab8562eda56ae232872fa72e4870
 IPROUTE2		:= iproute2-$(IPROUTE2_VERSION)
 IPROUTE2_SUFFIX		:= tar.xz
 IPROUTE2_URL		:= $(call ptx/mirror, KERNEL, utils/net/iproute2/$(IPROUTE2).$(IPROUTE2_SUFFIX))
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [PATCH 08/13] readline: version bump 7.0 -> 8.0
  2020-07-26 14:24 ` [ptxdist] [PATCH 08/13] readline: version bump 7.0 -> 8.0 Robert Schwebel
@ 2020-07-27  9:05   ` Roland Hieber
  2020-07-27 10:02     ` [ptxdist] [PATCH 1/6] " Robert Schwebel
  0 siblings, 1 reply; 33+ messages in thread
From: Roland Hieber @ 2020-07-27  9:05 UTC (permalink / raw)
  To: Robert Schwebel; +Cc: ptxdist

On Sun, Jul 26, 2020 at 04:24:31PM +0200, Robert Schwebel wrote:
> There is one new configure option; the patche have been forward-ported
> and are still valid.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> ---
>  .../0001-rl-attribute.patch                            | 10 +++++++---
>  .../0002-rl-header.patch                               | 10 +++++++---
>  .../0003-rl-no-rpath.patch                             |  8 ++++++--
>  .../0004-rlfe-history.patch                            |  6 +++++-
>  ...005-always-link-against-our-termcap-libraries.patch |  6 +++++-
>  patches/{readline-7.0 => readline-8.0}/series          |  3 ---
>  rules/readline.make                                    |  5 +++--
>  7 files changed, 33 insertions(+), 15 deletions(-)
>  rename patches/{readline-7.0 => readline-8.0}/0001-rl-attribute.patch (84%)
>  rename patches/{readline-7.0 => readline-8.0}/0002-rl-header.patch (81%)
>  rename patches/{readline-7.0 => readline-8.0}/0003-rl-no-rpath.patch (83%)
>  rename patches/{readline-7.0 => readline-8.0}/0004-rlfe-history.patch (92%)
>  rename patches/{readline-7.0 => readline-8.0}/0005-always-link-against-our-termcap-libraries.patch (89%)
>  rename patches/{readline-7.0 => readline-8.0}/series (55%)
> 
> diff --git a/patches/readline-7.0/0001-rl-attribute.patch b/patches/readline-8.0/0001-rl-attribute.patch
> similarity index 84%
> rename from patches/readline-7.0/0001-rl-attribute.patch
> rename to patches/readline-8.0/0001-rl-attribute.patch
> index ac9bd84e8..a4fe2d9cd 100644
> --- a/patches/readline-7.0/0001-rl-attribute.patch
> +++ b/patches/readline-8.0/0001-rl-attribute.patch
> @@ -1,6 +1,7 @@
> +From dbf7a7e80d4abfd38999a64f8e0bb00367db7203 Mon Sep 17 00:00:00 2001
>  From: "doko@debian.org" <doko@debian.org>
>  Date: Sun, 24 Jan 2010 00:31:09 +0100
> -Subject: [PATCH] rl-attribute.
> +Subject: [PATCH 1/5] rl-attribute.
>  
>  rl-attribute.dpatch by  <doko@debian.org>
>  
> @@ -14,10 +15,10 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
>   2 files changed, 5 insertions(+), 5 deletions(-)
>  
>  diff --git a/readline.h b/readline.h
> -index 924bbfb0f213..b1a177a577d5 100644
> +index da782716af2a..5858147b2e8d 100644
>  --- a/readline.h
>  +++ b/readline.h
> -@@ -385,7 +385,7 @@ extern int rl_reset_line_state PARAMS((void));
> +@@ -393,7 +393,7 @@ extern int rl_reset_line_state PARAMS((void));
>   extern int rl_crlf PARAMS((void));
>   
>   #if defined (USE_VARARGS) && defined (PREFER_STDARG)
> @@ -45,3 +46,6 @@ index 2aaa30babfbd..82b607cb35df 100644
>   #endif
>   
>   /* Moved from config.h.in because readline.h:rl_message depends on these
> +-- 
> +2.27.0
> +
> diff --git a/patches/readline-7.0/0002-rl-header.patch b/patches/readline-8.0/0002-rl-header.patch
> similarity index 81%
> rename from patches/readline-7.0/0002-rl-header.patch
> rename to patches/readline-8.0/0002-rl-header.patch
> index 94a7f616e..04135a956 100644
> --- a/patches/readline-7.0/0002-rl-header.patch
> +++ b/patches/readline-8.0/0002-rl-header.patch
> @@ -1,6 +1,7 @@
> +From fb98ee08894cbb46e0a5ea9a6ca5e77ab2adfbb4 Mon Sep 17 00:00:00 2001
>  From: "doko@debian.org" <doko@debian.org>
>  Date: Sun, 24 Jan 2010 00:31:22 +0100
> -Subject: [PATCH] rl-header.
> +Subject: [PATCH 2/5] rl-header.
>  
>  rl-header.dpatch by  <doko@debian.org>
>  
> @@ -14,7 +15,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
>   2 files changed, 2 insertions(+)
>  
>  diff --git a/history.h b/history.h
> -index 8ce7c805d168..8d568a79fa29 100644
> +index cc3de29a6423..24cd63ce111c 100644
>  --- a/history.h
>  +++ b/history.h
>  @@ -32,6 +32,7 @@ extern "C" {
> @@ -26,7 +27,7 @@ index 8ce7c805d168..8d568a79fa29 100644
>   #  include <readline/rltypedefs.h>
>   #endif
>  diff --git a/readline.h b/readline.h
> -index b1a177a577d5..06c2abe61736 100644
> +index 5858147b2e8d..7d4ecd2346fa 100644
>  --- a/readline.h
>  +++ b/readline.h
>  @@ -32,6 +32,7 @@ extern "C" {
> @@ -37,3 +38,6 @@ index b1a177a577d5..06c2abe61736 100644
>   #  include <readline/rlstdc.h>
>   #  include <readline/rltypedefs.h>
>   #  include <readline/keymaps.h>
> +-- 
> +2.27.0
> +
> diff --git a/patches/readline-7.0/0003-rl-no-rpath.patch b/patches/readline-8.0/0003-rl-no-rpath.patch
> similarity index 83%
> rename from patches/readline-7.0/0003-rl-no-rpath.patch
> rename to patches/readline-8.0/0003-rl-no-rpath.patch
> index 5a97e715e..2ca05de1c 100644
> --- a/patches/readline-7.0/0003-rl-no-rpath.patch
> +++ b/patches/readline-8.0/0003-rl-no-rpath.patch
> @@ -1,6 +1,7 @@
> +From fc7215492dc479db9b01cc4ef6eb288c3a06bbee Mon Sep 17 00:00:00 2001
>  From: "doko@debian.org" <doko@debian.org>
>  Date: Sun, 24 Jan 2010 00:31:36 +0100
> -Subject: [PATCH] rl-no-rpath.
> +Subject: [PATCH 3/5] rl-no-rpath.
>  
>  rl-no-rpath.dpatch by  <doko@debian.org>
>  
> @@ -13,7 +14,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
>   1 file changed, 1 insertion(+), 1 deletion(-)
>  
>  diff --git a/support/shobj-conf b/support/shobj-conf
> -index 1f64433dea83..ce435d7db254 100644
> +index 7920f1b5cb90..7ac9c9fb311d 100644
>  --- a/support/shobj-conf
>  +++ b/support/shobj-conf
>  @@ -128,7 +128,7 @@ linux*-*|gnu*-*|k*bsd*-gnu-*|freebsd*-gentoo)
> @@ -25,3 +26,6 @@ index 1f64433dea83..ce435d7db254 100644
>   	SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)$(SHLIB_MINOR)'
>   	;;
>   
> +-- 
> +2.27.0
> +
> diff --git a/patches/readline-7.0/0004-rlfe-history.patch b/patches/readline-8.0/0004-rlfe-history.patch
> similarity index 92%
> rename from patches/readline-7.0/0004-rlfe-history.patch
> rename to patches/readline-8.0/0004-rlfe-history.patch
> index 1bd44d33f..b78bab45e 100644
> --- a/patches/readline-7.0/0004-rlfe-history.patch
> +++ b/patches/readline-8.0/0004-rlfe-history.patch
> @@ -1,6 +1,7 @@
> +From 0d58b129904d451ca3d3b5aee041f576c29906ad Mon Sep 17 00:00:00 2001
>  From: "andrew@pimlott.net" <andrew@pimlott.net>
>  Date: Sun, 24 Jan 2010 00:31:48 +0100
> -Subject: [PATCH] rlfe-history.
> +Subject: [PATCH 4/5] rlfe-history.
>  
>  rlfe-history.dpatch by  <andrew@pimlott.net>
>  
> @@ -58,3 +59,6 @@ index f40b2ddaf00f..89bb17e462db 100644
>   	    }
>   	  old_count = buf_count;
>   
> +-- 
> +2.27.0
> +
> diff --git a/patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch b/patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
> similarity index 89%
> rename from patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch
> rename to patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
> index 20cac9fe5..3a817f423 100644
> --- a/patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch
> +++ b/patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
> @@ -1,6 +1,7 @@
> +From 10e1cac0a0ab576338ce8e5978f7140bec2c9e72 Mon Sep 17 00:00:00 2001
>  From: Marc Kleine-Budde <mkl@pengutronix.de>
>  Date: Sun, 24 Jan 2010 00:32:08 +0100
> -Subject: [PATCH] always link against our $termcap libraries
> +Subject: [PATCH 5/5] always link against our $termcap libraries
>  
>  This way our $user doesn't need to know wich $termcap library
>  we linked against.
> @@ -31,3 +32,6 @@ index f2ec3e46b7ba..3298008abec4 100644
>   
>   # Since tilde.c is shared between readline and bash, make sure we compile 
>   # it with the right flags when it's built as part of readline
> +-- 
> +2.27.0
> +
> diff --git a/patches/readline-7.0/series b/patches/readline-8.0/series
> similarity index 55%
> rename from patches/readline-7.0/series
> rename to patches/readline-8.0/series
> index 5b5cd2fea..0eb1c742a 100644
> --- a/patches/readline-7.0/series
> +++ b/patches/readline-8.0/series
> @@ -1,8 +1,5 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
>  0001-rl-attribute.patch
>  0002-rl-header.patch
>  0003-rl-no-rpath.patch
>  0004-rlfe-history.patch
>  0005-always-link-against-our-termcap-libraries.patch
> -# 7b8eea3fcea421a1233d1d9232c74be5  - git-ptx-patches magic

Hmm, the patches look like you used git to apply them, but
git-ptx-patches should then also update these lines instead of removing
them. What went wrong here?

Note that for PTXdist patch series, we want to use git-ptx-patches in
all cases now to prevent unnecessary patches to the series file.

 - Roland

> diff --git a/rules/readline.make b/rules/readline.make
> index 4cb9663f2..14b89cfb9 100644
> --- a/rules/readline.make
> +++ b/rules/readline.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_READLINE) += readline
>  #
>  # Paths and names
>  #
> -READLINE_VERSION	:= 7.0
> -READLINE_MD5		:= 205b03a87fc83dab653b628c59b9fc91
> +READLINE_VERSION	:= 8.0
> +READLINE_MD5		:= 7e6c1f16aee3244a69aba6e438295ca3
>  READLINE		:= readline-$(READLINE_VERSION)
>  READLINE_SUFFIX		:= tar.gz
>  READLINE_URL		:= $(call ptx/mirror, GNU, readline/$(READLINE).$(READLINE_SUFFIX))
> @@ -34,6 +34,7 @@ READLINE_AUTOCONF := \
>  	--disable-multibyte \
>  	--enable-shared \
>  	--disable-static\
> +	--disable-install-examples \
>  	$(GLOBAL_LARGE_FILE_OPTION) \
>  	--$(call ptx/wwo,PTXCONF_READLINE_NCURSES)-curses
>  
> -- 
> 2.27.0
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
> 

-- 
Roland Hieber, Pengutronix e.K.          | r.hieber@pengutronix.de     |
Steuerwalder Str. 21                     | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686         | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCH 1/6] readline: version bump 7.0 -> 8.0
  2020-07-27  9:05   ` Roland Hieber
@ 2020-07-27 10:02     ` Robert Schwebel
  2020-08-03  6:30       ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-27 10:02 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There is one new configure option; the patche have been forward-ported
and are still valid.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 .../{readline-7.0 => readline-8.0}/0001-rl-attribute.patch   | 4 ++--
 patches/{readline-7.0 => readline-8.0}/0002-rl-header.patch  | 4 ++--
 .../{readline-7.0 => readline-8.0}/0003-rl-no-rpath.patch    | 2 +-
 .../{readline-7.0 => readline-8.0}/0004-rlfe-history.patch   | 0
 .../0005-always-link-against-our-termcap-libraries.patch     | 0
 patches/{readline-7.0 => readline-8.0}/series                | 0
 rules/readline.make                                          | 5 +++--
 7 files changed, 8 insertions(+), 7 deletions(-)
 rename patches/{readline-7.0 => readline-8.0}/0001-rl-attribute.patch (92%)
 rename patches/{readline-7.0 => readline-8.0}/0002-rl-header.patch (91%)
 rename patches/{readline-7.0 => readline-8.0}/0003-rl-no-rpath.patch (95%)
 rename patches/{readline-7.0 => readline-8.0}/0004-rlfe-history.patch (100%)
 rename patches/{readline-7.0 => readline-8.0}/0005-always-link-against-our-termcap-libraries.patch (100%)
 rename patches/{readline-7.0 => readline-8.0}/series (100%)

diff --git a/patches/readline-7.0/0001-rl-attribute.patch b/patches/readline-8.0/0001-rl-attribute.patch
similarity index 92%
rename from patches/readline-7.0/0001-rl-attribute.patch
rename to patches/readline-8.0/0001-rl-attribute.patch
index ac9bd84e8..7f8f9ec3f 100644
--- a/patches/readline-7.0/0001-rl-attribute.patch
+++ b/patches/readline-8.0/0001-rl-attribute.patch
@@ -14,10 +14,10 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  2 files changed, 5 insertions(+), 5 deletions(-)
 
 diff --git a/readline.h b/readline.h
-index 924bbfb0f213..b1a177a577d5 100644
+index da782716af2a..5858147b2e8d 100644
 --- a/readline.h
 +++ b/readline.h
-@@ -385,7 +385,7 @@ extern int rl_reset_line_state PARAMS((void));
+@@ -393,7 +393,7 @@ extern int rl_reset_line_state PARAMS((void));
  extern int rl_crlf PARAMS((void));
  
  #if defined (USE_VARARGS) && defined (PREFER_STDARG)
diff --git a/patches/readline-7.0/0002-rl-header.patch b/patches/readline-8.0/0002-rl-header.patch
similarity index 91%
rename from patches/readline-7.0/0002-rl-header.patch
rename to patches/readline-8.0/0002-rl-header.patch
index 94a7f616e..108957d3d 100644
--- a/patches/readline-7.0/0002-rl-header.patch
+++ b/patches/readline-8.0/0002-rl-header.patch
@@ -14,7 +14,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  2 files changed, 2 insertions(+)
 
 diff --git a/history.h b/history.h
-index 8ce7c805d168..8d568a79fa29 100644
+index cc3de29a6423..24cd63ce111c 100644
 --- a/history.h
 +++ b/history.h
 @@ -32,6 +32,7 @@ extern "C" {
@@ -26,7 +26,7 @@ index 8ce7c805d168..8d568a79fa29 100644
  #  include <readline/rltypedefs.h>
  #endif
 diff --git a/readline.h b/readline.h
-index b1a177a577d5..06c2abe61736 100644
+index 5858147b2e8d..7d4ecd2346fa 100644
 --- a/readline.h
 +++ b/readline.h
 @@ -32,6 +32,7 @@ extern "C" {
diff --git a/patches/readline-7.0/0003-rl-no-rpath.patch b/patches/readline-8.0/0003-rl-no-rpath.patch
similarity index 95%
rename from patches/readline-7.0/0003-rl-no-rpath.patch
rename to patches/readline-8.0/0003-rl-no-rpath.patch
index 5a97e715e..0f49199e5 100644
--- a/patches/readline-7.0/0003-rl-no-rpath.patch
+++ b/patches/readline-8.0/0003-rl-no-rpath.patch
@@ -13,7 +13,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/support/shobj-conf b/support/shobj-conf
-index 1f64433dea83..ce435d7db254 100644
+index 7920f1b5cb90..7ac9c9fb311d 100644
 --- a/support/shobj-conf
 +++ b/support/shobj-conf
 @@ -128,7 +128,7 @@ linux*-*|gnu*-*|k*bsd*-gnu-*|freebsd*-gentoo)
diff --git a/patches/readline-7.0/0004-rlfe-history.patch b/patches/readline-8.0/0004-rlfe-history.patch
similarity index 100%
rename from patches/readline-7.0/0004-rlfe-history.patch
rename to patches/readline-8.0/0004-rlfe-history.patch
diff --git a/patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch b/patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
similarity index 100%
rename from patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch
rename to patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
diff --git a/patches/readline-7.0/series b/patches/readline-8.0/series
similarity index 100%
rename from patches/readline-7.0/series
rename to patches/readline-8.0/series
diff --git a/rules/readline.make b/rules/readline.make
index 4cb9663f2..14b89cfb9 100644
--- a/rules/readline.make
+++ b/rules/readline.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_READLINE) += readline
 #
 # Paths and names
 #
-READLINE_VERSION	:= 7.0
-READLINE_MD5		:= 205b03a87fc83dab653b628c59b9fc91
+READLINE_VERSION	:= 8.0
+READLINE_MD5		:= 7e6c1f16aee3244a69aba6e438295ca3
 READLINE		:= readline-$(READLINE_VERSION)
 READLINE_SUFFIX		:= tar.gz
 READLINE_URL		:= $(call ptx/mirror, GNU, readline/$(READLINE).$(READLINE_SUFFIX))
@@ -34,6 +34,7 @@ READLINE_AUTOCONF := \
 	--disable-multibyte \
 	--enable-shared \
 	--disable-static\
+	--disable-install-examples \
 	$(GLOBAL_LARGE_FILE_OPTION) \
 	--$(call ptx/wwo,PTXCONF_READLINE_NCURSES)-curses
 
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [PATCH 12/13] util-linux-nt: version bump 2.35.2 -> 2.36
  2020-07-26 14:24 ` [ptxdist] [PATCH 12/13] util-linux-nt: version bump 2.35.2 -> 2.36 Robert Schwebel
@ 2020-07-30 13:41   ` Michael Olbrich
  2020-07-30 14:56     ` [ptxdist] [PATCHv2] util-linux-ng: " Robert Schwebel
  0 siblings, 1 reply; 33+ messages in thread
From: Michael Olbrich @ 2020-07-30 13:41 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

util-linux-nt -> util-linux-ng in the subject.

On Sun, Jul 26, 2020 at 04:24:35PM +0200, Robert Schwebel wrote:
> There are two new tools: lsirq and irqtop.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> ---
>  rules/util-linux-ng.in   | 16 ++++++++++++++++
>  rules/util-linux-ng.make | 16 ++++++++++++++--
>  2 files changed, 30 insertions(+), 2 deletions(-)
> 
> diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
> index 34fcd5a47..da7ebcc99 100644
> --- a/rules/util-linux-ng.in
> +++ b/rules/util-linux-ng.in
> @@ -279,6 +279,22 @@ config UTIL_LINUX_NG_IPCS
>  	  ipcs provides information on the ipc facilities
>  	  for which the calling process has read access.
>  
> +config UTIL_LINUX_NG_IRQTOP
> +	bool
> +	select UTIL_LINUX_NG_USES_NCURSES
> +	prompt "irqtop"
> +	depends on !BUSYBOX_IRQTOP || ALLYES

BUSYBOX_IRQTOP does not exist. Just drop the line.

> +	help
> +	  irqtop is a tool to observe irqs and softirqs in
> +          a top like fashion.
> +
> +config UTIL_LINUX_NG_LSIRQ
> +	bool
> +	prompt "lsirq"
> +	depends on !BUSYBOX_lsirq || ALLYES

Same here.

Michael

> +	help
> +	  lsirq is a tool to list kernel interrupt information.
> +
>  comment "BusyBox' ipcs is selected!"
>  	depends on BUSYBOX_IPCS
>  
> diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
> index dbb81fc1f..3c53a4a95 100644
> --- a/rules/util-linux-ng.make
> +++ b/rules/util-linux-ng.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
>  #
>  # Paths and names
>  #
> -UTIL_LINUX_NG_VERSION	:= 2.35.2
> -UTIL_LINUX_NG_MD5	:= 248a4d0810c9193e0e9a4bb3f26b93d8
> +UTIL_LINUX_NG_VERSION	:= 2.36
> +UTIL_LINUX_NG_MD5	:= fe7c0f7e439f08970e462c9d44599903
>  UTIL_LINUX_NG		:= util-linux-$(UTIL_LINUX_NG_VERSION)
>  UTIL_LINUX_NG_SUFFIX	:= tar.xz
>  UTIL_LINUX_NG_BASENAME	:= v$(call ptx/sh, echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[^0-9].*\?/\1/g')
> @@ -50,7 +50,9 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
>  	--bindir=/usr/bin \
>  	--sbindir=/usr/sbin \
> +	--disable-werror \
>  	--disable-asan \
> +	--disable-ubsan \
>  	--enable-shared \
>  	--disable-static \
>  	--enable-symvers \
> @@ -101,6 +103,8 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_CHMEM)-chmem \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCRM)-ipcrm \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCS)-ipcs \
> +	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IRQTOP)-irqtop \
> +	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_LSIRQ)-lsirq \
>  	--disable-rfkill \
>  	--disable-tunelp \
>  	--disable-kill \
> @@ -151,12 +155,14 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	--without-readline \
>  	--without-utempter \
>  	--without-cap-ng \
> +	--without-libmagic \
>  	--without-libz \
>  	--without-user \
>  	--without-btrfs \
>  	--without-systemd \
>  	--with-systemdsystemunitdir=/usr/lib/systemd/system \
>  	--without-smack \
> +	--without-econf \
>  	--without-python
>  
>  # ----------------------------------------------------------------------------
> @@ -255,6 +261,12 @@ endif
>  ifdef PTXCONF_UTIL_LINUX_NG_IPCS
>  	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
>  endif
> +ifdef PTXCONF_UTIL_LINUX_NG_IRQTOP
> +	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/irqtop)
> +endif
> +ifdef PTXCONF_UTIL_LINUX_NG_LSIRQ
> +	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsirq)
> +endif
>  ifdef PTXCONF_UTIL_LINUX_NG_IPCRM
>  	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcrm)
>  endif
> -- 
> 2.27.0
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCHv2] util-linux-ng: version bump 2.35.2 -> 2.36
  2020-07-30 13:41   ` Michael Olbrich
@ 2020-07-30 14:56     ` Robert Schwebel
  2020-07-31  5:00       ` Michael Olbrich
  0 siblings, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-30 14:56 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are two new tools: lsirq and irqtop.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/util-linux-ng.in   | 16 ++++++++++++++++
 rules/util-linux-ng.make | 16 ++++++++++++++--
 2 files changed, 30 insertions(+), 2 deletions(-)

Changes since v1:
* Fixed subject

diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index 34fcd5a47..da7ebcc99 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -279,6 +279,22 @@ config UTIL_LINUX_NG_IPCS
 	  ipcs provides information on the ipc facilities
 	  for which the calling process has read access.
 
+config UTIL_LINUX_NG_IRQTOP
+	bool
+	select UTIL_LINUX_NG_USES_NCURSES
+	prompt "irqtop"
+	depends on !BUSYBOX_IRQTOP || ALLYES
+	help
+	  irqtop is a tool to observe irqs and softirqs in
+          a top like fashion.
+
+config UTIL_LINUX_NG_LSIRQ
+	bool
+	prompt "lsirq"
+	depends on !BUSYBOX_lsirq || ALLYES
+	help
+	  lsirq is a tool to list kernel interrupt information.
+
 comment "BusyBox' ipcs is selected!"
 	depends on BUSYBOX_IPCS
 
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index dbb81fc1f..3c53a4a95 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
 #
 # Paths and names
 #
-UTIL_LINUX_NG_VERSION	:= 2.35.2
-UTIL_LINUX_NG_MD5	:= 248a4d0810c9193e0e9a4bb3f26b93d8
+UTIL_LINUX_NG_VERSION	:= 2.36
+UTIL_LINUX_NG_MD5	:= fe7c0f7e439f08970e462c9d44599903
 UTIL_LINUX_NG		:= util-linux-$(UTIL_LINUX_NG_VERSION)
 UTIL_LINUX_NG_SUFFIX	:= tar.xz
 UTIL_LINUX_NG_BASENAME	:= v$(call ptx/sh, echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[^0-9].*\?/\1/g')
@@ -50,7 +50,9 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
 	--bindir=/usr/bin \
 	--sbindir=/usr/sbin \
+	--disable-werror \
 	--disable-asan \
+	--disable-ubsan \
 	--enable-shared \
 	--disable-static \
 	--enable-symvers \
@@ -101,6 +103,8 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_CHMEM)-chmem \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCRM)-ipcrm \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCS)-ipcs \
+	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IRQTOP)-irqtop \
+	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_LSIRQ)-lsirq \
 	--disable-rfkill \
 	--disable-tunelp \
 	--disable-kill \
@@ -151,12 +155,14 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	--without-readline \
 	--without-utempter \
 	--without-cap-ng \
+	--without-libmagic \
 	--without-libz \
 	--without-user \
 	--without-btrfs \
 	--without-systemd \
 	--with-systemdsystemunitdir=/usr/lib/systemd/system \
 	--without-smack \
+	--without-econf \
 	--without-python
 
 # ----------------------------------------------------------------------------
@@ -255,6 +261,12 @@ endif
 ifdef PTXCONF_UTIL_LINUX_NG_IPCS
 	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
 endif
+ifdef PTXCONF_UTIL_LINUX_NG_IRQTOP
+	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/irqtop)
+endif
+ifdef PTXCONF_UTIL_LINUX_NG_LSIRQ
+	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsirq)
+endif
 ifdef PTXCONF_UTIL_LINUX_NG_IPCRM
 	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcrm)
 endif
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [PATCHv2] util-linux-ng: version bump 2.35.2 -> 2.36
  2020-07-30 14:56     ` [ptxdist] [PATCHv2] util-linux-ng: " Robert Schwebel
@ 2020-07-31  5:00       ` Michael Olbrich
  2020-07-31  5:43         ` [ptxdist] [PATCHv3] " Robert Schwebel
  2020-07-31  5:43         ` [ptxdist] [PATCHv2] " Robert Schwebel
  0 siblings, 2 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-07-31  5:00 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

On Thu, Jul 30, 2020 at 04:56:28PM +0200, Robert Schwebel wrote:
> There are two new tools: lsirq and irqtop.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> ---
>  rules/util-linux-ng.in   | 16 ++++++++++++++++
>  rules/util-linux-ng.make | 16 ++++++++++++++--
>  2 files changed, 30 insertions(+), 2 deletions(-)
> 
> Changes since v1:
> * Fixed subject
> 
> diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
> index 34fcd5a47..da7ebcc99 100644
> --- a/rules/util-linux-ng.in
> +++ b/rules/util-linux-ng.in
> @@ -279,6 +279,22 @@ config UTIL_LINUX_NG_IPCS
>  	  ipcs provides information on the ipc facilities
>  	  for which the calling process has read access.
>  
> +config UTIL_LINUX_NG_IRQTOP
> +	bool
> +	select UTIL_LINUX_NG_USES_NCURSES
> +	prompt "irqtop"
> +	depends on !BUSYBOX_IRQTOP || ALLYES

See my last mail.

> +	help
> +	  irqtop is a tool to observe irqs and softirqs in
> +          a top like fashion.
> +
> +config UTIL_LINUX_NG_LSIRQ
> +	bool
> +	prompt "lsirq"
> +	depends on !BUSYBOX_lsirq || ALLYES

dito.

Michael

> +	help
> +	  lsirq is a tool to list kernel interrupt information.
> +
>  comment "BusyBox' ipcs is selected!"
>  	depends on BUSYBOX_IPCS
>  
> diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
> index dbb81fc1f..3c53a4a95 100644
> --- a/rules/util-linux-ng.make
> +++ b/rules/util-linux-ng.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
>  #
>  # Paths and names
>  #
> -UTIL_LINUX_NG_VERSION	:= 2.35.2
> -UTIL_LINUX_NG_MD5	:= 248a4d0810c9193e0e9a4bb3f26b93d8
> +UTIL_LINUX_NG_VERSION	:= 2.36
> +UTIL_LINUX_NG_MD5	:= fe7c0f7e439f08970e462c9d44599903
>  UTIL_LINUX_NG		:= util-linux-$(UTIL_LINUX_NG_VERSION)
>  UTIL_LINUX_NG_SUFFIX	:= tar.xz
>  UTIL_LINUX_NG_BASENAME	:= v$(call ptx/sh, echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[^0-9].*\?/\1/g')
> @@ -50,7 +50,9 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
>  	--bindir=/usr/bin \
>  	--sbindir=/usr/sbin \
> +	--disable-werror \
>  	--disable-asan \
> +	--disable-ubsan \
>  	--enable-shared \
>  	--disable-static \
>  	--enable-symvers \
> @@ -101,6 +103,8 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_CHMEM)-chmem \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCRM)-ipcrm \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCS)-ipcs \
> +	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IRQTOP)-irqtop \
> +	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_LSIRQ)-lsirq \
>  	--disable-rfkill \
>  	--disable-tunelp \
>  	--disable-kill \
> @@ -151,12 +155,14 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	--without-readline \
>  	--without-utempter \
>  	--without-cap-ng \
> +	--without-libmagic \
>  	--without-libz \
>  	--without-user \
>  	--without-btrfs \
>  	--without-systemd \
>  	--with-systemdsystemunitdir=/usr/lib/systemd/system \
>  	--without-smack \
> +	--without-econf \
>  	--without-python
>  
>  # ----------------------------------------------------------------------------
> @@ -255,6 +261,12 @@ endif
>  ifdef PTXCONF_UTIL_LINUX_NG_IPCS
>  	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
>  endif
> +ifdef PTXCONF_UTIL_LINUX_NG_IRQTOP
> +	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/irqtop)
> +endif
> +ifdef PTXCONF_UTIL_LINUX_NG_LSIRQ
> +	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsirq)
> +endif
>  ifdef PTXCONF_UTIL_LINUX_NG_IPCRM
>  	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcrm)
>  endif
> -- 
> 2.27.0
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* [ptxdist] [PATCHv3] util-linux-ng: version bump 2.35.2 -> 2.36
  2020-07-31  5:00       ` Michael Olbrich
@ 2020-07-31  5:43         ` Robert Schwebel
  2020-08-03  6:30           ` [ptxdist] [APPLIED] " Michael Olbrich
  2020-07-31  5:43         ` [ptxdist] [PATCHv2] " Robert Schwebel
  1 sibling, 1 reply; 33+ messages in thread
From: Robert Schwebel @ 2020-07-31  5:43 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

There are two new tools: lsirq and irqtop.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---
 rules/util-linux-ng.in   | 14 ++++++++++++++
 rules/util-linux-ng.make | 16 ++++++++++++++--
 2 files changed, 28 insertions(+), 2 deletions(-)

Changes since v2:
* dropped busybox lines in .in

Changes since v1:
* Fixed subject

diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
index 34fcd5a47..9586ff60b 100644
--- a/rules/util-linux-ng.in
+++ b/rules/util-linux-ng.in
@@ -279,6 +279,20 @@ config UTIL_LINUX_NG_IPCS
 	  ipcs provides information on the ipc facilities
 	  for which the calling process has read access.
 
+config UTIL_LINUX_NG_IRQTOP
+	bool
+	select UTIL_LINUX_NG_USES_NCURSES
+	prompt "irqtop"
+	help
+	  irqtop is a tool to observe irqs and softirqs in
+          a top like fashion.
+
+config UTIL_LINUX_NG_LSIRQ
+	bool
+	prompt "lsirq"
+	help
+	  lsirq is a tool to list kernel interrupt information.
+
 comment "BusyBox' ipcs is selected!"
 	depends on BUSYBOX_IPCS
 
diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
index dbb81fc1f..3c53a4a95 100644
--- a/rules/util-linux-ng.make
+++ b/rules/util-linux-ng.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
 #
 # Paths and names
 #
-UTIL_LINUX_NG_VERSION	:= 2.35.2
-UTIL_LINUX_NG_MD5	:= 248a4d0810c9193e0e9a4bb3f26b93d8
+UTIL_LINUX_NG_VERSION	:= 2.36
+UTIL_LINUX_NG_MD5	:= fe7c0f7e439f08970e462c9d44599903
 UTIL_LINUX_NG		:= util-linux-$(UTIL_LINUX_NG_VERSION)
 UTIL_LINUX_NG_SUFFIX	:= tar.xz
 UTIL_LINUX_NG_BASENAME	:= v$(call ptx/sh, echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[^0-9].*\?/\1/g')
@@ -50,7 +50,9 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	$(CROSS_AUTOCONF_USR) \
 	--bindir=/usr/bin \
 	--sbindir=/usr/sbin \
+	--disable-werror \
 	--disable-asan \
+	--disable-ubsan \
 	--enable-shared \
 	--disable-static \
 	--enable-symvers \
@@ -101,6 +103,8 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_CHMEM)-chmem \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCRM)-ipcrm \
 	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCS)-ipcs \
+	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IRQTOP)-irqtop \
+	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_LSIRQ)-lsirq \
 	--disable-rfkill \
 	--disable-tunelp \
 	--disable-kill \
@@ -151,12 +155,14 @@ UTIL_LINUX_NG_CONF_OPT	:= \
 	--without-readline \
 	--without-utempter \
 	--without-cap-ng \
+	--without-libmagic \
 	--without-libz \
 	--without-user \
 	--without-btrfs \
 	--without-systemd \
 	--with-systemdsystemunitdir=/usr/lib/systemd/system \
 	--without-smack \
+	--without-econf \
 	--without-python
 
 # ----------------------------------------------------------------------------
@@ -255,6 +261,12 @@ endif
 ifdef PTXCONF_UTIL_LINUX_NG_IPCS
 	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
 endif
+ifdef PTXCONF_UTIL_LINUX_NG_IRQTOP
+	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/irqtop)
+endif
+ifdef PTXCONF_UTIL_LINUX_NG_LSIRQ
+	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsirq)
+endif
 ifdef PTXCONF_UTIL_LINUX_NG_IPCRM
 	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcrm)
 endif
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [PATCHv2] util-linux-ng: version bump 2.35.2 -> 2.36
  2020-07-31  5:00       ` Michael Olbrich
  2020-07-31  5:43         ` [ptxdist] [PATCHv3] " Robert Schwebel
@ 2020-07-31  5:43         ` Robert Schwebel
  1 sibling, 0 replies; 33+ messages in thread
From: Robert Schwebel @ 2020-07-31  5:43 UTC (permalink / raw)
  To: ptxdist

On Fri, Jul 31, 2020 at 07:00:21AM +0200, Michael Olbrich wrote:
> > +config UTIL_LINUX_NG_IRQTOP
> > +	bool
> > +	select UTIL_LINUX_NG_USES_NCURSES
> > +	prompt "irqtop"
> > +	depends on !BUSYBOX_IRQTOP || ALLYES
> 
> See my last mail.
> 
> > +	help
> > +	  irqtop is a tool to observe irqs and softirqs in
> > +          a top like fashion.
> > +
> > +config UTIL_LINUX_NG_LSIRQ
> > +	bool
> > +	prompt "lsirq"
> > +	depends on !BUSYBOX_lsirq || ALLYES
> 
> dito.

Sorry, missed the inline content. New patch is on the list.

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 mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] ncurses: version bump 6.1 -> 6.2
  2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
                   ` (11 preceding siblings ...)
  2020-07-26 14:24 ` [ptxdist] [PATCH 13/13] iproute2: version bump 5.6.0 -> 5.7.0 Robert Schwebel
@ 2020-08-03  6:30 ` Michael Olbrich
  12 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as bd70980bdc8b561dd65aec54e62e39cdf79ec13a.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:06 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> Patches have been ported, one new configure option.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-1-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/ncurses-6.1/0001-teach-ncurses-config-about-sysroot.patch b/patches/ncurses-6.2/0001-teach-ncurses-config-about-sysroot.patch
> similarity index 54%
> rename from patches/ncurses-6.1/0001-teach-ncurses-config-about-sysroot.patch
> rename to patches/ncurses-6.2/0001-teach-ncurses-config-about-sysroot.patch
> index 64a0e960afc0..707b5a49c065 100644
> --- a/patches/ncurses-6.1/0001-teach-ncurses-config-about-sysroot.patch
> +++ b/patches/ncurses-6.2/0001-teach-ncurses-config-about-sysroot.patch
> @@ -5,40 +5,28 @@ Subject: [PATCH] teach ncurses-config about sysroot
>  This patch teaches ncurses-config about sysroot
>  
>  Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> +[ported from ncurses 6.1 to 6.2]
> +Signed-off-by: Robert Schwebel <rsc@pengutronix.de>
>  ---
>   misc/ncurses-config.in |   12 ++++++------
>   1 files changed, 6 insertions(+), 6 deletions(-)
>  
> ---- ncurses-6.1/misc/ncurses-config.in	2017-12-09 23:45:44.000000000 +0100
> -+++ ncurses-6.1/misc/ncurses-config.in	2018-02-08 13:50:07.365266351 +0100
> -@@ -101,21 +101,21 @@
> +--- ncurses-6.2/misc/ncurses-config.in	2020-02-03 00:34:34.000000000 +0100
> ++++ ncurses-6.2-ptx/misc/ncurses-config.in	2020-07-25 23:28:48.123350040 +0200
> +@@ -149,10 +149,10 @@
>   	--cflags)
>   		INCS="@PKG_CFLAGS@"
> - 		if test "x@WITH_OVERWRITE@" = xno ; then
> + 		if [ "x@WITH_OVERWRITE@" = xno ]; then
>  -			INCS="$INCS -I${includesubdir}"
>  +			INCS="$INCS -I${SYSROOT}${includesubdir}"
>   		fi
> --		if test "${includedir}" != /usr/include ; then
> + 		if [ "${includedir}" != /usr/include ]; then
>  -			INCS="$INCS -I${includedir}"
> -+		if test "${SYSROOT}${includedir}" != /usr/include ; then
>  +			INCS="$INCS -I${SYSROOT}${includedir}"
>   		fi
>   		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
>   			$INCS
> - ENDECHO
> - 		;;
> - 	--libs)
> --		if test "$libdir" = /usr/lib
> -+		if test "${SYSROOT}$libdir" = /usr/lib
> - 		then
> - 			LIBDIR=
> - 		else
> --			LIBDIR=-L$libdir
> -+			LIBDIR=-L${SYSROOT}$libdir
> - 		fi
> - 		if test @TINFO_NAME@ = @LIB_NAME@ ; then
> - 		sed -e 's,^[ ]*,,' -e 's, [ ]*, ,g' -e 's,[ ]*$,,' <<-ENDECHO
> -@@ -154,7 +154,7 @@
> +@@ -235,7 +235,7 @@
>   		echo $INCS
>   		;;
>   	--libdir)
> diff --git a/patches/ncurses-6.1/series b/patches/ncurses-6.2/series
> similarity index 100%
> rename from patches/ncurses-6.1/series
> rename to patches/ncurses-6.2/series
> diff --git a/rules/ncurses.make b/rules/ncurses.make
> index 3d2e75ce9420..6a7a13ef19f9 100644
> --- a/rules/ncurses.make
> +++ b/rules/ncurses.make
> @@ -13,16 +13,16 @@ PACKAGES-$(PTXCONF_NCURSES) += ncurses
>  #
>  # Paths and names
>  #
> -NCURSES_VERSION	:= 6.1
> +NCURSES_VERSION	:= 6.2
>  NCURSES_MAJOR	:= $(word 1,$(subst ., ,$(NCURSES_VERSION)))
> -NCURSES_MD5	:= 98c889aaf8d23910d2b92d65be2e737a
> +NCURSES_MD5	:= e812da327b1c2214ac1aed440ea3ae8d
>  NCURSES		:= ncurses-$(NCURSES_VERSION)
>  NCURSES_SUFFIX	:= tar.gz
>  NCURSES_URL	:= $(call ptx/mirror, GNU, ncurses/$(NCURSES).$(NCURSES_SUFFIX))
>  NCURSES_SOURCE	:= $(SRCDIR)/$(NCURSES).$(NCURSES_SUFFIX)
>  NCURSES_DIR	:= $(BUILDDIR)/$(NCURSES)
>  NCURSES_LICENSE	:= MIT
> -NCURSES_LICENSE_FILES := file://COPYING;md5=8a241caac0fd66225f7ac2d1b2ef76ac
> +NCURSES_LICENSE_FILES := file://COPYING;md5=910e05334f7e0b7631da6b4ebb1e1aab
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -61,6 +61,7 @@ NCURSES_AUTOCONF_SHARED = \
>  	--without-ticlib \
>  	--without-gpm \
>  	--without-dlsym \
> +	--without-pcre2 \
>  	--without-sysmouse \
>  	--disable-rpath \
>  	--disable-relink \

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] libndp: version bump 1.6 -> 1.7
  2020-07-26 14:24 ` [ptxdist] [PATCH 03/13] libndp: version bump 1.6 -> 1.7 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as f38ca48b6e32d674ac7d061f1faf24f474f40378.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:07 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There are no configure option changes and no patches.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-3-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libndp.make b/rules/libndp.make
> index 11c327ad3cb6..1711c508c1ab 100644
> --- a/rules/libndp.make
> +++ b/rules/libndp.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBNDP) += libndp
>  #
>  # Paths and names
>  #
> -LIBNDP_VERSION	:= 1.6
> -LIBNDP_MD5	:= 1e54d26bcb4a4110bc3f90c5dd04f1a7
> +LIBNDP_VERSION	:= 1.7
> +LIBNDP_MD5	:= ea4a2a3351991c1d561623772364ae14
>  LIBNDP		:= libndp-$(LIBNDP_VERSION)
>  LIBNDP_SUFFIX	:= tar.gz
>  LIBNDP_URL	:= http://libndp.org/files/$(LIBNDP).$(LIBNDP_SUFFIX)

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] openssh: version bump 8.0p1 -> 8.3p1
  2020-07-26 14:24 ` [ptxdist] [PATCH 02/13] openssh: version bump 8.0p1 -> 8.3p1 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 305cfeecfd30d15516360843840350e4670b3ecd.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:07 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There is one new configure option.
> The change in the license file fixes an umlaut encoding.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-2-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/openssh.make b/rules/openssh.make
> index 29b8535c37e4..2e3fedcae6bf 100644
> --- a/rules/openssh.make
> +++ b/rules/openssh.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_OPENSSH) += openssh
>  #
>  # Paths and names
>  #
> -OPENSSH_VERSION	:= 8.0p1
> -OPENSSH_MD5	:= bf050f002fe510e1daecd39044e1122d
> +OPENSSH_VERSION	:= 8.3p1
> +OPENSSH_MD5	:= 68d7527bf2672153ca47402f6489a1af
>  OPENSSH		:= openssh-$(OPENSSH_VERSION)
>  OPENSSH_SUFFIX	:= tar.gz
>  OPENSSH_URL	:= \
> @@ -26,7 +26,7 @@ OPENSSH_URL	:= \
>  OPENSSH_SOURCE	:= $(SRCDIR)/$(OPENSSH).$(OPENSSH_SUFFIX)
>  OPENSSH_DIR	:= $(BUILDDIR)/$(OPENSSH)
>  OPENSSH_LICENSE	:= BSD AND BSD-2-Clause AND BSD-3-Clause AND MIT AND Beerware AND ISC
> -OPENSSH_LICENSE_FILES := file://LICENCE;encoding=ISO-8859-1;md5=429658c6612f3a9b1293782366ab29d8
> +OPENSSH_LICENSE_FILES := file://LICENCE;encoding=ISO-8859-1;md5=18d9e5a8b3dd1790d73502f50426d4d3
>  
>  # ----------------------------------------------------------------------------
>  # Prepare
> @@ -51,6 +51,7 @@ OPENSSH_CONF_OPT	:= \
>  	--sysconfdir=/etc/ssh \
>  	$(GLOBAL_LARGE_FILE_OPTION) \
>  	--disable-pkcs11 \
> +	--disable-security-key \
>  	--disable-strip \
>  	--disable-etc-default-login \
>  	--disable-lastlog \

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] less: version bump 487 -> 530
  2020-07-26 14:24 ` [ptxdist] [PATCH 05/13] less: version bump 487 -> 530 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 4cb691c5a83d08e2e690fa9d46cb64930e409512.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:08 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There is a new version, without configure changes or patches.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-5-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/less.make b/rules/less.make
> index 0a392cfec392..7ccb54a9995e 100644
> --- a/rules/less.make
> +++ b/rules/less.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LESS) += less
>  #
>  # Paths and names
>  #
> -LESS_VERSION	:= 487
> -LESS_MD5	:= dcc8bf183a83b362d37fe9ef8df1fb60
> +LESS_VERSION	:= 530
> +LESS_MD5	:= 6a39bccf420c946b0fd7ffc64961315b
>  LESS		:= less-$(LESS_VERSION)
>  LESS_SUFFIX	:= tar.gz
>  LESS_URL	:= $(call ptx/mirror, GNU, less/$(LESS).$(LESS_SUFFIX))

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] haveged: version bump 1.9.8 -> 1.9.13
  2020-07-26 14:24 ` [ptxdist] [PATCH 04/13] haveged: version bump 1.9.8 -> 1.9.13 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 8591334d9ffbc96acca3f16aaa05c662bca443d0.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:08 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> The patch was a backport from upstream and has been applied meanwhile.
> 
> The license was extended by one line, with a new copyright holder and
> year, but no change of content.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-4-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch b/patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch
> deleted file mode 100644
> index 38895a97cb8c..000000000000
> --- a/patches/haveged-1.9.8/0001-cb1f06-fix-compilation-with-enable-threads.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -From cb1f0653c45d9c4a9a855119c85a1d4bfcc9b3b2 Mon Sep 17 00:00:00 2001
> -From: Lars Wendler <polynomial-c@gentoo.org>
> -Date: Thu, 14 Nov 2019 16:15:00 +0100
> -Subject: [PATCH] build: Fix compilation with --enable-threads
> -MIME-Version: 1.0
> -Content-Type: text/plain; charset=UTF-8
> -Content-Transfer-Encoding: 8bit
> -
> -Previously failed with:
> -
> -havegetune.c:190:12: error: ‘BUILD_THREAD’ undeclared (first use in this function); did you mean ‘BUILD_THREADS’?
> -  190 |    *bp++ = BUILD_THREAD;
> -      |            ^~~~~~~~~~~~
> -      |            BUILD_THREADS
> -
> -Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
> ----
> - src/havegetune.c | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/src/havegetune.c b/src/havegetune.c
> -index de39c53..6f14476 100644
> ---- a/src/havegetune.c
> -+++ b/src/havegetune.c
> -@@ -187,7 +187,7 @@ void havege_tune(          /* RETURN: none               */
> -    *bp++ = BUILD_CPUID;
> - #endif
> - #if NUMBER_CORES>1
> --   *bp++ = BUILD_THREAD;
> -+   *bp++ = BUILD_THREADS;
> - #endif
> - #ifdef ONLINE_TESTS_ENABLE
> -    *bp++ = BUILD_OLT;
> diff --git a/patches/haveged-1.9.8/series b/patches/haveged-1.9.8/series
> deleted file mode 100644
> index cb49a0968269..000000000000
> --- a/patches/haveged-1.9.8/series
> +++ /dev/null
> @@ -1 +0,0 @@
> -0001-cb1f06-fix-compilation-with-enable-threads.patch
> diff --git a/rules/haveged.make b/rules/haveged.make
> index 155c142d4d51..7c015c7141ac 100644
> --- a/rules/haveged.make
> +++ b/rules/haveged.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_HAVEGED) += haveged
>  #
>  # Paths and names
>  #
> -HAVEGED_VERSION	:= 1.9.8
> -HAVEGED_MD5	:= fba3c88e416ad99ed69849b61fdcaad0
> +HAVEGED_VERSION	:= 1.9.13
> +HAVEGED_MD5	:= 5391978794208b6cca6f53d7a6211c04
>  HAVEGED		:= haveged-$(HAVEGED_VERSION)
>  HAVEGED_SUFFIX	:= tar.gz
>  HAVEGED_URL	:= \
> @@ -25,7 +25,7 @@ HAVEGED_DIR	:= $(BUILDDIR)/$(HAVEGED)
>  HAVEGED_LICENSE	:= GPL-3.0-or-later
>  HAVEGED_LICENSE_FILES   := \
>  	file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> -	file://src/haveged.c;startline=1;endline=19;md5=772ad7f0aa1fd2230cffdf7be784b15f
> +	file://src/haveged.c;startline=1;endline=20;md5=0b45b25b79d4a3b7d800cc2c951429b2
>  
>  # ----------------------------------------------------------------------------
>  # Prepare

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] i2c-tools: version bump 4.0 -> 4.1
  2020-07-26 14:24 ` [ptxdist] [PATCH 06/13] i2c-tools: version bump 4.0 -> 4.1 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as e3d77d5195fe8d50662152df16771e7793b9c8b0.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:09 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> The patches can be removed, as they were all backports from upstream and
> are applied in the meantime.
> 
> Makefile has changed slightly, adapt the rules.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-6-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch b/patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch
> deleted file mode 100644
> index cb8908802a50..000000000000
> --- a/patches/i2c-tools-4.0/0001-lib-Module.mk-Add-missing-dependencies.patch
> +++ /dev/null
> @@ -1,28 +0,0 @@
> -From: Jean Delvare <jdelvare@suse.de>
> -Date: Wed, 6 Dec 2017 09:55:04 +0100
> -Subject: [PATCH] lib/Module.mk: Add missing dependencies
> -
> -The lib symlinks lacked a dependency to the actual library file, so
> -parallel builds could run into a race and break.
> ----
> - lib/Module.mk | 4 ++--
> - 1 file changed, 2 insertions(+), 2 deletions(-)
> -
> -diff --git a/lib/Module.mk b/lib/Module.mk
> -index 432a0518fc54..fd2c8c4e59f5 100644
> ---- a/lib/Module.mk
> -+++ b/lib/Module.mk
> -@@ -42,11 +42,11 @@ endif
> - $(LIB_DIR)/$(LIB_SHLIBNAME): $(LIB_DIR)/smbus.o
> - 	$(CC) -shared $(LDFLAGS) -Wl,--version-script=$(LIB_DIR)/libi2c.map -Wl,-soname,$(LIB_SHSONAME) -o $@ $^ -lc
> - 
> --$(LIB_DIR)/$(LIB_SHSONAME):
> -+$(LIB_DIR)/$(LIB_SHSONAME): $(LIB_DIR)/$(LIB_SHLIBNAME)
> - 	$(RM) $@
> - 	$(LN) $(LIB_SHLIBNAME) $@
> - 
> --$(LIB_DIR)/$(LIB_SHBASENAME):
> -+$(LIB_DIR)/$(LIB_SHBASENAME): $(LIB_DIR)/$(LIB_SHLIBNAME)
> - 	$(RM) $@
> - 	$(LN) $(LIB_SHLIBNAME) $@
> - 
> diff --git a/patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch b/patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch
> deleted file mode 100644
> index c4d5b9bda1d0..000000000000
> --- a/patches/i2c-tools-4.0/0002-tools-Module.mk-Add-missing-dependencies.patch
> +++ /dev/null
> @@ -1,62 +0,0 @@
> -From: Jean Delvare <jdelvare@suse.de>
> -Date: Thu, 14 Dec 2017 08:52:26 +0100
> -Subject: [PATCH] tools/Module.mk: Add missing dependencies
> -
> -Better build the library before building the tools which link against
> -it, otherwise parallel builds could run into a race and break.
> -
> -Signed-off-by: Jean Delvare <jdelvare@suse.de>
> -Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com>
> -Acked-by: Angelo Compagnucci <angelo@amarulasolutions.com>
> ----
> - lib/Module.mk   |  7 +++++++
> - tools/Module.mk | 10 +++++-----
> - 2 files changed, 12 insertions(+), 5 deletions(-)
> -
> -diff --git a/lib/Module.mk b/lib/Module.mk
> -index fd2c8c4e59f5..92aba30131f0 100644
> ---- a/lib/Module.mk
> -+++ b/lib/Module.mk
> -@@ -35,6 +35,13 @@ LIB_TARGETS	+= $(LIB_STLIBNAME)
> - LIB_OBJECTS	+= smbus.ao
> - endif
> - 
> -+# Library file to link against (static or dynamic)
> -+ifeq ($(USE_STATIC_LIB),1)
> -+LIB_DEPS	:= $(LIB_DIR)/$(LIB_STLIBNAME)
> -+else
> -+LIB_DEPS	:= $(LIB_DIR)/$(LIB_SHBASENAME)
> -+endif
> -+
> - #
> - # Libraries
> - #
> -diff --git a/tools/Module.mk b/tools/Module.mk
> -index 6421a23883bf..609de7a24784 100644
> ---- a/tools/Module.mk
> -+++ b/tools/Module.mk
> -@@ -24,19 +24,19 @@ TOOLS_TARGETS	:= i2cdetect i2cdump i2cset i2cget i2ctransfer
> - # Programs
> - #
> - 
> --$(TOOLS_DIR)/i2cdetect: $(TOOLS_DIR)/i2cdetect.o $(TOOLS_DIR)/i2cbusses.o
> -+$(TOOLS_DIR)/i2cdetect: $(TOOLS_DIR)/i2cdetect.o $(TOOLS_DIR)/i2cbusses.o $(LIB_DEPS)
> - 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
> - 
> --$(TOOLS_DIR)/i2cdump: $(TOOLS_DIR)/i2cdump.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
> -+$(TOOLS_DIR)/i2cdump: $(TOOLS_DIR)/i2cdump.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
> - 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
> - 
> --$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
> -+$(TOOLS_DIR)/i2cset: $(TOOLS_DIR)/i2cset.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
> - 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
> - 
> --$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
> -+$(TOOLS_DIR)/i2cget: $(TOOLS_DIR)/i2cget.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
> - 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
> - 
> --$(TOOLS_DIR)/i2ctransfer: $(TOOLS_DIR)/i2ctransfer.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o
> -+$(TOOLS_DIR)/i2ctransfer: $(TOOLS_DIR)/i2ctransfer.o $(TOOLS_DIR)/i2cbusses.o $(TOOLS_DIR)/util.o $(LIB_DEPS)
> - 	$(CC) $(LDFLAGS) -o $@ $^ $(TOOLS_LDFLAGS)
> - 
> - #
> diff --git a/patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch b/patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch
> deleted file mode 100644
> index 902b5d7754a4..000000000000
> --- a/patches/i2c-tools-4.0/0003-eeprog-Module.mk-Add-missing-dependency.patch
> +++ /dev/null
> @@ -1,26 +0,0 @@
> -From: "Maxin B. John" <maxin.john@gmail.com>
> -Date: Tue, 19 Dec 2017 13:46:15 +0100
> -Subject: [PATCH] eeprog/Module.mk: Add missing dependency
> -
> -Absence of this dependency caused parallel build to run into a race
> -and break.
> -
> -Signed-off-by: Maxin B. John <maxin.john@intel.com>
> -Signed-off-by: Jean Delvare <jdelvare@suse.de>
> ----
> - eeprog/Module.mk | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> -diff --git a/eeprog/Module.mk b/eeprog/Module.mk
> -index 9d368698c6a5..d2158555ab76 100644
> ---- a/eeprog/Module.mk
> -+++ b/eeprog/Module.mk
> -@@ -20,7 +20,7 @@ EEPROG_TARGETS	:= eeprog
> - # Programs
> - #
> - 
> --$(EEPROG_DIR)/eeprog: $(EEPROG_DIR)/eeprog.o $(EEPROG_DIR)/24cXX.o
> -+$(EEPROG_DIR)/eeprog: $(EEPROG_DIR)/eeprog.o $(EEPROG_DIR)/24cXX.o $(LIB_DEPS)
> - 	$(CC) $(LDFLAGS) -o $@ $^ $(EEPROG_LDFLAGS)
> - 
> - #
> diff --git a/patches/i2c-tools-4.0/series b/patches/i2c-tools-4.0/series
> deleted file mode 100644
> index e3baaaea2fbf..000000000000
> --- a/patches/i2c-tools-4.0/series
> +++ /dev/null
> @@ -1,6 +0,0 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
> -0001-lib-Module.mk-Add-missing-dependencies.patch
> -0002-tools-Module.mk-Add-missing-dependencies.patch
> -0003-eeprog-Module.mk-Add-missing-dependency.patch
> -# 17489d574df925f551430e5937f3baa9  - git-ptx-patches magic
> diff --git a/rules/i2c-tools.make b/rules/i2c-tools.make
> index 9a409deed8cc..9100c8a955b6 100644
> --- a/rules/i2c-tools.make
> +++ b/rules/i2c-tools.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_I2C_TOOLS) += i2c-tools
>  #
>  # Paths and names
>  #
> -I2C_TOOLS_VERSION	:= 4.0
> -I2C_TOOLS_MD5		:= f873c657d00bc00e9c47ed938c2cd770
> +I2C_TOOLS_VERSION	:= 4.1
> +I2C_TOOLS_MD5		:= e2981debb4a822a279be7e45a0ede988
>  I2C_TOOLS		:= i2c-tools-$(I2C_TOOLS_VERSION)
>  I2C_TOOLS_SUFFIX	:= tar.xz
>  I2C_TOOLS_URL		:= https://www.kernel.org/pub/software/utils/i2c-tools/$(I2C_TOOLS).$(I2C_TOOLS_SUFFIX)
> @@ -31,12 +31,14 @@ I2C_TOOLS_CONF_TOOL := NO
>  
>  I2C_TOOLS_MAKE_ENV := \
>  	$(CROSS_ENV) \
> -	BUILD_STATIC_LIB=0
> +	BUILD_STATIC_LIB=0 \
> +	BUILD_DYNAMIC_LIB=1 \
> +	USE_DYNAMIC_LIB=1
>  
>  # install the header files to include/i2c-tools
>  # this way they don't collide with the toolchain's i2c headers
>  I2C_TOOLS_INSTALL_OPT := \
> -	prefix=/usr \
> +	PREFIX=/usr \
>  	incdir=/usr/include/i2c-tools \
>  	install
>  

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] procps: version bump 3.3.15 -> 3.3.16
  2020-07-26 14:24 ` [ptxdist] [PATCH 09/13] procps: version bump 3.3.15 -> 3.3.16 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 17e651bff6ba46bd71c554d0490307d8e7e74839.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:10 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There are no configure changes and no patches.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-9-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/procps.make b/rules/procps.make
> index 9a042900dd98..17efd0c26858 100644
> --- a/rules/procps.make
> +++ b/rules/procps.make
> @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_PROCPS) += procps
>  #
>  # Paths and names
>  #
> -PROCPS_VERSION	:= 3.3.15
> -PROCPS_MD5	:= 2b0717a7cb474b3d6dfdeedfbad2eccc
> +PROCPS_VERSION	:= 3.3.16
> +PROCPS_MD5	:= e8dc8455e573bdc40b8381d572bbb89b
>  PROCPS		:= procps-ng-$(PROCPS_VERSION)
>  PROCPS_SUFFIX	:= tar.xz
>  PROCPS_URL	:= $(call ptx/mirror, SF, procps-ng/Production/$(PROCPS).$(PROCPS_SUFFIX))

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] libseccomp: version bump 2.4.3 -> 2.5.0
  2020-07-26 14:24 ` [ptxdist] [PATCH 07/13] libseccomp: version bump 2.4.3 -> 2.5.0 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 6126bfc0ead5ac5fd2dd46c275764f146c92d552.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:10 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> Patches have been ported; there are no changes in configure.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-7-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/libseccomp-2.4.3/0001-run-time-use-a-broadly-supported-shell-interpreter.patch b/patches/libseccomp-2.5.0/0001-run-time-use-a-broadly-supported-shell-interpreter.patch
> similarity index 100%
> rename from patches/libseccomp-2.4.3/0001-run-time-use-a-broadly-supported-shell-interpreter.patch
> rename to patches/libseccomp-2.5.0/0001-run-time-use-a-broadly-supported-shell-interpreter.patch
> diff --git a/patches/libseccomp-2.4.3/series b/patches/libseccomp-2.5.0/series
> similarity index 100%
> rename from patches/libseccomp-2.4.3/series
> rename to patches/libseccomp-2.5.0/series
> diff --git a/rules/libseccomp.make b/rules/libseccomp.make
> index 07734c82a491..71f2c05704d5 100644
> --- a/rules/libseccomp.make
> +++ b/rules/libseccomp.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBSECCOMP) += libseccomp
>  #
>  # Paths and names
>  #
> -LIBSECCOMP_VERSION	:= 2.4.3
> -LIBSECCOMP_MD5		:= 1de97a3c04889a790d97722d08f4a8d1
> +LIBSECCOMP_VERSION	:= 2.5.0
> +LIBSECCOMP_MD5		:= 463b688bf7d227325b5a465b6bdc3ec4
>  LIBSECCOMP		:= libseccomp-$(LIBSECCOMP_VERSION)
>  LIBSECCOMP_SUFFIX	:= tar.gz
>  LIBSECCOMP_URL		:= https://github.com/seccomp/libseccomp/releases/download/v$(LIBSECCOMP_VERSION)/$(LIBSECCOMP).$(LIBSECCOMP_SUFFIX)

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] strace: version bump 5.4 -> 5.7
  2020-07-26 14:24 ` [ptxdist] [PATCH 10/13] strace: version bump 5.4 -> 5.7 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 173d59912925fe764d11b9b7f246c756ffa54c4b.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:11 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There are neigher new configure options nor patches that need porting.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-10-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/strace.make b/rules/strace.make
> index cc10b8077507..703301c3a4ba 100644
> --- a/rules/strace.make
> +++ b/rules/strace.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_STRACE) += strace
>  #
>  # Paths and names
>  #
> -STRACE_VERSION	:= 5.4
> -STRACE_MD5	:= b2b58f05eb3c5c0bf9d1e26003b4d698
> +STRACE_VERSION	:= 5.7
> +STRACE_MD5	:= 8c35b8ebf187b2ec18209bd7bbd16e7a
>  STRACE		:= strace-$(STRACE_VERSION)
>  STRACE_SUFFIX	:= tar.xz
>  STRACE_URL	:= https://strace.io/files/$(STRACE_VERSION)/$(STRACE).$(STRACE_SUFFIX)

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] pciutils: version bump 3.6.2 -> 3.7.0
  2020-07-26 14:24 ` [ptxdist] [PATCH 11/13] pciutils: version bump 3.6.2 -> 3.7.0 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 31cda1c7dc64c07eda9b85f261b74628cb69042e.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:11 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> The license refers to an url which has changed from http to https.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-11-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/pciutils.make b/rules/pciutils.make
> index 10e7828593f1..6f472e63d1f2 100644
> --- a/rules/pciutils.make
> +++ b/rules/pciutils.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_PCIUTILS) += pciutils
>  #
>  # Paths and names
>  #
> -PCIUTILS_VERSION	:= 3.6.2
> -PCIUTILS_MD5		:= 77963796d1be4f451b83e6da28ba4f82
> +PCIUTILS_VERSION	:= 3.7.0
> +PCIUTILS_MD5		:= e6e20482b4f25c5186e6a753c5edc361
>  PCIUTILS		:= pciutils-$(PCIUTILS_VERSION)
>  PCIUTILS_SUFFIX		:= tar.xz
>  PCIUTILS_URL		:= $(call ptx/mirror, KERNEL, ../software/utils/pciutils/$(PCIUTILS).$(PCIUTILS_SUFFIX))
> @@ -24,7 +24,7 @@ PCIUTILS_SOURCE		:= $(SRCDIR)/$(PCIUTILS).$(PCIUTILS_SUFFIX)
>  PCIUTILS_DIR		:= $(BUILDDIR)/$(PCIUTILS)
>  PCIUTILS_LICENSE	:= GPL-2.0-or-later
>  PCIUTILS_LICENSE_FILES	:= \
> -	file://README;startline=4;endline=8;md5=e6d1f5496a9acbc746789a7b925d02e1
> +	file://README;startline=4;endline=8;md5=2ae7724797a960932b288272eed49a30
>  
>  # ----------------------------------------------------------------------------
>  # Prepare

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] iproute2: version bump 5.6.0 -> 5.7.0
  2020-07-26 14:24 ` [ptxdist] [PATCH 13/13] iproute2: version bump 5.6.0 -> 5.7.0 Robert Schwebel
@ 2020-08-03  6:30   ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 394f3458e76608c8f12788da5a0528b7800d028d.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:12 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There are no relevant Makefile changes and no patches.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200726142436.3113607-13-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/iproute2.make b/rules/iproute2.make
> index 3f7d1532b93a..4e11d382bd08 100644
> --- a/rules/iproute2.make
> +++ b/rules/iproute2.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_IPROUTE2) += iproute2
>  #
>  # Paths and names
>  #
> -IPROUTE2_VERSION	:= 5.6.0
> -IPROUTE2_MD5		:= 9da0c352707c34b8b1fec3bf42fcfd09
> +IPROUTE2_VERSION	:= 5.7.0
> +IPROUTE2_MD5		:= da22ab8562eda56ae232872fa72e4870
>  IPROUTE2		:= iproute2-$(IPROUTE2_VERSION)
>  IPROUTE2_SUFFIX		:= tar.xz
>  IPROUTE2_URL		:= $(call ptx/mirror, KERNEL, utils/net/iproute2/$(IPROUTE2).$(IPROUTE2_SUFFIX))

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] readline: version bump 7.0 -> 8.0
  2020-07-27 10:02     ` [ptxdist] [PATCH 1/6] " Robert Schwebel
@ 2020-08-03  6:30       ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as 572a6b869a83ba1f7b3c242f7df6f48025cec273.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:13 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There is one new configure option; the patche have been forward-ported
> and are still valid.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200727100236.3134053-1-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/readline-7.0/0001-rl-attribute.patch b/patches/readline-8.0/0001-rl-attribute.patch
> similarity index 92%
> rename from patches/readline-7.0/0001-rl-attribute.patch
> rename to patches/readline-8.0/0001-rl-attribute.patch
> index ac9bd84e8ebd..7f8f9ec3f6dd 100644
> --- a/patches/readline-7.0/0001-rl-attribute.patch
> +++ b/patches/readline-8.0/0001-rl-attribute.patch
> @@ -14,10 +14,10 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
>   2 files changed, 5 insertions(+), 5 deletions(-)
>  
>  diff --git a/readline.h b/readline.h
> -index 924bbfb0f213..b1a177a577d5 100644
> +index da782716af2a..5858147b2e8d 100644
>  --- a/readline.h
>  +++ b/readline.h
> -@@ -385,7 +385,7 @@ extern int rl_reset_line_state PARAMS((void));
> +@@ -393,7 +393,7 @@ extern int rl_reset_line_state PARAMS((void));
>   extern int rl_crlf PARAMS((void));
>   
>   #if defined (USE_VARARGS) && defined (PREFER_STDARG)
> diff --git a/patches/readline-7.0/0002-rl-header.patch b/patches/readline-8.0/0002-rl-header.patch
> similarity index 91%
> rename from patches/readline-7.0/0002-rl-header.patch
> rename to patches/readline-8.0/0002-rl-header.patch
> index 94a7f616effd..108957d3d374 100644
> --- a/patches/readline-7.0/0002-rl-header.patch
> +++ b/patches/readline-8.0/0002-rl-header.patch
> @@ -14,7 +14,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
>   2 files changed, 2 insertions(+)
>  
>  diff --git a/history.h b/history.h
> -index 8ce7c805d168..8d568a79fa29 100644
> +index cc3de29a6423..24cd63ce111c 100644
>  --- a/history.h
>  +++ b/history.h
>  @@ -32,6 +32,7 @@ extern "C" {
> @@ -26,7 +26,7 @@ index 8ce7c805d168..8d568a79fa29 100644
>   #  include <readline/rltypedefs.h>
>   #endif
>  diff --git a/readline.h b/readline.h
> -index b1a177a577d5..06c2abe61736 100644
> +index 5858147b2e8d..7d4ecd2346fa 100644
>  --- a/readline.h
>  +++ b/readline.h
>  @@ -32,6 +32,7 @@ extern "C" {
> diff --git a/patches/readline-7.0/0003-rl-no-rpath.patch b/patches/readline-8.0/0003-rl-no-rpath.patch
> similarity index 95%
> rename from patches/readline-7.0/0003-rl-no-rpath.patch
> rename to patches/readline-8.0/0003-rl-no-rpath.patch
> index 5a97e715ecb5..0f49199e5791 100644
> --- a/patches/readline-7.0/0003-rl-no-rpath.patch
> +++ b/patches/readline-8.0/0003-rl-no-rpath.patch
> @@ -13,7 +13,7 @@ Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
>   1 file changed, 1 insertion(+), 1 deletion(-)
>  
>  diff --git a/support/shobj-conf b/support/shobj-conf
> -index 1f64433dea83..ce435d7db254 100644
> +index 7920f1b5cb90..7ac9c9fb311d 100644
>  --- a/support/shobj-conf
>  +++ b/support/shobj-conf
>  @@ -128,7 +128,7 @@ linux*-*|gnu*-*|k*bsd*-gnu-*|freebsd*-gentoo)
> diff --git a/patches/readline-7.0/0004-rlfe-history.patch b/patches/readline-8.0/0004-rlfe-history.patch
> similarity index 100%
> rename from patches/readline-7.0/0004-rlfe-history.patch
> rename to patches/readline-8.0/0004-rlfe-history.patch
> diff --git a/patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch b/patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
> similarity index 100%
> rename from patches/readline-7.0/0005-always-link-against-our-termcap-libraries.patch
> rename to patches/readline-8.0/0005-always-link-against-our-termcap-libraries.patch
> diff --git a/patches/readline-7.0/series b/patches/readline-8.0/series
> similarity index 100%
> rename from patches/readline-7.0/series
> rename to patches/readline-8.0/series
> diff --git a/rules/readline.make b/rules/readline.make
> index 4cb9663f2c67..14b89cfb9747 100644
> --- a/rules/readline.make
> +++ b/rules/readline.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_READLINE) += readline
>  #
>  # Paths and names
>  #
> -READLINE_VERSION	:= 7.0
> -READLINE_MD5		:= 205b03a87fc83dab653b628c59b9fc91
> +READLINE_VERSION	:= 8.0
> +READLINE_MD5		:= 7e6c1f16aee3244a69aba6e438295ca3
>  READLINE		:= readline-$(READLINE_VERSION)
>  READLINE_SUFFIX		:= tar.gz
>  READLINE_URL		:= $(call ptx/mirror, GNU, readline/$(READLINE).$(READLINE_SUFFIX))
> @@ -34,6 +34,7 @@ READLINE_AUTOCONF := \
>  	--disable-multibyte \
>  	--enable-shared \
>  	--disable-static\
> +	--disable-install-examples \
>  	$(GLOBAL_LARGE_FILE_OPTION) \
>  	--$(call ptx/wwo,PTXCONF_READLINE_NCURSES)-curses
>  

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

* Re: [ptxdist] [APPLIED] util-linux-ng: version bump 2.35.2 -> 2.36
  2020-07-31  5:43         ` [ptxdist] [PATCHv3] " Robert Schwebel
@ 2020-08-03  6:30           ` Michael Olbrich
  0 siblings, 0 replies; 33+ messages in thread
From: Michael Olbrich @ 2020-08-03  6:30 UTC (permalink / raw)
  To: ptxdist; +Cc: Robert Schwebel

Thanks, applied as e643534ce8fa4e8d5e9cf2d7b127f9369a0ff48f.

Michael

[sent from post-receive hook]

On Mon, 03 Aug 2020 08:30:16 +0200, Robert Schwebel <r.schwebel@pengutronix.de> wrote:
> There are two new tools: lsirq and irqtop.
> 
> Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
> Message-Id: <20200731054314.3515832-1-r.schwebel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/util-linux-ng.in b/rules/util-linux-ng.in
> index 34fcd5a47271..9586ff60bf34 100644
> --- a/rules/util-linux-ng.in
> +++ b/rules/util-linux-ng.in
> @@ -279,6 +279,20 @@ config UTIL_LINUX_NG_IPCS
>  	  ipcs provides information on the ipc facilities
>  	  for which the calling process has read access.
>  
> +config UTIL_LINUX_NG_IRQTOP
> +	bool
> +	select UTIL_LINUX_NG_USES_NCURSES
> +	prompt "irqtop"
> +	help
> +	  irqtop is a tool to observe irqs and softirqs in
> +          a top like fashion.
> +
> +config UTIL_LINUX_NG_LSIRQ
> +	bool
> +	prompt "lsirq"
> +	help
> +	  lsirq is a tool to list kernel interrupt information.
> +
>  comment "BusyBox' ipcs is selected!"
>  	depends on BUSYBOX_IPCS
>  
> diff --git a/rules/util-linux-ng.make b/rules/util-linux-ng.make
> index dbb81fc1f0b5..3c53a4a957bc 100644
> --- a/rules/util-linux-ng.make
> +++ b/rules/util-linux-ng.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_UTIL_LINUX_NG) += util-linux-ng
>  #
>  # Paths and names
>  #
> -UTIL_LINUX_NG_VERSION	:= 2.35.2
> -UTIL_LINUX_NG_MD5	:= 248a4d0810c9193e0e9a4bb3f26b93d8
> +UTIL_LINUX_NG_VERSION	:= 2.36
> +UTIL_LINUX_NG_MD5	:= fe7c0f7e439f08970e462c9d44599903
>  UTIL_LINUX_NG		:= util-linux-$(UTIL_LINUX_NG_VERSION)
>  UTIL_LINUX_NG_SUFFIX	:= tar.xz
>  UTIL_LINUX_NG_BASENAME	:= v$(call ptx/sh, echo $(UTIL_LINUX_NG_VERSION) | sed -e 's/\([0-9]*\.[0-9]*\)[^0-9].*\?/\1/g')
> @@ -50,7 +50,9 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	$(CROSS_AUTOCONF_USR) \
>  	--bindir=/usr/bin \
>  	--sbindir=/usr/sbin \
> +	--disable-werror \
>  	--disable-asan \
> +	--disable-ubsan \
>  	--enable-shared \
>  	--disable-static \
>  	--enable-symvers \
> @@ -101,6 +103,8 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_CHMEM)-chmem \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCRM)-ipcrm \
>  	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IPCS)-ipcs \
> +	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_IRQTOP)-irqtop \
> +	--$(call ptx/endis, PTXCONF_UTIL_LINUX_NG_LSIRQ)-lsirq \
>  	--disable-rfkill \
>  	--disable-tunelp \
>  	--disable-kill \
> @@ -151,12 +155,14 @@ UTIL_LINUX_NG_CONF_OPT	:= \
>  	--without-readline \
>  	--without-utempter \
>  	--without-cap-ng \
> +	--without-libmagic \
>  	--without-libz \
>  	--without-user \
>  	--without-btrfs \
>  	--without-systemd \
>  	--with-systemdsystemunitdir=/usr/lib/systemd/system \
>  	--without-smack \
> +	--without-econf \
>  	--without-python
>  
>  # ----------------------------------------------------------------------------
> @@ -255,6 +261,12 @@ endif
>  ifdef PTXCONF_UTIL_LINUX_NG_IPCS
>  	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcs)
>  endif
> +ifdef PTXCONF_UTIL_LINUX_NG_IRQTOP
> +	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/irqtop)
> +endif
> +ifdef PTXCONF_UTIL_LINUX_NG_LSIRQ
> +	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/lsirq)
> +endif
>  ifdef PTXCONF_UTIL_LINUX_NG_IPCRM
>  	@$(call install_copy, util-linux-ng, 0, 0, 0755, -, /usr/bin/ipcrm)
>  endif

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

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

end of thread, other threads:[~2020-08-03  6:30 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-26 14:24 [ptxdist] [PATCH 01/13] ncurses: version bump 6.1 -> 6.2 Robert Schwebel
2020-07-26 14:24 ` [ptxdist] [PATCH 02/13] openssh: version bump 8.0p1 -> 8.3p1 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 03/13] libndp: version bump 1.6 -> 1.7 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 04/13] haveged: version bump 1.9.8 -> 1.9.13 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 05/13] less: version bump 487 -> 530 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 06/13] i2c-tools: version bump 4.0 -> 4.1 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 07/13] libseccomp: version bump 2.4.3 -> 2.5.0 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 08/13] readline: version bump 7.0 -> 8.0 Robert Schwebel
2020-07-27  9:05   ` Roland Hieber
2020-07-27 10:02     ` [ptxdist] [PATCH 1/6] " Robert Schwebel
2020-08-03  6:30       ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 09/13] procps: version bump 3.3.15 -> 3.3.16 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 10/13] strace: version bump 5.4 -> 5.7 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 11/13] pciutils: version bump 3.6.2 -> 3.7.0 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-26 14:24 ` [ptxdist] [PATCH 12/13] util-linux-nt: version bump 2.35.2 -> 2.36 Robert Schwebel
2020-07-30 13:41   ` Michael Olbrich
2020-07-30 14:56     ` [ptxdist] [PATCHv2] util-linux-ng: " Robert Schwebel
2020-07-31  5:00       ` Michael Olbrich
2020-07-31  5:43         ` [ptxdist] [PATCHv3] " Robert Schwebel
2020-08-03  6:30           ` [ptxdist] [APPLIED] " Michael Olbrich
2020-07-31  5:43         ` [ptxdist] [PATCHv2] " Robert Schwebel
2020-07-26 14:24 ` [ptxdist] [PATCH 13/13] iproute2: version bump 5.6.0 -> 5.7.0 Robert Schwebel
2020-08-03  6:30   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-08-03  6:30 ` [ptxdist] [APPLIED] ncurses: version bump 6.1 -> 6.2 Michael Olbrich

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