Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] Config.in: update default BR2_CPAN_MIRROR URL from http to https
@ 2022-12-20 18:03 Peter Seiderer
  2022-12-21 13:06 ` Yann E. MORIN
  2022-12-21 19:42 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Seiderer @ 2022-12-20 18:03 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
Notes:

- the mirror list URL http://search.cpan.org/mirror seems outdated
  (re-directed to https://metacpan.org/mirrors aka 'Not Found - The
  resource you requested could not be found.').

  The closest matching URLs I found are:

  https://www.cpan.org/SITES.html
  http://mirrors.cpan.org/map.html
  http://mirrors.cpan.org/
---
 Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Config.in b/Config.in
index 3c57c591a8..c318223d1d 100644
--- a/Config.in
+++ b/Config.in
@@ -287,7 +287,7 @@ config BR2_LUAROCKS_MIRROR
 
 config BR2_CPAN_MIRROR
 	string "CPAN mirror (Perl packages)"
-	default "http://cpan.metacpan.org"
+	default "https://cpan.metacpan.org"
 	help
 	  CPAN (Comprehensive Perl Archive Network) is a repository of
 	  Perl packages. It has multiple software mirrors scattered
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v1] Config.in: update default BR2_CPAN_MIRROR URL from http to https
  2022-12-20 18:03 [Buildroot] [PATCH v1] Config.in: update default BR2_CPAN_MIRROR URL from http to https Peter Seiderer
@ 2022-12-21 13:06 ` Yann E. MORIN
  2022-12-21 19:42 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-12-21 13:06 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

Peter, All,

On 2022-12-20 19:03 +0100, Peter Seiderer spake thusly:
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
> Notes:
> 
> - the mirror list URL http://search.cpan.org/mirror seems outdated
>   (re-directed to https://metacpan.org/mirrors aka 'Not Found - The
>   resource you requested could not be found.').
> 
>   The closest matching URLs I found are:
> 
>   https://www.cpan.org/SITES.html
>   http://mirrors.cpan.org/map.html
>   http://mirrors.cpan.org/

I've updated the help text with those last two URLs (table and map),
extended the commit log with your good explanations above, and a few
additions.

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Config.in b/Config.in
> index 3c57c591a8..c318223d1d 100644
> --- a/Config.in
> +++ b/Config.in
> @@ -287,7 +287,7 @@ config BR2_LUAROCKS_MIRROR
>  
>  config BR2_CPAN_MIRROR
>  	string "CPAN mirror (Perl packages)"
> -	default "http://cpan.metacpan.org"
> +	default "https://cpan.metacpan.org"
>  	help
>  	  CPAN (Comprehensive Perl Archive Network) is a repository of
>  	  Perl packages. It has multiple software mirrors scattered
> -- 
> 2.39.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v1] Config.in: update default BR2_CPAN_MIRROR URL from http to https
  2022-12-20 18:03 [Buildroot] [PATCH v1] Config.in: update default BR2_CPAN_MIRROR URL from http to https Peter Seiderer
  2022-12-21 13:06 ` Yann E. MORIN
@ 2022-12-21 19:42 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-12-21 19:42 UTC (permalink / raw)
  To: Peter Seiderer; +Cc: buildroot

>>>>> "Peter" == Peter Seiderer <ps.report@gmx.net> writes:

 > Signed-off-by: Peter Seiderer <ps.report@gmx.net>
 > ---
 > Notes:

 > - the mirror list URL http://search.cpan.org/mirror seems outdated
 >   (re-directed to https://metacpan.org/mirrors aka 'Not Found - The
 >   resource you requested could not be found.').

 >   The closest matching URLs I found are:

 >   https://www.cpan.org/SITES.html
 >   http://mirrors.cpan.org/map.html
 >   http://mirrors.cpan.org/

Committed to 2022.11.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-12-21 19:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-20 18:03 [Buildroot] [PATCH v1] Config.in: update default BR2_CPAN_MIRROR URL from http to https Peter Seiderer
2022-12-21 13:06 ` Yann E. MORIN
2022-12-21 19:42 ` Peter Korsgaard

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