mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/7] various version bumps
@ 2022-09-20 14:17 Marc Kleine-Budde
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected Marc Kleine-Budde
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist

Hello,

this series contains a few versions bumps and a configure fix for
libcurl with deactivated ssl backend.

regards,
Marc

changes since v1:
- clarify subject and patch description for 1/7





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

* [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-22 14:00   ` Michael Olbrich
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 2/7] bind: version bump to 9.11.37 Marc Kleine-Budde
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

If no SSL backend is selected configure will fail with the following
error:

| configure: error: TLS not detected, you will not be able to use HTTPS, FTPS, NTLM and more.
| Use --with-openssl, --with-gnutls, --with-wolfssl, --with-mbedtls,
| --with-nss, --with-schannel, --with-secure-transport, --with-amissl,
| --with-bearssl or --with-rustls to address this.

Fixes: 34db9dd470bd ("libcurl: Version bump. 7.84.0 -> 7.85.0")
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/libcurl.make | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/rules/libcurl.make b/rules/libcurl.make
index 0d0ac9ea33d0..1ddefa9a5b4e 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -105,7 +105,6 @@ LIBCURL_CONF_OPT	:= \
 	--without-brotli \
 	--without-zstd \
 	--without-gssapi \
-	--with-default-ssl-backend=$(PTXCONF_LIBCURL_SSL_DEFAULT_BACKEND) \
 	--with-random=/dev/urandom \
 	--with-ca-bundle=$(PTXCONF_LIBCURL_SSL_CABUNDLE_PATH) \
 	--with-ca-path=$(PTXCONF_LIBCURL_SSL_CAPATH_PATH) \
@@ -126,6 +125,14 @@ LIBCURL_CONF_OPT	:= \
 	--without-zsh-functions-dir \
 	--without-fish-functions-dir
 
+ifdef PTXCONF_LIBCURL_SSL
+LIBCURL_CONF_OPT += \
+	--with-default-ssl-backend=$(PTXCONF_LIBCURL_SSL_DEFAULT_BACKEND)
+else
+LIBCURL_CONF_OPT += \
+	--without-ssl
+endif
+
 # ----------------------------------------------------------------------------
 # Target-Install
 # ----------------------------------------------------------------------------
-- 
2.30.2




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

* [ptxdist] [PATCH v2 2/7] bind: version bump to 9.11.37
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-22 14:50   ` Michael Olbrich
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 3/7] dhcp: version bump to 4.4.3 Marc Kleine-Budde
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/bind.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/bind.make b/rules/bind.make
index b547eeff0993..322edd3926cc 100644
--- a/rules/bind.make
+++ b/rules/bind.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_BIND) += bind
 #
 # Paths and names
 #
-BIND_VERSION		:= 9.11.31
-BIND_MD5		:= 40732ca6e4fcc9d022ab0f17b3e55b71
+BIND_VERSION		:= 9.11.37
+BIND_MD5		:= 0a11e9596c46d6728fa3b0989ee75197
 BIND			:= bind-$(BIND_VERSION)
 BIND_SUFFIX		:= tar.gz
 BIND_URL		:= https://ftp.isc.org/isc/bind9/$(BIND_VERSION)/$(BIND).$(BIND_SUFFIX)
-- 
2.30.2




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

* [ptxdist] [PATCH v2 3/7] dhcp: version bump to 4.4.3
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected Marc Kleine-Budde
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 2/7] bind: version bump to 9.11.37 Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-22 15:20   ` Michael Olbrich
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 4/7] dnsmasq: version bump to 2.86 Marc Kleine-Budde
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 ...0001-Fixed-gcc-10-compilation-issues.patch | 82 -------------------
 patches/dhcp-4.4.2/series                     |  4 -
 rules/dhcp.make                               |  4 +-
 3 files changed, 2 insertions(+), 88 deletions(-)
 delete mode 100644 patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch
 delete mode 100644 patches/dhcp-4.4.2/series

diff --git a/patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch b/patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch
deleted file mode 100644
index f0e3cc450bbe..000000000000
--- a/patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch
+++ /dev/null
@@ -1,82 +0,0 @@
-From: Thomas Markwalder <tmark@isc.org>
-Date: Thu, 30 Jul 2020 10:01:36 -0400
-Subject: [PATCH] Fixed gcc 10 compilation issues
-
-client/dhclient.c
-relay/dhcrelay.c
-    extern'ed local_port,remote_port
-
-common/discover.c
-    init local_port,remote_port to 0
-
-server/mdb.c
-    extern'ed dhcp_type_host
-
-server/mdb6.c
-    create_prefix6() - eliminated memcpy string overflow error
-
-Origin: https://sources.debian.org/patches/isc-dhcp/4.4.1-2.2/Fixed_gcc_10_compilation_issues.patch/
----
- client/dhclient.c | 5 +++--
- relay/dhcrelay.c  | 4 ++--
- server/mdb.c      | 2 +-
- server/mdb6.c     | 2 +-
- 4 files changed, 7 insertions(+), 6 deletions(-)
-
-diff --git a/client/dhclient.c b/client/dhclient.c
-index 189e527094e8..7a7837cb8152 100644
---- a/client/dhclient.c
-+++ b/client/dhclient.c
-@@ -83,8 +83,9 @@ static const char message [] = "Internet Systems Consortium DHCP Client";
- static const char url [] = "For info, please visit https://www.isc.org/software/dhcp/";
- #endif /* UNIT_TEST */
- 
--u_int16_t local_port = 0;
--u_int16_t remote_port = 0;
-+extern u_int16_t local_port;
-+extern u_int16_t remote_port;
-+
- #if defined(DHCPv6) && defined(DHCP4o6)
- int dhcp4o6_state = -1; /* -1 = stopped, 0 = polling, 1 = started */
- #endif
-diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c
-index 883d5058f2ee..7211e3bbbec9 100644
---- a/relay/dhcrelay.c
-+++ b/relay/dhcrelay.c
-@@ -95,8 +95,8 @@ enum { forward_and_append,	/* Forward and append our own relay option. */
-        forward_untouched,	/* Forward without changes. */
-        discard } agent_relay_mode = forward_and_replace;
- 
--u_int16_t local_port;
--u_int16_t remote_port;
-+extern u_int16_t local_port;
-+extern u_int16_t remote_port;
- 
- /* Relay agent server list. */
- struct server_list {
-diff --git a/server/mdb.c b/server/mdb.c
-index ff8a707fac1b..8266d76432b8 100644
---- a/server/mdb.c
-+++ b/server/mdb.c
-@@ -67,7 +67,7 @@ static host_id_info_t *host_id_info = NULL;
- 
- int numclasseswritten;
- 
--omapi_object_type_t *dhcp_type_host;
-+extern omapi_object_type_t *dhcp_type_host;
- 
- isc_result_t enter_class(cd, dynamicp, commit)
- 	struct class *cd;
-diff --git a/server/mdb6.c b/server/mdb6.c
-index da7baf6e50df..ebe01e5607cb 100644
---- a/server/mdb6.c
-+++ b/server/mdb6.c
-@@ -1945,7 +1945,7 @@ create_prefix6(struct ipv6_pool *pool, struct iasubopt **pref,
- 		}
- 		new_ds.data = new_ds.buffer->data;
- 		memcpy(new_ds.buffer->data, ds.data, ds.len);
--		memcpy(new_ds.buffer->data + ds.len, &tmp, sizeof(tmp));
-+		memcpy(&new_ds.buffer->data[0] + ds.len, &tmp, sizeof(tmp));
- 		data_string_forget(&ds, MDL);
- 		data_string_copy(&ds, &new_ds, MDL);
- 		data_string_forget(&new_ds, MDL);
diff --git a/patches/dhcp-4.4.2/series b/patches/dhcp-4.4.2/series
deleted file mode 100644
index de5f31877455..000000000000
--- a/patches/dhcp-4.4.2/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-Fixed-gcc-10-compilation-issues.patch
-# dd19bdbd49b780e973ed9392604d03fe  - git-ptx-patches magic
diff --git a/rules/dhcp.make b/rules/dhcp.make
index 7feb6ef5b668..b726b8787890 100644
--- a/rules/dhcp.make
+++ b/rules/dhcp.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_DHCP) += dhcp
 #
 # Paths and names
 #
-DHCP_VERSION	:= 4.4.2
-DHCP_MD5	:= 2afdaf8498dc1edaf3012efdd589b3e1
+DHCP_VERSION	:= 4.4.3
+DHCP_MD5	:= 9076af4cc1293dde5a7c6cae7de6ab45
 DHCP		:= dhcp-$(DHCP_VERSION)
 DHCP_SUFFIX	:= tar.gz
 DHCP_URL	:= \
-- 
2.30.2




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

* [ptxdist] [PATCH v2 4/7] dnsmasq: version bump to 2.86
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
                   ` (2 preceding siblings ...)
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 3/7] dhcp: version bump to 4.4.3 Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-28 14:28   ` [ptxdist] [APPLIED] " Michael Olbrich
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 5/7] glib: version bump to 2.72.3 Marc Kleine-Budde
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 .../0001-the-pkg-config-file-is-lua-no-lua5.2.patch           | 2 +-
 patches/{dnsmasq-2.85 => dnsmasq-2.86}/series                 | 0
 rules/dnsmasq.make                                            | 4 ++--
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename patches/{dnsmasq-2.85 => dnsmasq-2.86}/0001-the-pkg-config-file-is-lua-no-lua5.2.patch (97%)
 rename patches/{dnsmasq-2.85 => dnsmasq-2.86}/series (100%)

diff --git a/patches/dnsmasq-2.85/0001-the-pkg-config-file-is-lua-no-lua5.2.patch b/patches/dnsmasq-2.86/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
similarity index 97%
rename from patches/dnsmasq-2.85/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
rename to patches/dnsmasq-2.86/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
index 5aebae2dfa13..b53a81cfa7a9 100644
--- a/patches/dnsmasq-2.85/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
+++ b/patches/dnsmasq-2.86/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
@@ -8,7 +8,7 @@ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/Makefile b/Makefile
-index e4c3f5c92a76..fa33af1a0c20 100644
+index 0cd592e91fa6..5bb2b42b5982 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -60,8 +60,8 @@ idn2_cflags =   `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LIBIDN2 $(PKG_CONFI
diff --git a/patches/dnsmasq-2.85/series b/patches/dnsmasq-2.86/series
similarity index 100%
rename from patches/dnsmasq-2.85/series
rename to patches/dnsmasq-2.86/series
diff --git a/rules/dnsmasq.make b/rules/dnsmasq.make
index e5be3265ab4f..584d5dbba74c 100644
--- a/rules/dnsmasq.make
+++ b/rules/dnsmasq.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_DNSMASQ) += dnsmasq
 #
 # Paths and names
 #
-DNSMASQ_VERSION		:= 2.85
-DNSMASQ_MD5		:= f32403e94a657b93d7fbe0a9c07ebccf
+DNSMASQ_VERSION		:= 2.86
+DNSMASQ_MD5		:= 227fd0e81a5ed8134e1f60e175324c99
 DNSMASQ			:= dnsmasq-$(DNSMASQ_VERSION)
 DNSMASQ_SUFFIX		:= tar.xz
 DNSMASQ_URL		:= http://www.thekelleys.org.uk/dnsmasq/$(DNSMASQ).$(DNSMASQ_SUFFIX)
-- 
2.30.2




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

* [ptxdist] [PATCH v2 5/7] glib: version bump to 2.72.3
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
                   ` (3 preceding siblings ...)
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 4/7] dnsmasq: version bump to 2.86 Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-28 14:28   ` [ptxdist] [APPLIED] " Michael Olbrich
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 6/7] gnutls: version bump to 3.7.7 Marc Kleine-Budde
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 7/7] lz4: version bump to 1.9.4 Marc Kleine-Budde
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/glib.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/glib.make b/rules/glib.make
index 144814c7700b..8b1fd17f93bc 100644
--- a/rules/glib.make
+++ b/rules/glib.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_GLIB) += glib
 #
 # Paths and names
 #
-GLIB_VERSION	:= 2.72.2
-GLIB_MD5	:= 6874205c81e9634fb47f4efb73183d00
+GLIB_VERSION	:= 2.72.3
+GLIB_MD5	:= ef67f7e19e47c8e082256d614f1ab8f4
 GLIB		:= glib-$(GLIB_VERSION)
 GLIB_SUFFIX	:= tar.xz
 GLIB_URL	:= $(call ptx/mirror, GNOME, glib/$(basename $(GLIB_VERSION))/$(GLIB).$(GLIB_SUFFIX))
-- 
2.30.2




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

* [ptxdist] [PATCH v2 6/7] gnutls: version bump to 3.7.7
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
                   ` (4 preceding siblings ...)
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 5/7] glib: version bump to 2.72.3 Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-28 14:28   ` [ptxdist] [APPLIED] " Michael Olbrich
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 7/7] lz4: version bump to 1.9.4 Marc Kleine-Budde
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/gnutls.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/gnutls.make b/rules/gnutls.make
index 972d12104d51..5420fd4c2cc9 100644
--- a/rules/gnutls.make
+++ b/rules/gnutls.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_GNUTLS) += gnutls
 #
 # Paths and names
 #
-GNUTLS_VERSION	:= 3.7.6
-GNUTLS_MD5	:= 5b07c89e53a351209dc23b714da3ef98
+GNUTLS_VERSION	:= 3.7.7
+GNUTLS_MD5	:= 39e5c71af7f444bdf175094a787843a2
 GNUTLS		:= gnutls-$(GNUTLS_VERSION)
 GNUTLS_SUFFIX	:= tar.xz
 GNUTLS_URL	:= https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/$(GNUTLS).$(GNUTLS_SUFFIX)
-- 
2.30.2




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

* [ptxdist] [PATCH v2 7/7] lz4: version bump to 1.9.4
  2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
                   ` (5 preceding siblings ...)
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 6/7] gnutls: version bump to 3.7.7 Marc Kleine-Budde
@ 2022-09-20 14:17 ` Marc Kleine-Budde
  2022-09-22 14:24   ` Michael Olbrich
  6 siblings, 1 reply; 15+ messages in thread
From: Marc Kleine-Budde @ 2022-09-20 14:17 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 rules/lz4.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/lz4.make b/rules/lz4.make
index 79d8600c29db..930ff5a0ef3d 100644
--- a/rules/lz4.make
+++ b/rules/lz4.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LZ4) += lz4
 #
 # Paths and names
 #
-LZ4_VERSION	:= 1.9.3
-LZ4_MD5		:= 3a1ab1684e14fc1afc66228ce61b2db3
+LZ4_VERSION	:= 1.9.4
+LZ4_MD5		:= e9286adb64040071c5e23498bf753261
 LZ4		:= lz4-$(LZ4_VERSION)
 LZ4_SUFFIX	:= tar.gz
 LZ4_URL		:= https://github.com/Cyan4973/lz4/archive/v$(LZ4_VERSION).$(LZ4_SUFFIX)
-- 
2.30.2




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

* Re: [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected Marc Kleine-Budde
@ 2022-09-22 14:00   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-22 14:00 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: ptxdist

On Tue, Sep 20, 2022 at 04:17:53PM +0200, Marc Kleine-Budde wrote:
> If no SSL backend is selected configure will fail with the following
> error:
> 
> | configure: error: TLS not detected, you will not be able to use HTTPS, FTPS, NTLM and more.
> | Use --with-openssl, --with-gnutls, --with-wolfssl, --with-mbedtls,
> | --with-nss, --with-schannel, --with-secure-transport, --with-amissl,
> | --with-bearssl or --with-rustls to address this.
> 
> Fixes: 34db9dd470bd ("libcurl: Version bump. 7.84.0 -> 7.85.0")
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
>  rules/libcurl.make | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index 0d0ac9ea33d0..1ddefa9a5b4e 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -105,7 +105,6 @@ LIBCURL_CONF_OPT	:= \
>  	--without-brotli \
>  	--without-zstd \
>  	--without-gssapi \
> -	--with-default-ssl-backend=$(PTXCONF_LIBCURL_SSL_DEFAULT_BACKEND) \
>  	--with-random=/dev/urandom \
>  	--with-ca-bundle=$(PTXCONF_LIBCURL_SSL_CABUNDLE_PATH) \
>  	--with-ca-path=$(PTXCONF_LIBCURL_SSL_CAPATH_PATH) \
> @@ -126,6 +125,14 @@ LIBCURL_CONF_OPT	:= \
>  	--without-zsh-functions-dir \
>  	--without-fish-functions-dir
>  
> +ifdef PTXCONF_LIBCURL_SSL
> +LIBCURL_CONF_OPT += \
> +	--with-default-ssl-backend=$(PTXCONF_LIBCURL_SSL_DEFAULT_BACKEND)
> +else
> +LIBCURL_CONF_OPT += \
> +	--without-ssl
> +endif

See my mail in the other thread. I don't think it needs to be this complex.

Michael

> +
>  # ----------------------------------------------------------------------------
>  # Target-Install
>  # ----------------------------------------------------------------------------
> -- 
> 2.30.2
> 
> 
> 

-- 
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 |



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

* Re: [ptxdist] [PATCH v2 7/7] lz4: version bump to 1.9.4
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 7/7] lz4: version bump to 1.9.4 Marc Kleine-Budde
@ 2022-09-22 14:24   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-22 14:24 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: ptxdist

On Tue, Sep 20, 2022 at 04:17:59PM +0200, Marc Kleine-Budde wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
>  rules/lz4.make | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/rules/lz4.make b/rules/lz4.make
> index 79d8600c29db..930ff5a0ef3d 100644
> --- a/rules/lz4.make
> +++ b/rules/lz4.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LZ4) += lz4
>  #
>  # Paths and names
>  #
> -LZ4_VERSION	:= 1.9.3
> -LZ4_MD5		:= 3a1ab1684e14fc1afc66228ce61b2db3
> +LZ4_VERSION	:= 1.9.4
> +LZ4_MD5		:= e9286adb64040071c5e23498bf753261

License file checksum changes. Please update and describe the changes in
the commit message.

Michael

>  LZ4		:= lz4-$(LZ4_VERSION)
>  LZ4_SUFFIX	:= tar.gz
>  LZ4_URL		:= https://github.com/Cyan4973/lz4/archive/v$(LZ4_VERSION).$(LZ4_SUFFIX)
> -- 
> 2.30.2
> 
> 
> 

-- 
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 |



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

* Re: [ptxdist] [PATCH v2 2/7] bind: version bump to 9.11.37
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 2/7] bind: version bump to 9.11.37 Marc Kleine-Budde
@ 2022-09-22 14:50   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-22 14:50 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: ptxdist

On Tue, Sep 20, 2022 at 04:17:54PM +0200, Marc Kleine-Budde wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
>  rules/bind.make | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/rules/bind.make b/rules/bind.make
> index b547eeff0993..322edd3926cc 100644
> --- a/rules/bind.make
> +++ b/rules/bind.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_BIND) += bind
>  #
>  # Paths and names
>  #
> -BIND_VERSION		:= 9.11.31
> -BIND_MD5		:= 40732ca6e4fcc9d022ab0f17b3e55b71
> +BIND_VERSION		:= 9.11.37
> +BIND_MD5		:= 0a11e9596c46d6728fa3b0989ee75197

Changes to the license files md5. I suggest you enable
PTXCONF_PROJECT_CHECK_LICENSES in your BSP.

Michael

>  BIND			:= bind-$(BIND_VERSION)
>  BIND_SUFFIX		:= tar.gz
>  BIND_URL		:= https://ftp.isc.org/isc/bind9/$(BIND_VERSION)/$(BIND).$(BIND_SUFFIX)
> -- 
> 2.30.2
> 
> 
> 

-- 
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 |



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

* Re: [ptxdist] [PATCH v2 3/7] dhcp: version bump to 4.4.3
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 3/7] dhcp: version bump to 4.4.3 Marc Kleine-Budde
@ 2022-09-22 15:20   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-22 15:20 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: ptxdist

On Tue, Sep 20, 2022 at 04:17:55PM +0200, Marc Kleine-Budde wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

License file changes.

Michael

> ---
>  ...0001-Fixed-gcc-10-compilation-issues.patch | 82 -------------------
>  patches/dhcp-4.4.2/series                     |  4 -
>  rules/dhcp.make                               |  4 +-
>  3 files changed, 2 insertions(+), 88 deletions(-)
>  delete mode 100644 patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch
>  delete mode 100644 patches/dhcp-4.4.2/series
> 
> diff --git a/patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch b/patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch
> deleted file mode 100644
> index f0e3cc450bbe..000000000000
> --- a/patches/dhcp-4.4.2/0001-Fixed-gcc-10-compilation-issues.patch
> +++ /dev/null
> @@ -1,82 +0,0 @@
> -From: Thomas Markwalder <tmark@isc.org>
> -Date: Thu, 30 Jul 2020 10:01:36 -0400
> -Subject: [PATCH] Fixed gcc 10 compilation issues
> -
> -client/dhclient.c
> -relay/dhcrelay.c
> -    extern'ed local_port,remote_port
> -
> -common/discover.c
> -    init local_port,remote_port to 0
> -
> -server/mdb.c
> -    extern'ed dhcp_type_host
> -
> -server/mdb6.c
> -    create_prefix6() - eliminated memcpy string overflow error
> -
> -Origin: https://sources.debian.org/patches/isc-dhcp/4.4.1-2.2/Fixed_gcc_10_compilation_issues.patch/
> ----
> - client/dhclient.c | 5 +++--
> - relay/dhcrelay.c  | 4 ++--
> - server/mdb.c      | 2 +-
> - server/mdb6.c     | 2 +-
> - 4 files changed, 7 insertions(+), 6 deletions(-)
> -
> -diff --git a/client/dhclient.c b/client/dhclient.c
> -index 189e527094e8..7a7837cb8152 100644
> ---- a/client/dhclient.c
> -+++ b/client/dhclient.c
> -@@ -83,8 +83,9 @@ static const char message [] = "Internet Systems Consortium DHCP Client";
> - static const char url [] = "For info, please visit https://www.isc.org/software/dhcp/";
> - #endif /* UNIT_TEST */
> - 
> --u_int16_t local_port = 0;
> --u_int16_t remote_port = 0;
> -+extern u_int16_t local_port;
> -+extern u_int16_t remote_port;
> -+
> - #if defined(DHCPv6) && defined(DHCP4o6)
> - int dhcp4o6_state = -1; /* -1 = stopped, 0 = polling, 1 = started */
> - #endif
> -diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c
> -index 883d5058f2ee..7211e3bbbec9 100644
> ---- a/relay/dhcrelay.c
> -+++ b/relay/dhcrelay.c
> -@@ -95,8 +95,8 @@ enum { forward_and_append,	/* Forward and append our own relay option. */
> -        forward_untouched,	/* Forward without changes. */
> -        discard } agent_relay_mode = forward_and_replace;
> - 
> --u_int16_t local_port;
> --u_int16_t remote_port;
> -+extern u_int16_t local_port;
> -+extern u_int16_t remote_port;
> - 
> - /* Relay agent server list. */
> - struct server_list {
> -diff --git a/server/mdb.c b/server/mdb.c
> -index ff8a707fac1b..8266d76432b8 100644
> ---- a/server/mdb.c
> -+++ b/server/mdb.c
> -@@ -67,7 +67,7 @@ static host_id_info_t *host_id_info = NULL;
> - 
> - int numclasseswritten;
> - 
> --omapi_object_type_t *dhcp_type_host;
> -+extern omapi_object_type_t *dhcp_type_host;
> - 
> - isc_result_t enter_class(cd, dynamicp, commit)
> - 	struct class *cd;
> -diff --git a/server/mdb6.c b/server/mdb6.c
> -index da7baf6e50df..ebe01e5607cb 100644
> ---- a/server/mdb6.c
> -+++ b/server/mdb6.c
> -@@ -1945,7 +1945,7 @@ create_prefix6(struct ipv6_pool *pool, struct iasubopt **pref,
> - 		}
> - 		new_ds.data = new_ds.buffer->data;
> - 		memcpy(new_ds.buffer->data, ds.data, ds.len);
> --		memcpy(new_ds.buffer->data + ds.len, &tmp, sizeof(tmp));
> -+		memcpy(&new_ds.buffer->data[0] + ds.len, &tmp, sizeof(tmp));
> - 		data_string_forget(&ds, MDL);
> - 		data_string_copy(&ds, &new_ds, MDL);
> - 		data_string_forget(&new_ds, MDL);
> diff --git a/patches/dhcp-4.4.2/series b/patches/dhcp-4.4.2/series
> deleted file mode 100644
> index de5f31877455..000000000000
> --- a/patches/dhcp-4.4.2/series
> +++ /dev/null
> @@ -1,4 +0,0 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
> -0001-Fixed-gcc-10-compilation-issues.patch
> -# dd19bdbd49b780e973ed9392604d03fe  - git-ptx-patches magic
> diff --git a/rules/dhcp.make b/rules/dhcp.make
> index 7feb6ef5b668..b726b8787890 100644
> --- a/rules/dhcp.make
> +++ b/rules/dhcp.make
> @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_DHCP) += dhcp
>  #
>  # Paths and names
>  #
> -DHCP_VERSION	:= 4.4.2
> -DHCP_MD5	:= 2afdaf8498dc1edaf3012efdd589b3e1
> +DHCP_VERSION	:= 4.4.3
> +DHCP_MD5	:= 9076af4cc1293dde5a7c6cae7de6ab45
>  DHCP		:= dhcp-$(DHCP_VERSION)
>  DHCP_SUFFIX	:= tar.gz
>  DHCP_URL	:= \
> -- 
> 2.30.2
> 
> 
> 

-- 
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 |



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

* Re: [ptxdist] [APPLIED] dnsmasq: version bump to 2.86
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 4/7] dnsmasq: version bump to 2.86 Marc Kleine-Budde
@ 2022-09-28 14:28   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-28 14:28 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Thanks, applied as 672737166312301d50d47b4cc022e993fb750074.

Michael

[sent from post-receive hook]

On Wed, 28 Sep 2022 16:28:45 +0200, Marc Kleine-Budde <mkl@pengutronix.de> wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> Message-Id: <20220920141759.3394460-5-mkl@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/patches/dnsmasq-2.85/0001-the-pkg-config-file-is-lua-no-lua5.2.patch b/patches/dnsmasq-2.86/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
> similarity index 97%
> rename from patches/dnsmasq-2.85/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
> rename to patches/dnsmasq-2.86/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
> index 5aebae2dfa13..b53a81cfa7a9 100644
> --- a/patches/dnsmasq-2.85/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
> +++ b/patches/dnsmasq-2.86/0001-the-pkg-config-file-is-lua-no-lua5.2.patch
> @@ -8,7 +8,7 @@ Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>   1 file changed, 2 insertions(+), 2 deletions(-)
>  
>  diff --git a/Makefile b/Makefile
> -index e4c3f5c92a76..fa33af1a0c20 100644
> +index 0cd592e91fa6..5bb2b42b5982 100644
>  --- a/Makefile
>  +++ b/Makefile
>  @@ -60,8 +60,8 @@ idn2_cflags =   `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LIBIDN2 $(PKG_CONFI
> diff --git a/patches/dnsmasq-2.85/series b/patches/dnsmasq-2.86/series
> similarity index 100%
> rename from patches/dnsmasq-2.85/series
> rename to patches/dnsmasq-2.86/series
> diff --git a/rules/dnsmasq.make b/rules/dnsmasq.make
> index e5be3265ab4f..584d5dbba74c 100644
> --- a/rules/dnsmasq.make
> +++ b/rules/dnsmasq.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_DNSMASQ) += dnsmasq
>  #
>  # Paths and names
>  #
> -DNSMASQ_VERSION		:= 2.85
> -DNSMASQ_MD5		:= f32403e94a657b93d7fbe0a9c07ebccf
> +DNSMASQ_VERSION		:= 2.86
> +DNSMASQ_MD5		:= 227fd0e81a5ed8134e1f60e175324c99
>  DNSMASQ			:= dnsmasq-$(DNSMASQ_VERSION)
>  DNSMASQ_SUFFIX		:= tar.xz
>  DNSMASQ_URL		:= http://www.thekelleys.org.uk/dnsmasq/$(DNSMASQ).$(DNSMASQ_SUFFIX)



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

* Re: [ptxdist] [APPLIED] glib: version bump to 2.72.3
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 5/7] glib: version bump to 2.72.3 Marc Kleine-Budde
@ 2022-09-28 14:28   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-28 14:28 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Thanks, applied as 2ba3df2f02ade8e1b4aba329372080baa83e180c.

Michael

[sent from post-receive hook]

On Wed, 28 Sep 2022 16:28:47 +0200, Marc Kleine-Budde <mkl@pengutronix.de> wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> Message-Id: <20220920141759.3394460-6-mkl@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/glib.make b/rules/glib.make
> index 144814c7700b..8b1fd17f93bc 100644
> --- a/rules/glib.make
> +++ b/rules/glib.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_GLIB) += glib
>  #
>  # Paths and names
>  #
> -GLIB_VERSION	:= 2.72.2
> -GLIB_MD5	:= 6874205c81e9634fb47f4efb73183d00
> +GLIB_VERSION	:= 2.72.3
> +GLIB_MD5	:= ef67f7e19e47c8e082256d614f1ab8f4
>  GLIB		:= glib-$(GLIB_VERSION)
>  GLIB_SUFFIX	:= tar.xz
>  GLIB_URL	:= $(call ptx/mirror, GNOME, glib/$(basename $(GLIB_VERSION))/$(GLIB).$(GLIB_SUFFIX))



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

* Re: [ptxdist] [APPLIED] gnutls: version bump to 3.7.7
  2022-09-20 14:17 ` [ptxdist] [PATCH v2 6/7] gnutls: version bump to 3.7.7 Marc Kleine-Budde
@ 2022-09-28 14:28   ` Michael Olbrich
  0 siblings, 0 replies; 15+ messages in thread
From: Michael Olbrich @ 2022-09-28 14:28 UTC (permalink / raw)
  To: ptxdist; +Cc: Marc Kleine-Budde

Thanks, applied as 29dc9f5037611306e3fcefa2b2d646c199fccd24.

Michael

[sent from post-receive hook]

On Wed, 28 Sep 2022 16:28:48 +0200, Marc Kleine-Budde <mkl@pengutronix.de> wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> Message-Id: <20220920141759.3394460-7-mkl@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/gnutls.make b/rules/gnutls.make
> index 972d12104d51..5420fd4c2cc9 100644
> --- a/rules/gnutls.make
> +++ b/rules/gnutls.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_GNUTLS) += gnutls
>  #
>  # Paths and names
>  #
> -GNUTLS_VERSION	:= 3.7.6
> -GNUTLS_MD5	:= 5b07c89e53a351209dc23b714da3ef98
> +GNUTLS_VERSION	:= 3.7.7
> +GNUTLS_MD5	:= 39e5c71af7f444bdf175094a787843a2
>  GNUTLS		:= gnutls-$(GNUTLS_VERSION)
>  GNUTLS_SUFFIX	:= tar.xz
>  GNUTLS_URL	:= https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/$(GNUTLS).$(GNUTLS_SUFFIX)



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

end of thread, other threads:[~2022-09-28 14:29 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-20 14:17 [ptxdist] [PATCH 0/7] various version bumps Marc Kleine-Budde
2022-09-20 14:17 ` [ptxdist] [PATCH v2 1/7] libcurl: fix configure if no SSL backend is selected Marc Kleine-Budde
2022-09-22 14:00   ` Michael Olbrich
2022-09-20 14:17 ` [ptxdist] [PATCH v2 2/7] bind: version bump to 9.11.37 Marc Kleine-Budde
2022-09-22 14:50   ` Michael Olbrich
2022-09-20 14:17 ` [ptxdist] [PATCH v2 3/7] dhcp: version bump to 4.4.3 Marc Kleine-Budde
2022-09-22 15:20   ` Michael Olbrich
2022-09-20 14:17 ` [ptxdist] [PATCH v2 4/7] dnsmasq: version bump to 2.86 Marc Kleine-Budde
2022-09-28 14:28   ` [ptxdist] [APPLIED] " Michael Olbrich
2022-09-20 14:17 ` [ptxdist] [PATCH v2 5/7] glib: version bump to 2.72.3 Marc Kleine-Budde
2022-09-28 14:28   ` [ptxdist] [APPLIED] " Michael Olbrich
2022-09-20 14:17 ` [ptxdist] [PATCH v2 6/7] gnutls: version bump to 3.7.7 Marc Kleine-Budde
2022-09-28 14:28   ` [ptxdist] [APPLIED] " Michael Olbrich
2022-09-20 14:17 ` [ptxdist] [PATCH v2 7/7] lz4: version bump to 1.9.4 Marc Kleine-Budde
2022-09-22 14:24   ` Michael Olbrich

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