mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] openssl: change URL from http to https
@ 2022-08-24 15:05 Bruno Thomsen
  2022-08-30  9:09 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Bruno Thomsen @ 2022-08-24 15:05 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-08-24 07:00:29--  http://www.openssl.org/source/openssl-1.1.1q.tar.gz
Resolving www.openssl.org (www.openssl.org)... 23.32.109.10, 2a02:26f0:a00:3ba::c1e, 2a02:26f0:a00:3a4::c1e
Connecting to www.openssl.org (www.openssl.org)|23.32.109.10|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.openssl.org/source/openssl-1.1.1q.tar.gz [following]
--2022-08-24 07:00:29--  https://www.openssl.org/source/openssl-1.1.1q.tar.gz
Connecting to www.openssl.org (www.openssl.org)|23.32.109.10|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9864061 (9.4M) [application/x-gzip]

Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
---
 rules/openssl.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/openssl.make b/rules/openssl.make
index 7be6f1b6c..d6ba6b7e5 100644
--- a/rules/openssl.make
+++ b/rules/openssl.make
@@ -23,8 +23,8 @@ OPENSSL_MD5	:= c685d239b6a6e1bd78be45624c092f51
 OPENSSL		:= openssl-$(OPENSSL_VERSION)
 OPENSSL_SUFFIX	:= tar.gz
 OPENSSL_URL	:= \
-	http://www.openssl.org/source/$(OPENSSL).$(OPENSSL_SUFFIX) \
-	http://www.openssl.org/source/old/$(OPENSSL_BASE)/$(OPENSSL).$(OPENSSL_SUFFIX)
+	https://www.openssl.org/source/$(OPENSSL).$(OPENSSL_SUFFIX) \
+	https://www.openssl.org/source/old/$(OPENSSL_BASE)/$(OPENSSL).$(OPENSSL_SUFFIX)
 OPENSSL_SOURCE	:= $(SRCDIR)/$(OPENSSL).$(OPENSSL_SUFFIX)
 OPENSSL_DIR	:= $(BUILDDIR)/$(OPENSSL)
 OPENSSL_LICENSE	:= OpenSSL

base-commit: bdb6f5f98505a13dbeffda3dfdea4a4f3bf586c6
-- 
2.37.2




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

* Re: [ptxdist] [APPLIED] openssl: change URL from http to https
  2022-08-24 15:05 [ptxdist] [PATCH] openssl: change URL from http to https Bruno Thomsen
@ 2022-08-30  9:09 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-08-30  9:09 UTC (permalink / raw)
  To: ptxdist; +Cc: Bruno Thomsen

Thanks, applied as f42a6205438da0a83f2f0c27f56dfd7355d6479a.

Michael

[sent from post-receive hook]

On Tue, 30 Aug 2022 11:09: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-08-24 07:00:29--  http://www.openssl.org/source/openssl-1.1.1q.tar.gz
> Resolving www.openssl.org (www.openssl.org)... 23.32.109.10, 2a02:26f0:a00:3ba::c1e, 2a02:26f0:a00:3a4::c1e
> Connecting to www.openssl.org (www.openssl.org)|23.32.109.10|:80... connected.
> HTTP request sent, awaiting response... 301 Moved Permanently
> Location: https://www.openssl.org/source/openssl-1.1.1q.tar.gz [following]
> --2022-08-24 07:00:29--  https://www.openssl.org/source/openssl-1.1.1q.tar.gz
> Connecting to www.openssl.org (www.openssl.org)|23.32.109.10|:443... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: 9864061 (9.4M) [application/x-gzip]
> 
> Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
> Message-Id: <20220824150517.3499-1-bruno.thomsen@gmail.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/openssl.make b/rules/openssl.make
> index 7be6f1b6c14c..d6ba6b7e5b08 100644
> --- a/rules/openssl.make
> +++ b/rules/openssl.make
> @@ -23,8 +23,8 @@ OPENSSL_MD5	:= c685d239b6a6e1bd78be45624c092f51
>  OPENSSL		:= openssl-$(OPENSSL_VERSION)
>  OPENSSL_SUFFIX	:= tar.gz
>  OPENSSL_URL	:= \
> -	http://www.openssl.org/source/$(OPENSSL).$(OPENSSL_SUFFIX) \
> -	http://www.openssl.org/source/old/$(OPENSSL_BASE)/$(OPENSSL).$(OPENSSL_SUFFIX)
> +	https://www.openssl.org/source/$(OPENSSL).$(OPENSSL_SUFFIX) \
> +	https://www.openssl.org/source/old/$(OPENSSL_BASE)/$(OPENSSL).$(OPENSSL_SUFFIX)
>  OPENSSL_SOURCE	:= $(SRCDIR)/$(OPENSSL).$(OPENSSL_SUFFIX)
>  OPENSSL_DIR	:= $(BUILDDIR)/$(OPENSSL)
>  OPENSSL_LICENSE	:= OpenSSL



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

end of thread, other threads:[~2022-08-30  9:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24 15:05 [ptxdist] [PATCH] openssl: change URL from http to https Bruno Thomsen
2022-08-30  9:09 ` [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