Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [V3] scancpan: improve message when bad host perl version
@ 2016-06-16 16:26 Francois Perrad
  2016-06-16 20:08 ` Yann E. MORIN
  2016-07-04 15:45 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Francois Perrad @ 2016-06-16 16:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 support/scripts/scancpan | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/support/scripts/scancpan b/support/scripts/scancpan
index 6c70cfb..617ee71 100755
--- a/support/scripts/scancpan
+++ b/support/scripts/scancpan
@@ -471,7 +471,7 @@ unshift @INC, sub {
 } # END OF FATPACK CODE
 
 
-use 5.022;      # same major version as target perl
+use 5.010;
 use strict;
 use warnings;
 use Fatal qw(open close);
@@ -484,6 +484,17 @@ use HTTP::Tiny;
 use Safe;
 use MetaCPAN::API::Tiny;
 
+die <<"MSG" if $] < 5.022;
+This script needs a host perl with the same major version as Buildroot target perl.
+
+Your current host perl is:
+    $^X
+    version $]
+
+You may install a local one by running:
+    perlbrew install perl-5.22.2
+MSG
+
 my ($help, $man, $quiet, $force, $recommend, $test, $host);
 my $target = 1;
 GetOptions( 'help|?' => \$help,
@@ -746,10 +757,6 @@ support/scripts/scancpan Try-Tiny Moo
 
 =head1 SYNOPSIS
 
-curl -kL http://install.perlbrew.pl | bash
-
-perlbrew install perl-5.18.2
-
 supports/scripts/scancpan [options] [distname ...]
 
  Options:
-- 
1.9.1

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

* [Buildroot] [V3] scancpan: improve message when bad host perl version
  2016-06-16 16:26 [Buildroot] [V3] scancpan: improve message when bad host perl version Francois Perrad
@ 2016-06-16 20:08 ` Yann E. MORIN
  2016-06-17  5:47   ` François Perrad
  2016-07-04 15:45 ` Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2016-06-16 20:08 UTC (permalink / raw)
  To: buildroot

Fran?ois, All,

Thank you for this proposal! :-)

On 2016-06-16 18:26 +0200, Francois Perrad spake thusly:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  support/scripts/scancpan | 17 ++++++++++++-----
>  1 file changed, 12 insertions(+), 5 deletions(-)
> 
> diff --git a/support/scripts/scancpan b/support/scripts/scancpan
> index 6c70cfb..617ee71 100755
> --- a/support/scripts/scancpan
> +++ b/support/scripts/scancpan
> @@ -471,7 +471,7 @@ unshift @INC, sub {
>  } # END OF FATPACK CODE
>  
>  
> -use 5.022;      # same major version as target perl
> +use 5.010;

So, we now require perl >= 5.10 to run this script, right? (well, to at
least get the error message sanely!)

How old is this?
Can we be sure that viurtually everyone has a perl >= 5.010?

Can't we just drop the requirement?

Care to expand the commit log to explain this, please?

>  use strict;
>  use warnings;
>  use Fatal qw(open close);
> @@ -484,6 +484,17 @@ use HTTP::Tiny;
>  use Safe;
>  use MetaCPAN::API::Tiny;
>  

Maybe add a comment here:

   # PERL_VERSION #
   # Below, 5.022 should be aligned with the version of
   # perl actually bundled in Buildroot:
> +die <<"MSG" if $] < 5.022;
> +This script needs a host perl with the same major version as Buildroot target perl.
> +
> +Your current host perl is:
> +    $^X
> +    version $]
> +
> +You may install a local one by running:
> +    perlbrew install perl-5.22.2
> +MSG

Maybe you should also add a comment in package/perl/perl.mk, just above
the version string:

    # When updating the version here, also update
    # support/scripts/scancpan (search for "PERL_VERSION")
    PERL_VERSION_MAJOR = 22
    PERL_VERSION = 5.$(PERL_VERSION_MAJOR).2

This will make it more difficult to get out of sync between the two. ;-)

Regards,
Yann E. MORIN.

>  my ($help, $man, $quiet, $force, $recommend, $test, $host);
>  my $target = 1;
>  GetOptions( 'help|?' => \$help,
> @@ -746,10 +757,6 @@ support/scripts/scancpan Try-Tiny Moo
>  
>  =head1 SYNOPSIS
>  
> -curl -kL http://install.perlbrew.pl | bash
> -
> -perlbrew install perl-5.18.2
> -
>  supports/scripts/scancpan [options] [distname ...]
>  
>   Options:
> -- 
> 1.9.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [V3] scancpan: improve message when bad host perl version
  2016-06-16 20:08 ` Yann E. MORIN
@ 2016-06-17  5:47   ` François Perrad
  0 siblings, 0 replies; 4+ messages in thread
From: François Perrad @ 2016-06-17  5:47 UTC (permalink / raw)
  To: buildroot

2016-06-16 22:08 GMT+02:00 Yann E. MORIN <yann.morin.1998@free.fr>:
> Fran?ois, All,
>
> Thank you for this proposal! :-)
>
> On 2016-06-16 18:26 +0200, Francois Perrad spake thusly:
>> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
>> ---
>>  support/scripts/scancpan | 17 ++++++++++++-----
>>  1 file changed, 12 insertions(+), 5 deletions(-)
>>
>> diff --git a/support/scripts/scancpan b/support/scripts/scancpan
>> index 6c70cfb..617ee71 100755
>> --- a/support/scripts/scancpan
>> +++ b/support/scripts/scancpan
>> @@ -471,7 +471,7 @@ unshift @INC, sub {
>>  } # END OF FATPACK CODE
>>
>>
>> -use 5.022;      # same major version as target perl
>> +use 5.010;
>
> So, we now require perl >= 5.10 to run this script, right? (well, to at
> least get the error message sanely!)
>
> How old is this?

The release date of Perl 5.10.0 is the 2007-Dec-18.
(see http://perl5.git.perl.org/perl.git/blob/HEAD:/pod/perlhist.pod
or https://fperrad.github.io/graph-versions/perl5.png)

Fran?ois

> Can we be sure that viurtually everyone has a perl >= 5.010?
>
> Can't we just drop the requirement?
>
> Care to expand the commit log to explain this, please?
>
>>  use strict;
>>  use warnings;
>>  use Fatal qw(open close);
>> @@ -484,6 +484,17 @@ use HTTP::Tiny;
>>  use Safe;
>>  use MetaCPAN::API::Tiny;
>>
>
> Maybe add a comment here:
>
>    # PERL_VERSION #
>    # Below, 5.022 should be aligned with the version of
>    # perl actually bundled in Buildroot:
>> +die <<"MSG" if $] < 5.022;
>> +This script needs a host perl with the same major version as Buildroot target perl.
>> +
>> +Your current host perl is:
>> +    $^X
>> +    version $]
>> +
>> +You may install a local one by running:
>> +    perlbrew install perl-5.22.2
>> +MSG
>
> Maybe you should also add a comment in package/perl/perl.mk, just above
> the version string:
>
>     # When updating the version here, also update
>     # support/scripts/scancpan (search for "PERL_VERSION")
>     PERL_VERSION_MAJOR = 22
>     PERL_VERSION = 5.$(PERL_VERSION_MAJOR).2
>
> This will make it more difficult to get out of sync between the two. ;-)
>
> Regards,
> Yann E. MORIN.
>
>>  my ($help, $man, $quiet, $force, $recommend, $test, $host);
>>  my $target = 1;
>>  GetOptions( 'help|?' => \$help,
>> @@ -746,10 +757,6 @@ support/scripts/scancpan Try-Tiny Moo
>>
>>  =head1 SYNOPSIS
>>
>> -curl -kL http://install.perlbrew.pl | bash
>> -
>> -perlbrew install perl-5.18.2
>> -
>>  supports/scripts/scancpan [options] [distname ...]
>>
>>   Options:
>> --
>> 1.9.1
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
> --
> .-----------------.--------------------.------------------.--------------------.
> |  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
> | +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
> '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [V3] scancpan: improve message when bad host perl version
  2016-06-16 16:26 [Buildroot] [V3] scancpan: improve message when bad host perl version Francois Perrad
  2016-06-16 20:08 ` Yann E. MORIN
@ 2016-07-04 15:45 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-07-04 15:45 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 16 Jun 2016 18:26:24 +0200, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
>  support/scripts/scancpan | 17 ++++++++++++-----
>  1 file changed, 12 insertions(+), 5 deletions(-)

I've taken into account the comments from Yann, and applied.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2016-07-04 15:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-16 16:26 [Buildroot] [V3] scancpan: improve message when bad host perl version Francois Perrad
2016-06-16 20:08 ` Yann E. MORIN
2016-06-17  5:47   ` François Perrad
2016-07-04 15:45 ` Thomas Petazzoni

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