mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] dropbear: change URL from http to https
@ 2022-06-29  4:46 Bruno Thomsen
  2022-06-29  7:28 ` Alexander Dahl
  2022-07-29  6:23 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 2 replies; 3+ messages in thread
From: Bruno Thomsen @ 2022-06-29  4:46 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-06-27 06:54:09--  http://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
Resolving matt.ucc.asn.au (matt.ucc.asn.au)... 104.26.9.126, 172.67.72.143, 104.26.8.126, ...
Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2 [following]
--2022-06-27 06:54:10--  https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2289644 (2.2M) [application/x-bzip2]

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

diff --git a/rules/dropbear.make b/rules/dropbear.make
index 066453259..cb949d761 100644
--- a/rules/dropbear.make
+++ b/rules/dropbear.make
@@ -20,7 +20,7 @@ DROPBEAR_VERSION	:= 2020.81
 DROPBEAR_MD5		:= a07438a6159a24c61f98f1bce2d479c0
 DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
 DROPBEAR_SUFFIX		:= tar.bz2
-DROPBEAR_URL		:= http://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
+DROPBEAR_URL		:= https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
 DROPBEAR_SOURCE		:= $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX)
 DROPBEAR_DIR		:= $(BUILDDIR)/$(DROPBEAR)
 DROPBEAR_LICENSE	:= \

base-commit: 85010b0d7eb9d209cdc2dc61e955289556ecac43
-- 
2.36.1




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

* Re: [ptxdist] [PATCH] dropbear: change URL from http to https
  2022-06-29  4:46 [ptxdist] [PATCH] dropbear: change URL from http to https Bruno Thomsen
@ 2022-06-29  7:28 ` Alexander Dahl
  2022-07-29  6:23 ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Dahl @ 2022-06-29  7:28 UTC (permalink / raw)
  To: Bruno Thomsen; +Cc: ptxdist

Hello,

Am Wed, Jun 29, 2022 at 06:46:05AM +0200 schrieb Bruno Thomsen:
> Downloading package result in http code 301 Moved Permanently from
> server. Update used URL to match redirect URL.
> 
> --2022-06-27 06:54:09--  http://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
> Resolving matt.ucc.asn.au (matt.ucc.asn.au)... 104.26.9.126, 172.67.72.143, 104.26.8.126, ...
> Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2 [following]
> --2022-06-27 06:54:10--  https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
> Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 2289644 (2.2M) [application/x-bzip2]
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> ---
>  rules/dropbear.make | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/rules/dropbear.make b/rules/dropbear.make
> index 066453259..cb949d761 100644
> --- a/rules/dropbear.make
> +++ b/rules/dropbear.make
> @@ -20,7 +20,7 @@ DROPBEAR_VERSION	:= 2020.81
>  DROPBEAR_MD5		:= a07438a6159a24c61f98f1bce2d479c0
>  DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
>  DROPBEAR_SUFFIX		:= tar.bz2
> -DROPBEAR_URL		:= http://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
> +DROPBEAR_URL		:= https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)

Reviewed-by: Alexander Dahl <ada@thorsis.com>

Greets
Alex

>  DROPBEAR_SOURCE		:= $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX)
>  DROPBEAR_DIR		:= $(BUILDDIR)/$(DROPBEAR)
>  DROPBEAR_LICENSE	:= \
> 
> base-commit: 85010b0d7eb9d209cdc2dc61e955289556ecac43
> -- 
> 2.36.1
> 
> 



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

* Re: [ptxdist] [APPLIED] dropbear: change URL from http to https
  2022-06-29  4:46 [ptxdist] [PATCH] dropbear: change URL from http to https Bruno Thomsen
  2022-06-29  7:28 ` Alexander Dahl
@ 2022-07-29  6:23 ` Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2022-07-29  6:23 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as f0cda2f667ee6d5508eea59306e044f0b909ef84.

Michael

[sent from post-receive hook]

On Fri, 29 Jul 2022 08:23:11 +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-06-27 06:54:09--  http://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
> Resolving matt.ucc.asn.au (matt.ucc.asn.au)... 104.26.9.126, 172.67.72.143, 104.26.8.126, ...
> Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2 [following]
> --2022-06-27 06:54:10--  https://matt.ucc.asn.au/dropbear/releases/dropbear-2020.81.tar.bz2
> Connecting to matt.ucc.asn.au (matt.ucc.asn.au)|104.26.9.126|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 2289644 (2.2M) [application/x-bzip2]
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Reviewed-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20220629044605.5298-1-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/dropbear.make b/rules/dropbear.make
> index 0664532592a4..cb949d761693 100644
> --- a/rules/dropbear.make
> +++ b/rules/dropbear.make
> @@ -20,7 +20,7 @@ DROPBEAR_VERSION	:= 2020.81
>  DROPBEAR_MD5		:= a07438a6159a24c61f98f1bce2d479c0
>  DROPBEAR		:= dropbear-$(DROPBEAR_VERSION)
>  DROPBEAR_SUFFIX		:= tar.bz2
> -DROPBEAR_URL		:= http://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
> +DROPBEAR_URL		:= https://matt.ucc.asn.au/dropbear/releases/$(DROPBEAR).$(DROPBEAR_SUFFIX)
>  DROPBEAR_SOURCE		:= $(SRCDIR)/$(DROPBEAR).$(DROPBEAR_SUFFIX)
>  DROPBEAR_DIR		:= $(BUILDDIR)/$(DROPBEAR)
>  DROPBEAR_LICENSE	:= \



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

end of thread, other threads:[~2022-07-29  6:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-29  4:46 [ptxdist] [PATCH] dropbear: change URL from http to https Bruno Thomsen
2022-06-29  7:28 ` Alexander Dahl
2022-07-29  6:23 ` [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