* [Buildroot] [PATCH 1/1] package/libcurl: bump version to 7.69.1
@ 2020-03-20 6:44 Bernd Kuhls
2020-03-20 18:45 ` Yann E. MORIN
0 siblings, 1 reply; 2+ messages in thread
From: Bernd Kuhls @ 2020-03-20 6:44 UTC (permalink / raw)
To: buildroot
Changelog: https://curl.haxx.se/changes.html
Removed polarssl configure options, upstream removed polarssl support:
https://curl.haxx.se/bug/?i=4825
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/libcurl/libcurl.hash | 2 +-
package/libcurl/libcurl.mk | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package/libcurl/libcurl.hash b/package/libcurl/libcurl.hash
index e60194254e..69cf7b5398 100644
--- a/package/libcurl/libcurl.hash
+++ b/package/libcurl/libcurl.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 b724240722276a27f6e770b952121a3afd097129d8c9fe18e6272dc34192035a curl-7.68.0.tar.xz
+sha256 03c7d5e6697f7b7e40ada1b2256e565a555657398e6c1fcfa4cb251ccd819d4f curl-7.69.1.tar.xz
sha256 db3c4a3b3695a0f317a0c5176acd2f656d18abc45b3ee78e50935a78eb1e132e COPYING
diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
index 5de2591178..7a29634c68 100644
--- a/package/libcurl/libcurl.mk
+++ b/package/libcurl/libcurl.mk
@@ -4,7 +4,7 @@
#
################################################################################
-LIBCURL_VERSION = 7.68.0
+LIBCURL_VERSION = 7.69.1
LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.xz
LIBCURL_SITE = https://curl.haxx.se/download
LIBCURL_DEPENDENCIES = host-pkgconf \
@@ -22,7 +22,7 @@ LIBCURL_INSTALL_STAGING = YES
# generate C code) isn't very useful
LIBCURL_CONF_OPTS = --disable-manual --disable-ntlm-wb \
--enable-hidden-symbols --with-random=/dev/urandom --disable-curldebug \
- --without-polarssl --disable-libcurl-option
+ --disable-libcurl-option
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
LIBCURL_CONF_OPTS += --enable-threaded-resolver
@@ -184,7 +184,6 @@ HOST_LIBCURL_CONF_OPTS = \
--with-ssl \
--without-gnutls \
--without-mbedtls \
- --without-polarssl \
--without-nss
HOST_LIBCURL_POST_PATCH_HOOKS += LIBCURL_FIX_DOT_PC
--
2.25.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] package/libcurl: bump version to 7.69.1
2020-03-20 6:44 [Buildroot] [PATCH 1/1] package/libcurl: bump version to 7.69.1 Bernd Kuhls
@ 2020-03-20 18:45 ` Yann E. MORIN
0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2020-03-20 18:45 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2020-03-20 07:44 +0100, Bernd Kuhls spake thusly:
> Changelog: https://curl.haxx.se/changes.html
>
> Removed polarssl configure options, upstream removed polarssl support:
> https://curl.haxx.se/bug/?i=4825
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/libcurl/libcurl.hash | 2 +-
> package/libcurl/libcurl.mk | 5 ++---
> 2 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/package/libcurl/libcurl.hash b/package/libcurl/libcurl.hash
> index e60194254e..69cf7b5398 100644
> --- a/package/libcurl/libcurl.hash
> +++ b/package/libcurl/libcurl.hash
> @@ -1,3 +1,3 @@
> # Locally calculated
> -sha256 b724240722276a27f6e770b952121a3afd097129d8c9fe18e6272dc34192035a curl-7.68.0.tar.xz
> +sha256 03c7d5e6697f7b7e40ada1b2256e565a555657398e6c1fcfa4cb251ccd819d4f curl-7.69.1.tar.xz
> sha256 db3c4a3b3695a0f317a0c5176acd2f656d18abc45b3ee78e50935a78eb1e132e COPYING
> diff --git a/package/libcurl/libcurl.mk b/package/libcurl/libcurl.mk
> index 5de2591178..7a29634c68 100644
> --- a/package/libcurl/libcurl.mk
> +++ b/package/libcurl/libcurl.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -LIBCURL_VERSION = 7.68.0
> +LIBCURL_VERSION = 7.69.1
> LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.xz
> LIBCURL_SITE = https://curl.haxx.se/download
> LIBCURL_DEPENDENCIES = host-pkgconf \
> @@ -22,7 +22,7 @@ LIBCURL_INSTALL_STAGING = YES
> # generate C code) isn't very useful
> LIBCURL_CONF_OPTS = --disable-manual --disable-ntlm-wb \
> --enable-hidden-symbols --with-random=/dev/urandom --disable-curldebug \
> - --without-polarssl --disable-libcurl-option
> + --disable-libcurl-option
>
> ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
> LIBCURL_CONF_OPTS += --enable-threaded-resolver
> @@ -184,7 +184,6 @@ HOST_LIBCURL_CONF_OPTS = \
> --with-ssl \
> --without-gnutls \
> --without-mbedtls \
> - --without-polarssl \
> --without-nss
>
> HOST_LIBCURL_POST_PATCH_HOOKS += LIBCURL_FIX_DOT_PC
> --
> 2.25.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-20 18:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-20 6:44 [Buildroot] [PATCH 1/1] package/libcurl: bump version to 7.69.1 Bernd Kuhls
2020-03-20 18:45 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox