* [ptxdist] [PATCH 1/5] libcurl: update download URL
@ 2022-10-20 14:54 Bruno Thomsen
2022-10-20 14:54 ` [ptxdist] [PATCH 2/5] dbus: " Bruno Thomsen
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Bruno Thomsen @ 2022-10-20 14:54 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Downloading package result in http code 301 Moved Permanently from
server. Update used URL to match redirect URL.
--2022-10-20 11:25:26-- https://curl.haxx.se/download/curl-7.85.0.tar.xz
Resolving curl.haxx.se (curl.haxx.se)... 151.101.66.49, 151.101.130.49, 151.101.194.49, ...
Connecting to curl.haxx.se (curl.haxx.se)|151.101.66.49|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://curl.se/download/curl-7.85.0.tar.xz [following]
--2022-10-20 11:25:27-- https://curl.se/download/curl-7.85.0.tar.xz
Resolving curl.se (curl.se)... 151.101.65.91, 151.101.129.91, 151.101.193.91, ...
Connecting to curl.se (curl.se)|151.101.65.91|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2480648 (2.4M) [application/x-xz]
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
rules/libcurl.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libcurl.make b/rules/libcurl.make
index e5daf5395..4097462c5 100644
--- a/rules/libcurl.make
+++ b/rules/libcurl.make
@@ -19,7 +19,7 @@ LIBCURL_VERSION := 7.85.0
LIBCURL_MD5 := 131f76c84016c45806b902330a74164f
LIBCURL := curl-$(LIBCURL_VERSION)
LIBCURL_SUFFIX := tar.xz
-LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
+LIBCURL_URL := https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
LIBCURL_LICENSE := curl
base-commit: 8b46f8923ebfeb2bd1ead374035255df1df26f85
--
2.37.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [ptxdist] [PATCH 2/5] dbus: update download URL
2022-10-20 14:54 [ptxdist] [PATCH 1/5] libcurl: update download URL Bruno Thomsen
@ 2022-10-20 14:54 ` Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-20 14:54 ` [ptxdist] [PATCH 3/5] libmbim: change URL from http to https Bruno Thomsen
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Bruno Thomsen @ 2022-10-20 14:54 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Downloading package result in http code 301 Moved Permanently from
server. Update used URL to match redirect URL.
--2022-10-20 11:24:55-- http://dbus.freedesktop.org/releases/dbus/dbus-1.14.0.tar.xz
Resolving dbus.freedesktop.org (dbus.freedesktop.org)... 131.252.210.176, 2610:10:20:722:a800:ff:feda:470f
Connecting to dbus.freedesktop.org (dbus.freedesktop.org)|131.252.210.176|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://dbus.freedesktop.org/releases/dbus/dbus-1.14.0.tar.xz [following]
--2022-10-20 11:24:56-- https://dbus.freedesktop.org/releases/dbus/dbus-1.14.0.tar.xz
Connecting to dbus.freedesktop.org (dbus.freedesktop.org)|131.252.210.176|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1360228 (1.3M) [application/x-xz]
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
rules/dbus.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/dbus.make b/rules/dbus.make
index 6ceae4c21..b4b1aa82e 100644
--- a/rules/dbus.make
+++ b/rules/dbus.make
@@ -20,7 +20,7 @@ DBUS_VERSION := 1.15.2
DBUS_MD5 := c56de960ea9031b92ee71aaa0e8e72c2
DBUS := dbus-$(DBUS_VERSION)
DBUS_SUFFIX := tar.xz
-DBUS_URL := http://dbus.freedesktop.org/releases/dbus/$(DBUS).$(DBUS_SUFFIX)
+DBUS_URL := https://dbus.freedesktop.org/releases/dbus/$(DBUS).$(DBUS_SUFFIX)
DBUS_SOURCE := $(SRCDIR)/$(DBUS).$(DBUS_SUFFIX)
DBUS_DIR := $(BUILDDIR)/$(DBUS)
DBUS_LICENSE := AFL-2.1 AND GPL-2.0-or-later
--
2.37.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [ptxdist] [PATCH 3/5] libmbim: change URL from http to https
2022-10-20 14:54 [ptxdist] [PATCH 1/5] libcurl: update download URL Bruno Thomsen
2022-10-20 14:54 ` [ptxdist] [PATCH 2/5] dbus: " Bruno Thomsen
@ 2022-10-20 14:54 ` Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-20 14:54 ` [ptxdist] [PATCH 4/5] host-opkg-utils: update download URL Bruno Thomsen
` (2 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Bruno Thomsen @ 2022-10-20 14:54 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Downloading package result in a redirect from http to https.
Use URL we have been told to follow.
--2022-10-20 11:25:17-- http://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz
Resolving www.freedesktop.org (www.freedesktop.org)... 131.252.210.176, 2610:10:20:722:a800:ff:feda:470f
Connecting to www.freedesktop.org (www.freedesktop.org)|131.252.210.176|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz [following]
--2022-10-20 11:25:18-- https://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz
Connecting to www.freedesktop.org (www.freedesktop.org)|131.252.210.176|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 566188 (553K) [application/x-xz]
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
rules/libmbim.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libmbim.make b/rules/libmbim.make
index 781f9c0ce..f2f8e5801 100644
--- a/rules/libmbim.make
+++ b/rules/libmbim.make
@@ -18,7 +18,7 @@ LIBMBIM_VERSION := 1.26.4
LIBMBIM_MD5 := 58dea20cad346f31d2873b68385a9973
LIBMBIM := libmbim-$(LIBMBIM_VERSION)
LIBMBIM_SUFFIX := tar.xz
-LIBMBIM_URL := http://www.freedesktop.org/software/libmbim/$(LIBMBIM).$(LIBMBIM_SUFFIX)
+LIBMBIM_URL := https://www.freedesktop.org/software/libmbim/$(LIBMBIM).$(LIBMBIM_SUFFIX)
LIBMBIM_SOURCE := $(SRCDIR)/$(LIBMBIM).$(LIBMBIM_SUFFIX)
LIBMBIM_DIR := $(BUILDDIR)/$(LIBMBIM)
LIBMBIM_LICENSE := GPL-2.0-or-later AND LGPL-2.1-or-later
--
2.37.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [ptxdist] [PATCH 4/5] host-opkg-utils: update download URL
2022-10-20 14:54 [ptxdist] [PATCH 1/5] libcurl: update download URL Bruno Thomsen
2022-10-20 14:54 ` [ptxdist] [PATCH 2/5] dbus: " Bruno Thomsen
2022-10-20 14:54 ` [ptxdist] [PATCH 3/5] libmbim: change URL from http to https Bruno Thomsen
@ 2022-10-20 14:54 ` Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-20 14:54 ` [ptxdist] [PATCH 5/5] python3: " Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] libcurl: " Michael Olbrich
4 siblings, 1 reply; 10+ messages in thread
From: Bruno Thomsen @ 2022-10-20 14:54 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Downloading package result in double http code 301 Moved Permanently
from servers. Update used URL to match redirect URL.
--2022-10-20 11:27:03-- http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz
Resolving git.yoctoproject.org (git.yoctoproject.org)... 198.145.29.90
Connecting to git.yoctoproject.org (git.yoctoproject.org)|198.145.29.90|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz [following]
--2022-10-20 11:27:03-- https://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz
Connecting to git.yoctoproject.org (git.yoctoproject.org)|198.145.29.90|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://git.yoctoproject.org/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz [following]
--2022-10-20 11:27:04-- https://git.yoctoproject.org/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz
Reusing existing connection to git.yoctoproject.org:443.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
rules/host-opkg-utils.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/host-opkg-utils.make b/rules/host-opkg-utils.make
index 159eac64b..0e6e28e9f 100644
--- a/rules/host-opkg-utils.make
+++ b/rules/host-opkg-utils.make
@@ -18,7 +18,7 @@ HOST_OPKG_UTILS_VERSION := 0.5.0
HOST_OPKG_UTILS_MD5 := c71939ee02c69462bd3ba1fe0d6de5e2
HOST_OPKG_UTILS := opkg-utils-$(HOST_OPKG_UTILS_VERSION)
HOST_OPKG_UTILS_SUFFIX := tar.gz
-HOST_OPKG_UTILS_URL := http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
+HOST_OPKG_UTILS_URL := https://git.yoctoproject.org/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
HOST_OPKG_UTILS_SOURCE := $(SRCDIR)/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
HOST_OPKG_UTILS_DIR := $(HOST_BUILDDIR)/$(HOST_OPKG_UTILS)
HOST_OPKG_UTILS_LICENSE := GPL-2.0-only
--
2.37.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* [ptxdist] [PATCH 5/5] python3: update download URL
2022-10-20 14:54 [ptxdist] [PATCH 1/5] libcurl: update download URL Bruno Thomsen
` (2 preceding siblings ...)
2022-10-20 14:54 ` [ptxdist] [PATCH 4/5] host-opkg-utils: update download URL Bruno Thomsen
@ 2022-10-20 14:54 ` Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-28 14:44 ` [ptxdist] [APPLIED] libcurl: " Michael Olbrich
4 siblings, 1 reply; 10+ messages in thread
From: Bruno Thomsen @ 2022-10-20 14:54 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Downloading package result in double http code 301 Moved Permanently
from servers. Update used URL to match redirect URL.
--2022-10-20 11:25:21-- http://python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
Resolving python.org (python.org)... 138.197.63.241
Connecting to python.org (python.org)|138.197.63.241|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz [following]
--2022-10-20 11:25:22-- https://python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
Connecting to python.org (python.org)|138.197.63.241|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz [following]
--2022-10-20 11:25:22-- https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
Resolving www.python.org (www.python.org)... 199.232.40.223, 2a04:4e42:47::223
Connecting to www.python.org (www.python.org)|199.232.40.223|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 19342692 (18M) [application/octet-stream]
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
rules/python3.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/python3.make b/rules/python3.make
index 59c46ca0f..b18582563 100644
--- a/rules/python3.make
+++ b/rules/python3.make
@@ -26,7 +26,7 @@ PYTHON3_DIR := $(BUILDDIR)/$(PYTHON3)
PYTHON3_DEVPKG := NO
PYTHON3_URL := \
- http://python.org/ftp/python/$(PYTHON3_VERSION)/$(PYTHON3).$(PYTHON3_SUFFIX) \
+ https://www.python.org/ftp/python/$(PYTHON3_VERSION)/$(PYTHON3).$(PYTHON3_SUFFIX) \
http://python.org/ftp/python/$(PYTHON3_MAJORMINOR)/$(PYTHON3).$(PYTHON3_SUFFIX)
CROSS_PYTHON3 := $(PTXDIST_SYSROOT_CROSS)/bin/python$(PYTHON3_MAJORMINOR)
--
2.37.3
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [ptxdist] [APPLIED] libcurl: update download URL
2022-10-20 14:54 [ptxdist] [PATCH 1/5] libcurl: update download URL Bruno Thomsen
` (3 preceding siblings ...)
2022-10-20 14:54 ` [ptxdist] [PATCH 5/5] python3: " Bruno Thomsen
@ 2022-10-28 14:44 ` Michael Olbrich
4 siblings, 0 replies; 10+ messages in thread
From: Michael Olbrich @ 2022-10-28 14:44 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Thanks, applied as 6b12b417d9bf0f93b69fdf2b58c4b540cd890f26.
Michael
[sent from post-receive hook]
On Fri, 28 Oct 2022 16:44:33 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Downloading package result in http code 301 Moved Permanently from
> server. Update used URL to match redirect URL.
>
> --2022-10-20 11:25:26-- https://curl.haxx.se/download/curl-7.85.0.tar.xz
> Resolving curl.haxx.se (curl.haxx.se)... 151.101.66.49, 151.101.130.49, 151.101.194.49, ...
> Connecting to curl.haxx.se (curl.haxx.se)|151.101.66.49|:443... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://curl.se/download/curl-7.85.0.tar.xz [following]
> --2022-10-20 11:25:27-- https://curl.se/download/curl-7.85.0.tar.xz
> Resolving curl.se (curl.se)... 151.101.65.91, 151.101.129.91, 151.101.193.91, ...
> Connecting to curl.se (curl.se)|151.101.65.91|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 2480648 (2.4M) [application/x-xz]
>
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20221020145407.3651-1-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libcurl.make b/rules/libcurl.make
> index e5daf5395be6..4097462c5721 100644
> --- a/rules/libcurl.make
> +++ b/rules/libcurl.make
> @@ -19,7 +19,7 @@ LIBCURL_VERSION := 7.85.0
> LIBCURL_MD5 := 131f76c84016c45806b902330a74164f
> LIBCURL := curl-$(LIBCURL_VERSION)
> LIBCURL_SUFFIX := tar.xz
> -LIBCURL_URL := https://curl.haxx.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> +LIBCURL_URL := https://curl.se/download/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_SOURCE := $(SRCDIR)/$(LIBCURL).$(LIBCURL_SUFFIX)
> LIBCURL_DIR := $(BUILDDIR)/$(LIBCURL)
> LIBCURL_LICENSE := curl
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [ptxdist] [APPLIED] dbus: update download URL
2022-10-20 14:54 ` [ptxdist] [PATCH 2/5] dbus: " Bruno Thomsen
@ 2022-10-28 14:44 ` Michael Olbrich
0 siblings, 0 replies; 10+ messages in thread
From: Michael Olbrich @ 2022-10-28 14:44 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Thanks, applied as 44fd98e2a727f24708e7340042ccfd7e2dcfc1b6.
Michael
[sent from post-receive hook]
On Fri, 28 Oct 2022 16:44:35 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Downloading package result in http code 301 Moved Permanently from
> server. Update used URL to match redirect URL.
>
> --2022-10-20 11:24:55-- http://dbus.freedesktop.org/releases/dbus/dbus-1.14.0.tar.xz
> Resolving dbus.freedesktop.org (dbus.freedesktop.org)... 131.252.210.176, 2610:10:20:722:a800:ff:feda:470f
> Connecting to dbus.freedesktop.org (dbus.freedesktop.org)|131.252.210.176|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://dbus.freedesktop.org/releases/dbus/dbus-1.14.0.tar.xz [following]
> --2022-10-20 11:24:56-- https://dbus.freedesktop.org/releases/dbus/dbus-1.14.0.tar.xz
> Connecting to dbus.freedesktop.org (dbus.freedesktop.org)|131.252.210.176|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 1360228 (1.3M) [application/x-xz]
>
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20221020145407.3651-2-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/dbus.make b/rules/dbus.make
> index 6ceae4c21407..b4b1aa82e5a5 100644
> --- a/rules/dbus.make
> +++ b/rules/dbus.make
> @@ -20,7 +20,7 @@ DBUS_VERSION := 1.15.2
> DBUS_MD5 := c56de960ea9031b92ee71aaa0e8e72c2
> DBUS := dbus-$(DBUS_VERSION)
> DBUS_SUFFIX := tar.xz
> -DBUS_URL := http://dbus.freedesktop.org/releases/dbus/$(DBUS).$(DBUS_SUFFIX)
> +DBUS_URL := https://dbus.freedesktop.org/releases/dbus/$(DBUS).$(DBUS_SUFFIX)
> DBUS_SOURCE := $(SRCDIR)/$(DBUS).$(DBUS_SUFFIX)
> DBUS_DIR := $(BUILDDIR)/$(DBUS)
> DBUS_LICENSE := AFL-2.1 AND GPL-2.0-or-later
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [ptxdist] [APPLIED] libmbim: change URL from http to https
2022-10-20 14:54 ` [ptxdist] [PATCH 3/5] libmbim: change URL from http to https Bruno Thomsen
@ 2022-10-28 14:44 ` Michael Olbrich
0 siblings, 0 replies; 10+ messages in thread
From: Michael Olbrich @ 2022-10-28 14:44 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Thanks, applied as c3590c706f19f6769bbb5781ea417777d3cb15d8.
Michael
[sent from post-receive hook]
On Fri, 28 Oct 2022 16:44:37 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Downloading package result in a redirect from http to https.
> Use URL we have been told to follow.
>
> --2022-10-20 11:25:17-- http://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz
> Resolving www.freedesktop.org (www.freedesktop.org)... 131.252.210.176, 2610:10:20:722:a800:ff:feda:470f
> Connecting to www.freedesktop.org (www.freedesktop.org)|131.252.210.176|:80... connected.
> HTTP request sent, awaiting response... 302 Found
> Location: https://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz [following]
> --2022-10-20 11:25:18-- https://www.freedesktop.org/software/libmbim/libmbim-1.26.4.tar.xz
> Connecting to www.freedesktop.org (www.freedesktop.org)|131.252.210.176|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 566188 (553K) [application/x-xz]
>
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20221020145407.3651-3-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libmbim.make b/rules/libmbim.make
> index 781f9c0ce0fd..f2f8e5801e9a 100644
> --- a/rules/libmbim.make
> +++ b/rules/libmbim.make
> @@ -18,7 +18,7 @@ LIBMBIM_VERSION := 1.26.4
> LIBMBIM_MD5 := 58dea20cad346f31d2873b68385a9973
> LIBMBIM := libmbim-$(LIBMBIM_VERSION)
> LIBMBIM_SUFFIX := tar.xz
> -LIBMBIM_URL := http://www.freedesktop.org/software/libmbim/$(LIBMBIM).$(LIBMBIM_SUFFIX)
> +LIBMBIM_URL := https://www.freedesktop.org/software/libmbim/$(LIBMBIM).$(LIBMBIM_SUFFIX)
> LIBMBIM_SOURCE := $(SRCDIR)/$(LIBMBIM).$(LIBMBIM_SUFFIX)
> LIBMBIM_DIR := $(BUILDDIR)/$(LIBMBIM)
> LIBMBIM_LICENSE := GPL-2.0-or-later AND LGPL-2.1-or-later
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [ptxdist] [APPLIED] host-opkg-utils: update download URL
2022-10-20 14:54 ` [ptxdist] [PATCH 4/5] host-opkg-utils: update download URL Bruno Thomsen
@ 2022-10-28 14:44 ` Michael Olbrich
0 siblings, 0 replies; 10+ messages in thread
From: Michael Olbrich @ 2022-10-28 14:44 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Thanks, applied as 957b2d265ba4363172e402bd7c6e82528f3aad64.
Michael
[sent from post-receive hook]
On Fri, 28 Oct 2022 16:44:39 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Downloading package result in double http code 301 Moved Permanently
> from servers. Update used URL to match redirect URL.
>
> --2022-10-20 11:27:03-- http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz
> Resolving git.yoctoproject.org (git.yoctoproject.org)... 198.145.29.90
> Connecting to git.yoctoproject.org (git.yoctoproject.org)|198.145.29.90|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz [following]
> --2022-10-20 11:27:03-- https://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz
> Connecting to git.yoctoproject.org (git.yoctoproject.org)|198.145.29.90|:443... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://git.yoctoproject.org/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz [following]
> --2022-10-20 11:27:04-- https://git.yoctoproject.org/opkg-utils/snapshot/opkg-utils-0.5.0.tar.gz
> Reusing existing connection to git.yoctoproject.org:443.
> HTTP request sent, awaiting response... 200 OK
> Length: unspecified [application/x-gzip]
>
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20221020145407.3651-4-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/host-opkg-utils.make b/rules/host-opkg-utils.make
> index 159eac64bfb6..0e6e28e9ffe1 100644
> --- a/rules/host-opkg-utils.make
> +++ b/rules/host-opkg-utils.make
> @@ -18,7 +18,7 @@ HOST_OPKG_UTILS_VERSION := 0.5.0
> HOST_OPKG_UTILS_MD5 := c71939ee02c69462bd3ba1fe0d6de5e2
> HOST_OPKG_UTILS := opkg-utils-$(HOST_OPKG_UTILS_VERSION)
> HOST_OPKG_UTILS_SUFFIX := tar.gz
> -HOST_OPKG_UTILS_URL := http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
> +HOST_OPKG_UTILS_URL := https://git.yoctoproject.org/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
> HOST_OPKG_UTILS_SOURCE := $(SRCDIR)/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
> HOST_OPKG_UTILS_DIR := $(HOST_BUILDDIR)/$(HOST_OPKG_UTILS)
> HOST_OPKG_UTILS_LICENSE := GPL-2.0-only
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [ptxdist] [APPLIED] python3: update download URL
2022-10-20 14:54 ` [ptxdist] [PATCH 5/5] python3: " Bruno Thomsen
@ 2022-10-28 14:44 ` Michael Olbrich
0 siblings, 0 replies; 10+ messages in thread
From: Michael Olbrich @ 2022-10-28 14:44 UTC (permalink / raw)
To: ptxdist; +Cc: Bruno Thomsen
Thanks, applied as 68bf98206331ca5c28e0070ee9aac68076fc9c5a.
Michael
[sent from post-receive hook]
On Fri, 28 Oct 2022 16:44:41 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Downloading package result in double http code 301 Moved Permanently
> from servers. Update used URL to match redirect URL.
>
> --2022-10-20 11:25:21-- http://python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
> Resolving python.org (python.org)... 138.197.63.241
> Connecting to python.org (python.org)|138.197.63.241|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz [following]
> --2022-10-20 11:25:22-- https://python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
> Connecting to python.org (python.org)|138.197.63.241|:443... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz [following]
> --2022-10-20 11:25:22-- https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tar.xz
> Resolving www.python.org (www.python.org)... 199.232.40.223, 2a04:4e42:47::223
> Connecting to www.python.org (www.python.org)|199.232.40.223|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 19342692 (18M) [application/octet-stream]
>
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20221020145407.3651-5-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/python3.make b/rules/python3.make
> index 59c46ca0f177..b1858256373c 100644
> --- a/rules/python3.make
> +++ b/rules/python3.make
> @@ -26,7 +26,7 @@ PYTHON3_DIR := $(BUILDDIR)/$(PYTHON3)
> PYTHON3_DEVPKG := NO
>
> PYTHON3_URL := \
> - http://python.org/ftp/python/$(PYTHON3_VERSION)/$(PYTHON3).$(PYTHON3_SUFFIX) \
> + https://www.python.org/ftp/python/$(PYTHON3_VERSION)/$(PYTHON3).$(PYTHON3_SUFFIX) \
> http://python.org/ftp/python/$(PYTHON3_MAJORMINOR)/$(PYTHON3).$(PYTHON3_SUFFIX)
>
> CROSS_PYTHON3 := $(PTXDIST_SYSROOT_CROSS)/bin/python$(PYTHON3_MAJORMINOR)
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-10-28 14:45 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-20 14:54 [ptxdist] [PATCH 1/5] libcurl: update download URL Bruno Thomsen
2022-10-20 14:54 ` [ptxdist] [PATCH 2/5] dbus: " Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-20 14:54 ` [ptxdist] [PATCH 3/5] libmbim: change URL from http to https Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-20 14:54 ` [ptxdist] [PATCH 4/5] host-opkg-utils: update download URL Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-20 14:54 ` [ptxdist] [PATCH 5/5] python3: " Bruno Thomsen
2022-10-28 14:44 ` [ptxdist] [APPLIED] " Michael Olbrich
2022-10-28 14:44 ` [ptxdist] [APPLIED] libcurl: " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox