* [ptxdist] [PATCH 0/3] curl version bump to 7.82
@ 2022-03-30 11:48 Alexander Dahl
2022-03-30 11:48 ` [ptxdist] [PATCH 1/3] libcurl: Fix license Alexander Dahl
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Alexander Dahl @ 2022-03-30 11:48 UTC (permalink / raw)
To: ptxdist
Hei hei,
some license stuff and the usual version bump.
Greets
Alex
Alexander Dahl (3):
libcurl: Fix license
libcurl: Add license file hash
libcurl: version bump 7.81.0 -> 7.82.0
rules/libcurl.make | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
base-commit: 3114ee08bf379afd475d1379299b2edbb8e1acd4
--
2.30.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 7+ messages in thread
* [ptxdist] [PATCH 1/3] libcurl: Fix license
2022-03-30 11:48 [ptxdist] [PATCH 0/3] curl version bump to 7.82 Alexander Dahl
@ 2022-03-30 11:48 ` Alexander Dahl
2022-04-08 8:17 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-03-30 11:48 ` [ptxdist] [PATCH 2/3] libcurl: Add license file hash Alexander Dahl
2022-03-30 11:48 ` [ptxdist] [PATCH 3/3] libcurl: version bump 7.81.0 -> 7.82.0 Alexander Dahl
2 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2022-03-30 11:48 UTC (permalink / raw)
To: ptxdist
curl has its own entry in the SPDX list of licenses. The license is
inspired by MIT / X, but only that.
Link: https://curl.se/docs/copyright.html
Link: https://spdx.org/licenses/curl.html
Fixes: 010b50b484c0 ("libcurl: add license information")
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/libcurl.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libcurl.make b/rules/libcurl.make
index cd835256f..d1a4dcfa2 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -22,7 +22,7 @@ LIBCURL_SUFFIX := tar.xz
LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
-LIBCURL_LICENSE := MIT
+LIBCURL_LICENSE := curl
# ----------------------------------------------------------------------------
# Prepare
--
2.30.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [ptxdist] [APPLIED] libcurl: Fix license
2022-03-30 11:48 ` [ptxdist] [PATCH 1/3] libcurl: Fix license Alexander Dahl
@ 2022-04-08 8:17 ` Michael Olbrich
0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2022-04-08 8:17 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Thanks, applied as 53ba391ce89f322911f671aa1cc38632b9305670.
Michael
[sent from post-receive hook]
On Fri, 08 Apr 2022 10:17:54 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> curl has its own entry in the SPDX list of licenses. The license is
> inspired by MIT / X, but only that.
>
> Link: https://curl.se/docs/copyright.html
> Link: https://spdx.org/licenses/curl.html
> Fixes: 010b50b484c0 ("libcurl: add license information")
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20220330114812.27004-2-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index cd835256f822..d1a4dcfa26fe 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -22,7 +22,7 @@ LIBCURL_SUFFIX := tar.xz
> LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
> -LIBCURL_LICENSE := MIT
> +LIBCURL_LICENSE := curl
>
> # ----------------------------------------------------------------------------
> # 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] 7+ messages in thread
* [ptxdist] [PATCH 2/3] libcurl: Add license file hash
2022-03-30 11:48 [ptxdist] [PATCH 0/3] curl version bump to 7.82 Alexander Dahl
2022-03-30 11:48 ` [ptxdist] [PATCH 1/3] libcurl: Fix license Alexander Dahl
@ 2022-03-30 11:48 ` Alexander Dahl
2022-04-08 8:17 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-03-30 11:48 ` [ptxdist] [PATCH 3/3] libcurl: version bump 7.81.0 -> 7.82.0 Alexander Dahl
2 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2022-03-30 11:48 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/libcurl.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/libcurl.make b/rules/libcurl.make
index d1a4dcfa2..5ef387352 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -23,6 +23,7 @@ LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
LIBCURL_LICENSE := curl
+LIBCURL_LICENSE_FILES := file://COPYING;md5=425f6fdc767cc067518eef9bbdf4ab7b
# ----------------------------------------------------------------------------
# Prepare
--
2.30.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [ptxdist] [APPLIED] libcurl: Add license file hash
2022-03-30 11:48 ` [ptxdist] [PATCH 2/3] libcurl: Add license file hash Alexander Dahl
@ 2022-04-08 8:17 ` Michael Olbrich
0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2022-04-08 8:17 UTC (permalink / raw)
To: ptxdist; +Cc: Alexander Dahl
Thanks, applied as 19e7aae0543218cae26171bc749283b307ce48e6.
Michael
[sent from post-receive hook]
On Fri, 08 Apr 2022 10:17:56 +0200, Alexander Dahl <ada@thorsis.com> wrote:
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20220330114812.27004-3-ada@thorsis.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index d1a4dcfa26fe..5ef38735259c 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -23,6 +23,7 @@ LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
> LIBCURL_LICENSE := curl
> +LIBCURL_LICENSE_FILES := file://COPYING;md5=425f6fdc767cc067518eef9bbdf4ab7b
>
> # ----------------------------------------------------------------------------
> # 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] 7+ messages in thread
* [ptxdist] [PATCH 3/3] libcurl: version bump 7.81.0 -> 7.82.0
2022-03-30 11:48 [ptxdist] [PATCH 0/3] curl version bump to 7.82 Alexander Dahl
2022-03-30 11:48 ` [ptxdist] [PATCH 1/3] libcurl: Fix license Alexander Dahl
2022-03-30 11:48 ` [ptxdist] [PATCH 2/3] libcurl: Add license file hash Alexander Dahl
@ 2022-03-30 11:48 ` Alexander Dahl
2022-03-30 16:26 ` Michael Olbrich
2 siblings, 1 reply; 7+ messages in thread
From: Alexander Dahl @ 2022-03-30 11:48 UTC (permalink / raw)
To: ptxdist
- curl: add --json
- mesalink: remove support
- bugfixes
- license: copyright year bumped
Link: https://curl.se/changes.html#7_82_0
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/libcurl.make | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/rules/libcurl.make b/rules/libcurl.make
index 5ef387352..3c99caa47 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -15,15 +15,15 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
#
# Paths and names
#
-LIBCURL_VERSION := 7.81.0
-LIBCURL_MD5 := 41954fa09f879fccb57d88be23fe8606
+LIBCURL_VERSION := 7.82.0
+LIBCURL_MD5 := ce05eb61ef7c398feb7dbe23122d0bd9
LIBCURL := curl-$(LIBCURL_VERSION)
LIBCURL_SUFFIX := tar.xz
LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
LIBCURL_LICENSE := curl
-LIBCURL_LICENSE_FILES := file://COPYING;md5=425f6fdc767cc067518eef9bbdf4ab7b
+LIBCURL_LICENSE_FILES := file://COPYING;md5=190c514872597083303371684954f238
# ----------------------------------------------------------------------------
# Prepare
@@ -96,7 +96,6 @@ LIBCURL_CONF_OPT := \
--with-gnutls=$(call ptx/ifdef, PTXCONF_LIBCURL_SSL_GNUTLS,$(SYSROOT)/usr,no) \
--without-mbedtls \
--without-wolfssl \
- --without-mesalink \
--without-bearssl \
--without-rustls \
--without-nss \
--
2.30.2
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [ptxdist] [PATCH 3/3] libcurl: version bump 7.81.0 -> 7.82.0
2022-03-30 11:48 ` [ptxdist] [PATCH 3/3] libcurl: version bump 7.81.0 -> 7.82.0 Alexander Dahl
@ 2022-03-30 16:26 ` Michael Olbrich
0 siblings, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2022-03-30 16:26 UTC (permalink / raw)
To: Alexander Dahl; +Cc: ptxdist
On Wed, Mar 30, 2022 at 01:48:12PM +0200, Alexander Dahl wrote:
> - curl: add --json
> - mesalink: remove support
> - bugfixes
> - license: copyright year bumped
>
> Link: https://curl.se/changes.html#7_82_0
> Signed-off-by: Alexander Dahl <ada@thorsis.com>
> ---
> rules/libcurl.make | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index 5ef387352..3c99caa47 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -15,15 +15,15 @@ PACKAGES-$(PTXCONF_LIBCURL) += libcurl
> #
> # Paths and names
> #
> -LIBCURL_VERSION := 7.81.0
> -LIBCURL_MD5 := 41954fa09f879fccb57d88be23fe8606
> +LIBCURL_VERSION := 7.82.0
> +LIBCURL_MD5 := ce05eb61ef7c398feb7dbe23122d0bd9
> LIBCURL := curl-$(LIBCURL_VERSION)
> LIBCURL_SUFFIX := tar.xz
> LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
> LIBCURL_LICENSE := curl
> -LIBCURL_LICENSE_FILES := file://COPYING;md5=425f6fdc767cc067518eef9bbdf4ab7b
> +LIBCURL_LICENSE_FILES := file://COPYING;md5=190c514872597083303371684954f238
>
> # ----------------------------------------------------------------------------
> # Prepare
> @@ -96,7 +96,6 @@ LIBCURL_CONF_OPT := \
> --with-gnutls=$(call ptx/ifdef, PTXCONF_LIBCURL_SSL_GNUTLS,$(SYSROOT)/usr,no) \
> --without-mbedtls \
> --without-wolfssl \
> - --without-mesalink \
host-libcurl needs that change as well.
Michael
> --without-bearssl \
> --without-rustls \
> --without-nss \
> --
> 2.30.2
>
>
> _______________________________________________
> 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] 7+ messages in thread
end of thread, other threads:[~2022-04-08 8:18 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-30 11:48 [ptxdist] [PATCH 0/3] curl version bump to 7.82 Alexander Dahl
2022-03-30 11:48 ` [ptxdist] [PATCH 1/3] libcurl: Fix license Alexander Dahl
2022-04-08 8:17 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-03-30 11:48 ` [ptxdist] [PATCH 2/3] libcurl: Add license file hash Alexander Dahl
2022-04-08 8:17 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-03-30 11:48 ` [ptxdist] [PATCH 3/3] libcurl: version bump 7.81.0 -> 7.82.0 Alexander Dahl
2022-03-30 16:26 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox