mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] xz: update URL
@ 2023-07-27 16:40 Bruno Thomsen
  2023-08-03 11:58 ` Roland Hieber
  2023-08-07  6:50 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 2 replies; 3+ messages in thread
From: Bruno Thomsen @ 2023-07-27 16:40 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Update URL from http to https as it returns 301 Moved Permanently.

Download log:

--2023-07-22 14:34:32--  http://tukaani.org/xz/xz-5.4.3.tar.bz2
Resolving tukaani.org (tukaani.org)... 5.44.245.25
Connecting to tukaani.org (tukaani.org)|5.44.245.25|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://tukaani.org/xz/xz-5.4.3.tar.bz2 [following]
--2023-07-22 14:34:32--  https://tukaani.org/xz/xz-5.4.3.tar.bz2
Connecting to tukaani.org (tukaani.org)|5.44.245.25|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github.com/tukaani-project/xz/releases/download/v5.4.3/xz-5.4.3.tar.bz2 [following]
--2023-07-22 14:34:33--  https://github.com/tukaani-project/xz/releases/download/v5.4.3/xz-5.4.3.tar.bz2
Resolving github.com (github.com)... 140.82.121.4
Connecting to github.com (github.com)|140.82.121.4|:443... connected.
HTTP request sent, awaiting response... 302 Found

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
 rules/xz.make | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rules/xz.make b/rules/xz.make
index a5f16d819..2825f6629 100644
--- a/rules/xz.make
+++ b/rules/xz.make
@@ -18,7 +18,7 @@ XZ_VERSION	:= 5.4.3
 XZ_MD5		:= 34d2f33c2ac51390fc5d0a9c179e8345
 XZ		:= xz-$(XZ_VERSION)
 XZ_SUFFIX	:= tar.bz2
-XZ_URL		:= http://tukaani.org/xz/$(XZ).$(XZ_SUFFIX)
+XZ_URL		:= https://tukaani.org/xz/$(XZ).$(XZ_SUFFIX)
 XZ_SOURCE	:= $(SRCDIR)/$(XZ).$(XZ_SUFFIX)
 XZ_DIR		:= $(BUILDDIR)/$(XZ)
 XZ_LICENSE	:= public_domain AND LGPL-2.1-or-later AND GPL-2.0-or-later AND GPL-3.0-or-later

base-commit: fb8eb0719152fe1f4bc7f31d3c40087fcb721a8c
-- 
2.41.0




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

* Re: [ptxdist] [PATCH] xz: update URL
  2023-07-27 16:40 [ptxdist] [PATCH] xz: update URL Bruno Thomsen
@ 2023-08-03 11:58 ` Roland Hieber
  2023-08-07  6:50 ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Roland Hieber @ 2023-08-03 11:58 UTC (permalink / raw)
  To: Bruno Thomsen; +Cc: ptxdist

On Thu, Jul 27, 2023 at 06:40:26PM +0200, Bruno Thomsen wrote:
> Update URL from http to https as it returns 301 Moved Permanently.
> 
> Download log:
> 
> --2023-07-22 14:34:32--  http://tukaani.org/xz/xz-5.4.3.tar.bz2
> Resolving tukaani.org (tukaani.org)... 5.44.245.25
> Connecting to tukaani.org (tukaani.org)|5.44.245.25|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://tukaani.org/xz/xz-5.4.3.tar.bz2 [following]
> --2023-07-22 14:34:32--  https://tukaani.org/xz/xz-5.4.3.tar.bz2
> Connecting to tukaani.org (tukaani.org)|5.44.245.25|:443... connected.
> HTTP request sent, awaiting response... 302 Found
> Location: https://github.com/tukaani-project/xz/releases/download/v5.4.3/xz-5.4.3.tar.bz2 [following]
> --2023-07-22 14:34:33--  https://github.com/tukaani-project/xz/releases/download/v5.4.3/xz-5.4.3.tar.bz2

I would probably also add this github URL as a fallback too, so we
don't rely on two hops to get the file (just append it to the variable
with a whitespace after the existing URL)

 - Roland

> Resolving github.com (github.com)... 140.82.121.4
> Connecting to github.com (github.com)|140.82.121.4|:443... connected.
> HTTP request sent, awaiting response... 302 Found
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> ---
>  rules/xz.make | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/rules/xz.make b/rules/xz.make
> index a5f16d819..2825f6629 100644
> --- a/rules/xz.make
> +++ b/rules/xz.make
> @@ -18,7 +18,7 @@ XZ_VERSION	:= 5.4.3
>  XZ_MD5		:= 34d2f33c2ac51390fc5d0a9c179e8345
>  XZ		:= xz-$(XZ_VERSION)
>  XZ_SUFFIX	:= tar.bz2
> -XZ_URL		:= http://tukaani.org/xz/$(XZ).$(XZ_SUFFIX)
> +XZ_URL		:= https://tukaani.org/xz/$(XZ).$(XZ_SUFFIX)
>  XZ_SOURCE	:= $(SRCDIR)/$(XZ).$(XZ_SUFFIX)
>  XZ_DIR		:= $(BUILDDIR)/$(XZ)
>  XZ_LICENSE	:= public_domain AND LGPL-2.1-or-later AND GPL-2.0-or-later AND GPL-3.0-or-later
> 
> base-commit: fb8eb0719152fe1f4bc7f31d3c40087fcb721a8c
> -- 
> 2.41.0
> 
> 
> 

-- 
Roland Hieber, Pengutronix e.K.          | r.hieber@pengutronix.de     |
Steuerwalder Str. 21                     | https://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] 3+ messages in thread

* Re: [ptxdist] [APPLIED] xz: update URL
  2023-07-27 16:40 [ptxdist] [PATCH] xz: update URL Bruno Thomsen
  2023-08-03 11:58 ` Roland Hieber
@ 2023-08-07  6:50 ` Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2023-08-07  6:50 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as 8857f5ed212a74bed485ced0929815dda610d116.

Michael

[sent from post-receive hook]

On Mon, 07 Aug 2023 08:50:37 +0200, Bruno Thomsen <bruno.thomsen@gmail.com> wrote:
> Update URL from http to https as it returns 301 Moved Permanently.
> 
> Download log:
> 
> --2023-07-22 14:34:32--  http://tukaani.org/xz/xz-5.4.3.tar.bz2
> Resolving tukaani.org (tukaani.org)... 5.44.245.25
> Connecting to tukaani.org (tukaani.org)|5.44.245.25|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://tukaani.org/xz/xz-5.4.3.tar.bz2 [following]
> --2023-07-22 14:34:32--  https://tukaani.org/xz/xz-5.4.3.tar.bz2
> Connecting to tukaani.org (tukaani.org)|5.44.245.25|:443... connected.
> HTTP request sent, awaiting response... 302 Found
> Location: https://github.com/tukaani-project/xz/releases/download/v5.4.3/xz-5.4.3.tar.bz2 [following]
> --2023-07-22 14:34:33--  https://github.com/tukaani-project/xz/releases/download/v5.4.3/xz-5.4.3.tar.bz2
> Resolving github.com (github.com)... 140.82.121.4
> Connecting to github.com (github.com)|140.82.121.4|:443... connected.
> HTTP request sent, awaiting response... 302 Found
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20230727164026.4254-1-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/xz.make b/rules/xz.make
> index a5f16d81929d..2825f6629b7d 100644
> --- a/rules/xz.make
> +++ b/rules/xz.make
> @@ -18,7 +18,7 @@ XZ_VERSION	:= 5.4.3
>  XZ_MD5		:= 34d2f33c2ac51390fc5d0a9c179e8345
>  XZ		:= xz-$(XZ_VERSION)
>  XZ_SUFFIX	:= tar.bz2
> -XZ_URL		:= http://tukaani.org/xz/$(XZ).$(XZ_SUFFIX)
> +XZ_URL		:= https://tukaani.org/xz/$(XZ).$(XZ_SUFFIX)
>  XZ_SOURCE	:= $(SRCDIR)/$(XZ).$(XZ_SUFFIX)
>  XZ_DIR		:= $(BUILDDIR)/$(XZ)
>  XZ_LICENSE	:= public_domain AND LGPL-2.1-or-later AND GPL-2.0-or-later AND GPL-3.0-or-later



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

end of thread, other threads:[~2023-08-07  6:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-27 16:40 [ptxdist] [PATCH] xz: update URL Bruno Thomsen
2023-08-03 11:58 ` Roland Hieber
2023-08-07  6:50 ` [ptxdist] [APPLIED] " Michael Olbrich

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