* [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.7.1 -> 8.8.0
@ 2024-05-23 20:12 Christian Melki
2024-05-23 20:12 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb Christian Melki
2024-06-10 19:41 ` [ptxdist] [APPLIED] libcurl: Version bump. 8.7.1 -> 8.8.0 Michael Olbrich
0 siblings, 2 replies; 5+ messages in thread
From: Christian Melki @ 2024-05-23 20:12 UTC (permalink / raw)
To: ptxdist
Mostly a bunch of fixes.
https://curl.se/changes.html#8_8_0
* Fix configure for dropped ntlm-wb option.
Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
rules/libcurl.make | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/rules/libcurl.make b/rules/libcurl.make
index 455695e25..65c9714b2 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
#
# Paths and names
#
-LIBCURL_VERSION := 8.7.1
-LIBCURL_MD5 := f4f37253c5f1ad9ee85fa6215fdfeb42
+LIBCURL_VERSION := 8.8.0
+LIBCURL_MD5 := e1062de8a9b252a75fc42e2252746bd8
LIBCURL := curl-$(LIBCURL_VERSION)
LIBCURL_SUFFIX := tar.xz
LIBCURL_URL := https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
@@ -80,7 +80,6 @@ LIBCURL_CONF_OPT := \
--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-negotiate-auth \
--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-aws \
--$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-ntlm \
- --disable-ntlm-wb \
--enable-tls-srp \
--enable-unix-sockets \
--$(call ptx/endis, PTXCONF_LIBCURL_COOKIES)-cookies \
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb.
2024-05-23 20:12 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.7.1 -> 8.8.0 Christian Melki
@ 2024-05-23 20:12 ` Christian Melki
2024-06-10 19:41 ` [ptxdist] [APPLIED] " Michael Olbrich
2024-06-10 19:41 ` [ptxdist] [APPLIED] libcurl: Version bump. 8.7.1 -> 8.8.0 Michael Olbrich
1 sibling, 1 reply; 5+ messages in thread
From: Christian Melki @ 2024-05-23 20:12 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
rules/host-libcurl.make | 1 -
1 file changed, 1 deletion(-)
diff --git a/rules/host-libcurl.make b/rules/host-libcurl.make
index e223573ea..b38667eff 100644
--- a/rules/host-libcurl.make
+++ b/rules/host-libcurl.make
@@ -65,7 +65,6 @@ HOST_LIBCURL_CONF_OPT := \
--disable-negotiate-auth \
--disable-aws \
--disable-ntlm \
- --disable-ntlm-wb \
--disable-tls-srp \
--enable-unix-sockets \
--disable-cookies \
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [APPLIED] libcurl: Version bump. 8.7.1 -> 8.8.0
2024-05-23 20:12 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.7.1 -> 8.8.0 Christian Melki
2024-05-23 20:12 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb Christian Melki
@ 2024-06-10 19:41 ` Michael Olbrich
1 sibling, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2024-06-10 19:41 UTC (permalink / raw)
To: ptxdist; +Cc: Christian Melki
Thanks, applied as df32114fa3af16b546e3d57fde477d407acdf7e9.
Michael
[sent from post-receive hook]
On Mon, 10 Jun 2024 21:41:21 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Mostly a bunch of fixes.
> https://curl.se/changes.html#8_8_0
>
> * Fix configure for dropped ntlm-wb option.
>
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240523201244.1388432-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index 455695e254e5..65c9714b264e 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -15,8 +15,8 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
> #
> # Paths and names
> #
> -LIBCURL_VERSION := 8.7.1
> -LIBCURL_MD5 := f4f37253c5f1ad9ee85fa6215fdfeb42
> +LIBCURL_VERSION := 8.8.0
> +LIBCURL_MD5 := e1062de8a9b252a75fc42e2252746bd8
> LIBCURL := curl-$(LIBCURL_VERSION)
> LIBCURL_SUFFIX := tar.xz
> LIBCURL_URL := https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> @@ -80,7 +80,6 @@ LIBCURL_CONF_OPT := \
> --$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-negotiate-auth \
> --$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-aws \
> --$(call ptx/endis, PTXCONF_LIBCURL_CRYPTO_AUTH)-ntlm \
> - --disable-ntlm-wb \
> --enable-tls-srp \
> --enable-unix-sockets \
> --$(call ptx/endis, PTXCONF_LIBCURL_COOKIES)-cookies \
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [APPLIED] host-libcurl: Follow target libcurl, remove ntlm-wb.
2024-05-23 20:12 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb Christian Melki
@ 2024-06-10 19:41 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2024-06-10 19:41 UTC (permalink / raw)
To: ptxdist; +Cc: Christian Melki
Thanks, applied as 9ddc82f47e87a1beb33c649ad346216c700c5a59.
Michael
[sent from post-receive hook]
On Mon, 10 Jun 2024 21:41:23 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20240523201244.1388432-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/host-libcurl.make b/rules/host-libcurl.make
> index e223573ea095..b38667eff33a 100644
> --- a/rules/host-libcurl.make
> +++ b/rules/host-libcurl.make
> @@ -65,7 +65,6 @@ HOST_LIBCURL_CONF_OPT := \
> --disable-negotiate-auth \
> --disable-aws \
> --disable-ntlm \
> - --disable-ntlm-wb \
> --disable-tls-srp \
> --enable-unix-sockets \
> --disable-cookies \
^ permalink raw reply [flat|nested] 5+ messages in thread
* [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb.
2024-09-12 19:26 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.9.1 -> 8.10.0 Christian Melki
@ 2024-09-12 19:26 ` Christian Melki
0 siblings, 0 replies; 5+ messages in thread
From: Christian Melki @ 2024-09-12 19:26 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
rules/host-libcurl.make | 1 -
1 file changed, 1 deletion(-)
diff --git a/rules/host-libcurl.make b/rules/host-libcurl.make
index e223573ea..b38667eff 100644
--- a/rules/host-libcurl.make
+++ b/rules/host-libcurl.make
@@ -65,7 +65,6 @@ HOST_LIBCURL_CONF_OPT := \
--disable-negotiate-auth \
--disable-aws \
--disable-ntlm \
- --disable-ntlm-wb \
--disable-tls-srp \
--enable-unix-sockets \
--disable-cookies \
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-12 19:27 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-23 20:12 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.7.1 -> 8.8.0 Christian Melki
2024-05-23 20:12 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb Christian Melki
2024-06-10 19:41 ` [ptxdist] [APPLIED] " Michael Olbrich
2024-06-10 19:41 ` [ptxdist] [APPLIED] libcurl: Version bump. 8.7.1 -> 8.8.0 Michael Olbrich
2024-09-12 19:26 [ptxdist] [PATCH 1/2] libcurl: Version bump. 8.9.1 -> 8.10.0 Christian Melki
2024-09-12 19:26 ` [ptxdist] [PATCH 2/2] host-libcurl: Follow target libcurl, remove ntlm-wb Christian Melki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox