forked from gugod/App-perlbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
perlbrew
executable file
·1974 lines (1519 loc) · 55 KB
/
perlbrew
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env perl
# This chunk of stuff was generated by App::FatPacker. To find the original
# file's code, look for the end of this BEGIN block or the string 'FATPACK'
BEGIN {
my %fatpacked;
$fatpacked{"App/perlbrew.pm"} = <<'APP_PERLBREW';
package App::perlbrew;
use strict;
use warnings;
use 5.008;
use Getopt::Long ();
use File::Spec::Functions qw( catfile );
use File::Path::Tiny;
use FindBin;
our $VERSION = "0.28";
our $CONF;
my $ROOT = $ENV{PERLBREW_ROOT} || "$ENV{HOME}/perl5/perlbrew";
my $PB_HOME = $ENV{PERLBREW_HOME} || "$ENV{HOME}/.perlbrew";
my $CONF_FILE = catfile( $ROOT, 'Conf.pm' );
my $CURRENT_PERL = $ENV{PERLBREW_PERL};
my $SIMILAR_DISTANCE = 6;
local $SIG{__DIE__} = sub {
my $message = shift;
warn $message;
exit 1;
};
sub current_perl { $CURRENT_PERL || '' }
sub BASHRC_CONTENT() {
return <<'RC';
if [[ -z "$PERLBREW_HOME" ]]; then
export PERLBREW_HOME="$HOME/.perlbrew"
fi
if [[ ! -n "$PERLBREW_SKIP_INIT" ]]; then
if [[ -f "$PERLBREW_HOME/init" ]]; then
. "$PERLBREW_HOME/init"
fi
fi
__perlbrew_reinit () {
if [[ ! -d "$PERLBREW_HOME" ]]; then
mkdir -p "$PERLBREW_HOME"
fi
echo '# DO NOT EDIT THIS FILE' >| "$PERLBREW_HOME/init"
command perlbrew env $1 >> "$PERLBREW_HOME/init"
. "$PERLBREW_HOME/init"
__perlbrew_set_path
}
__perlbrew_set_path () {
[[ -z "$PERLBREW_ROOT" ]] && return 1
[[ -n $(alias perl 2>/dev/null) ]] && unalias perl 2>/dev/null
export PATH_WITHOUT_PERLBREW=$(perl -e 'print join ":", grep { index($_, $ENV{PERLBREW_ROOT}) } split/:/,$ENV{PATH};')
if [[ -z "$PERLBREW_PATH" ]]; then
export PERLBREW_PATH="$PERLBREW_ROOT/bin"
fi
export PATH=$PERLBREW_PATH:$PATH_WITHOUT_PERLBREW
}
__perlbrew_set_path
perlbrew () {
local exit_status
local short_option
export SHELL
if [[ `echo $1 | awk 'BEGIN{FS=""}{print $1}'` = '-' ]]; then
short_option=$1
shift
else
short_option=""
fi
case $1 in
(use)
if [[ -z "$2" ]] ; then
if [[ -z "$PERLBREW_PERL" ]] ; then
echo "No version in use; defaulting to system"
else
echo "Using $PERLBREW_PERL version"
fi
elif [[ -x "$PERLBREW_ROOT/perls/$2/bin/perl" ]]; then
eval $(command perlbrew $short_option env $2)
__perlbrew_set_path
elif [[ -x "$PERLBREW_ROOT/perls/perl-$2/bin/perl" ]]; then
eval $(command perlbrew $short_option env "perl-$2")
__perlbrew_set_path
else
echo "$2 is not installed" >&2
exit_status=1
fi
;;
(switch)
if [[ -n "$2" ]] ; then
if [[ -x "$PERLBREW_ROOT/perls/$2/bin/perl" ]]; then
perlbrew $short_option use $2
__perlbrew_reinit $2
elif [[ -x "$PERLBREW_ROOT/perls/perl-$2/bin/perl" ]]; then
perlbrew $short_option use "perl-$2"
__perlbrew_reinit "perl-$2"
else
echo "$2 is not installed" >&2
exit_status=1
fi
else
command perlbrew switch
fi
;;
(off)
unset PERLBREW_PERL
eval `perlbrew env`
__perlbrew_set_path
echo "perlbrew is turned off."
;;
(switch-off)
unset PERLBREW_PERL
__perlbrew_reinit
echo "perlbrew is switched off."
;;
(*)
command perlbrew $short_option "$@"
exit_status=$?
;;
esac
hash -r
return ${exit_status:-0}
}
RC
}
sub CSHRC_CONTENT {
return <<'CSHRC';
if ( $?PERLBREW_SKIP_INIT == 0 ) then
if ( -f "$HOME/.perlbrew/init" ) then
source "$HOME/.perlbrew/init"
endif
endif
setenv PATH_WITHOUT_PERLBREW `perl -e 'print join ":", grep { index($_, $ENV{PERLBREW_ROOT}) } split/:/,$ENV{PATH};'`
setenv PATH ${PERLBREW_PATH}:${PATH_WITHOUT_PERLBREW}
CSHRC
}
sub mkpath {
File::Path::Tiny::mk(@_);
}
sub rmpath {
File::Path::Tiny::rm(@_)
}
{
no warnings;
# Text::Levenshtein::_min
sub _min
{
return $_[0] < $_[1]
? $_[0] < $_[2] ? $_[0] : $_[2]
: $_[1] < $_[2] ? $_[1] : $_[2];
}
# Text::Levenshtein::fastdistance
sub fastdistance
{
my $word1 = shift;
my $word2 = shift;
return 0 if $word1 eq $word2;
my @d;
my $len1 = length $word1;
my $len2 = length $word2;
$d[0][0] = 0;
for (1 .. $len1) {
$d[$_][0] = $_;
return $_ if $_!=$len1 && substr($word1,$_) eq substr($word2,$_);
}
for (1 .. $len2) {
$d[0][$_] = $_;
return $_ if $_!=$len2 && substr($word1,$_) eq substr($word2,$_);
}
for my $i (1 .. $len1) {
my $w1 = substr($word1,$i-1,1);
for (1 .. $len2) {
$d[$i][$_] = _min($d[$i-1][$_]+1, $d[$i][$_-1]+1, $d[$i-1][$_-1]+($w1 eq substr($word2,$_-1,1) ? 0 : 1));
}
}
return $d[$len1][$len2];
}
}
sub uniq(@) {
my %a;
grep { ++$a{$_} == 1 } @_;
}
{
my @command;
sub http_get {
my ($url, $header, $cb) = @_;
if (ref($header) eq 'CODE') {
$cb = $header;
$header = undef;
}
if (! @command) {
my @commands = (
# curl's --fail option makes the exit code meaningful
[qw( curl --silent --location --fail --insecure )],
[qw( wget --no-check-certificate --quiet -O - )],
);
for my $command (@commands) {
my $program = $command->[0];
my $code = system("$program --version >/dev/null 2>&1") >> 8;
if ($code != 127) {
@command = @$command;
last;
}
}
die "You have to install either curl or wget\n"
unless @command;
}
open my $fh, '-|', @command, $url
or die "open() for '@command $url': $!";
local $/;
my $body = <$fh>;
close $fh;
die 'Page not retrieved; HTTP error code 400 or above.'
if $command[0] eq 'curl' # Exit code is 22 on 404s etc
and $? >> 8 == 22; # exit code is packed into $?; see perlvar
die 'Server issued an error response.'
if $command[0] eq 'wget' # Exit code is 8 on 404s etc
and $? >> 8 == 8;
return $cb ? $cb->($body) : $body;
}
}
sub new {
my($class, @argv) = @_;
my %opt = (
original_argv => \@argv,
force => 0,
quiet => 1,
D => [],
U => [],
A => [],
);
# build a local @ARGV to allow us to use an older
# Getopt::Long API in case we are building on an older system
local (@ARGV) = @argv;
Getopt::Long::Configure(
'pass_through',
'no_ignore_case',
'bundling',
);
Getopt::Long::GetOptions(
\%opt,
'force|f!',
'notest|n!',
'quiet|q!',
'verbose|v',
'as=s',
'help|h',
'version',
# options passed directly to Configure
'D=s@',
'U=s@',
'A=s@',
'j=i'
)
or run_command_help(1);
$opt{args} = \@ARGV;
# fix up the effect of 'bundling'
foreach my $flags (@opt{qw(D U A)}) {
foreach my $value(@{$flags}) {
$value =~ s/^=//;
}
}
return bless \%opt, $class;
}
sub env {
my ($self, $name) = @_;
return $ENV{$name} if $name;
return \%ENV;
}
sub path_with_tilde {
my ($self, $dir) = @_;
my $home = $self->env('HOME');
$dir =~ s/^$home/~/ if $home;
return $dir;
}
sub is_shell_csh {
my ($self) = @_;
return 1 if $self->env('SHELL') =~ /(t?csh)/;
return 0;
}
sub run {
my($self) = @_;
$self->run_command($self->get_args);
}
sub get_args {
my ( $self ) = @_;
return @{ $self->{args} };
}
sub get_command_list {
my ( $self ) = @_;
my $package = ref $self ? ref $self : $self;
my @commands;
my $symtable = do {
no strict 'refs';
\%{$package . '::'};
};
foreach my $sym (keys %$symtable) {
if($sym =~ /^run_command_/) {
my $glob = $symtable->{$sym};
if(defined *$glob{CODE}) {
$sym =~ s/^run_command_//;
push @commands, $sym;
}
}
}
return @commands;
}
sub find_similar_commands {
my ( $self, $command ) = @_;
my @commands = $self->get_command_list;
foreach my $cmd (@commands) {
my $dist = fastdistance($cmd, $command);
if($dist < $SIMILAR_DISTANCE) {
$cmd = [ $cmd, $dist ];
} else {
undef $cmd;
}
}
@commands = grep { defined } @commands;
@commands = sort { $a->[1] <=> $b->[1] } @commands;
if(@commands) {
my $best = $commands[0][1];
@commands = grep { $_->[1] == $best } @commands;
@commands = map { $_->[0] } @commands;
}
return @commands;
}
sub run_command {
my ( $self, $x, @args ) = @_;
$self->{log_file} ||= "$ROOT/build.log";
if($self->{version}) {
$x = 'version';
}
elsif(!$x) {
$x = 'help';
@args = (0, $self->{help} ? 2 : 0);
}
elsif($x eq 'help') {
@args = (0, 2);
}
my $s = $self->can("run_command_$x");
unless ($s) {
$x =~ s/-/_/;
$s = $self->can("run_command_$x");
}
unless($s) {
my @commands = $self->find_similar_commands($x);
if(@commands > 1) {
@commands = map { ' ' . $_ } @commands;
die "Unknown command: `$x`. Did you mean one of the following?\n" . join("\n", @commands) . "\n";
} elsif(@commands == 1) {
die "Unknown command: `$x`. Did you mean `$commands[0]`?\n";
} else {
die "Unknown command: `$x`. Typo?\n";
}
}
# Assume 5.12.3 means perl-5.12.3, for example.
if ($x =~ /\A(?:switch|use|env)\Z/ and my $name = shift @args) {
my $fullname = $self->resolve_installation_name($name);
if ($fullname) {
unshift @args, $fullname;
}
else {
die "Unknown installation name: $name\n";
}
}
elsif ($x eq 'install') {
# prepend "perl-" to version number, but only if there is an argument
$args[0] =~ s/\A((?:\d+\.)*\d+)\Z/perl-$1/
if @args;
}
$self->$s(@args);
}
sub run_command_version {
my ( $self ) = @_;
my $package = ref $self;
my $version = $self->VERSION;
print <<"VERSION";
$0 - $package/$version
VERSION
}
sub run_command_help {
my ($self, $status, $verbose) = @_;
require Pod::Usage;
Pod::Usage::pod2usage(-verbose => $verbose||0, -exitval => (defined $status ? $status : 1));
}
sub run_command_available {
my ( $self, $dist, $opts ) = @_;
my @available = $self->get_available_perls(@_);
my @installed = $self->installed_perls(@_);
my $is_installed;
for my $available (@available) {
$is_installed = 0;
for my $installed (@installed) {
my $name = $installed->{name};
my $cur = $installed->{is_current};
if ( $available eq $installed->{name} ) {
$is_installed = 1;
last;
}
}
print $is_installed ? 'i ' : ' ', $available, "\n";
}
}
sub get_available_perls {
my ( $self, $dist, $opts ) = @_;
my $url = "http://www.cpan.org/src/README.html";
my $html = http_get( $url, undef, undef );
unless($html) {
die "\nERROR: Unable to retrieve the list of perls.\n\n";
}
my @available_versions;
for ( split "\n", $html ) {
push @available_versions, $1
if m|<td><a href="http://www.cpan.org/src/.+?">(.+?)</a></td>|;
}
s/\.tar\.gz// for @available_versions;
return @available_versions;
}
sub run_command_init {
my $self = shift;
my $HOME = $self->env('HOME');
mkpath($_) for (
"$PB_HOME",
"$ROOT/perls", "$ROOT/dists", "$ROOT/build", "$ROOT/etc",
"$ROOT/bin"
);
open BASHRC, "> $ROOT/etc/bashrc";
print BASHRC BASHRC_CONTENT;
close BASHRC;
open CSHRC, "> $ROOT/etc/cshrc";
print CSHRC CSHRC_CONTENT;
close CSHRC;
my ( $shrc, $yourshrc );
if ( $self->is_shell_csh) {
$shrc = 'cshrc';
$self->env("SHELL") =~ m/(t?csh)/;
$yourshrc = $1 . "rc";
}
else {
$shrc = $yourshrc = 'bashrc';
}
system("$0 env @{[ $self->current_perl ]}> ${PB_HOME}/init");
$self->run_command_symlink_executables;
my $root_dir = $self->path_with_tilde($ROOT);
my $pb_home_dir = $self->path_with_tilde($PB_HOME);
print <<INSTRUCTION;
Perlbrew environment initiated, required directories are created under
$root_dir
Paste the following line(s) to the end of your ~/.${yourshrc} and start a
new shell, perlbrew should be up and fully functional from there:
INSTRUCTION
if ($PB_HOME ne "$ENV{HOME}/.perlbrew") {
print "export PERLBREW_HOME=$pb_home_dir\n";
}
print <<INSTRUCTION;
source $root_dir/etc/${shrc}
For further instructions, simply run `perlbrew` to see the help message.
Enjoy perlbrew at \$HOME!!
INSTRUCTION
}
sub run_command_install_perlbrew {
my $self = shift;
require File::Copy;
my $executable = $0;
unless (File::Spec->file_name_is_absolute($executable)) {
$executable = File::Spec->rel2abs($executable);
}
my $target = catfile($ROOT, "bin", "perlbrew");
if ($executable eq $target) {
print "You are already running the installed perlbrew:\n\n $executable\n";
exit;
}
mkpath("$ROOT/bin");
File::Copy::copy($executable, $target);
chmod(0755, $target);
http_get(
'https://raw.github.com/gist/962406/5aa30dd2ec33cd9cea42ed2125154dcc1406edbc',
undef,
sub {
my ( $body ) = @_;
my $patchperl_path = catfile($ROOT, 'bin', 'patchperl');
open my $fh, '>', $patchperl_path or die "Couldn't write patchperl: $!";
print $fh $body;
close $fh;
chmod 0755, $patchperl_path;
}
);
my $path = $self->path_with_tilde($target);
print <<HELP;
The perlbrew is installed as:
$path
You may trash the downloaded $executable from now on.
HELP
$self->run_command_init();
return;
}
sub do_install_git {
my $self = shift;
my $dist = shift;
my $dist_name;
my $dist_git_describe;
my $dist_version;
require Cwd;
my $cwd = Cwd::cwd();
chdir $dist;
if (`git describe` =~ /v((5\.\d+\.\d+(?:-RC\d)?)(-\d+-\w+)?)$/) {
$dist_name = 'perl';
$dist_git_describe = "v$1";
$dist_version = $2;
}
chdir $cwd;
my $dist_extracted_dir = File::Spec->rel2abs( $dist );
$self->do_install_this($dist_extracted_dir, $dist_version, "$dist_name-$dist_version");
return;
}
sub do_install_url {
my $self = shift;
my $dist = shift;
my $dist_name = 'perl';
# need the period to account for the file extension
my ($dist_version) = $dist =~ m/-([\d.]+(?:-RC\d+)?|git)\./;
my ($dist_tarball) = $dist =~ m{/([^/]*)$};
my $dist_tarball_path = "$ROOT/dists/$dist_tarball";
my $dist_tarball_url = $dist;
$dist = "$dist_name-$dist_version"; # we install it as this name later
if ($dist_tarball_url =~ m/^file/) {
print "Installing $dist from local archive $dist_tarball_url\n";
$dist_tarball_url =~ s/^file:\/+/\//;
$dist_tarball_path = $dist_tarball_url;
}
else {
print "Fetching $dist as $dist_tarball_path\n";
http_get(
$dist_tarball_url,
undef,
sub {
my ($body) = @_;
open my $BALL, "> $dist_tarball_path" or die "Couldn't open $dist_tarball_path: $!";
print $BALL $body;
close $BALL;
}
);
}
my $dist_extracted_path = $self->do_extract_tarball($dist_tarball_path);
$self->do_install_this($dist_extracted_path, $dist_version, $dist);
return;
}
sub do_extract_tarball {
my $self = shift;
my $dist_tarball = shift;
# Was broken on Solaris, where GNU tar is probably
# installed as 'gtar' - RT #61042
my $tarx =
($^O eq 'solaris' ? 'gtar ' : 'tar ') .
( $dist_tarball =~ m/bz2$/ ? 'xjf' : 'xzf' );
my $extract_command = "cd $ROOT/build; $tarx $dist_tarball";
die "Failed to extract $dist_tarball" if system($extract_command);
$dist_tarball =~ s{.*/([^/]+)\.tar\.(?:gz|bz2)$}{$1};
return "$ROOT/build/$dist_tarball"; # Note that this is incorrect for blead
}
sub do_install_blead {
my $self = shift;
my $dist = shift;
my $dist_name = 'perl';
my $dist_git_describe = 'blead';
my $dist_version = 'blead';
# We always blindly overwrite anything that's already there,
# because blead is a moving target.
my $dist_tarball = 'blead.tar.gz';
my $dist_tarball_path = "$ROOT/dists/$dist_tarball";
print "Fetching $dist_git_describe as $dist_tarball_path\n";
http_get(
"http://perl5.git.perl.org/perl.git/snapshot/$dist_tarball",
sub {
my ($body) = @_;
unless ($body) {
die "\nERROR: Failed to download perl-blead tarball.\n\n";
}
open my $BALL, "> $dist_tarball_path" or die "Couldn't open $dist_tarball_path: $!";
print $BALL $body;
close $BALL;
}
);
# Returns the wrong extracted dir for blead
$self->do_extract_tarball($dist_tarball_path);
local *DIRH;
opendir DIRH, "$ROOT/build" or die "Couldn't open $ROOT/build: $!";
my @contents = readdir DIRH;
closedir DIRH or warn "Couldn't close $ROOT/build: $!";
my @candidates = grep { m/^perl-[0-9a-f]{7,8}$/ } @contents;
# Use a Schwartzian Transform in case there are lots of dirs that
# look like "perl-$SHA1", which is what's inside blead.tar.gz,
# so we stat each one only once.
@candidates = map { $_->[0] }
sort { $b->[1] <=> $a->[1] } # descending
map { [ $_, (stat("$ROOT/build/$_"))[9] ] }
@candidates;
my $dist_extracted_dir = "$ROOT/build/$candidates[0]"; # take the newest one
$self->do_install_this($dist_extracted_dir, $dist_version, "$dist_name-$dist_version");
return;
}
sub do_install_release {
my $self = shift;
my $dist = shift;
my ($dist_name, $dist_version) = $dist =~ m/^(.*)-([\d.]+(?:-RC\d+)?)$/;
my $mirror = $self->conf->{mirror};
my $header = $mirror ? { 'Cookie' => "cpan=$mirror->{url}" } : undef;
my $html = http_get("http://search.cpan.org/dist/$dist", $header);
unless ($html) {
die "ERROR: Failed to download $dist tarball.";
}
my ($dist_path, $dist_tarball) =
$html =~ m[<a href="(/CPAN/authors/id/.+/(${dist}.tar.(gz|bz2)))">Download</a>];
die "ERROR: Cannot find the tarball for $dist\n"
if !$dist_path and !$dist_tarball;
my $dist_tarball_path = "${ROOT}/dists/${dist_tarball}";
my $dist_tarball_url = "http://search.cpan.org${dist_path}";
if (-f $dist_tarball_path) {
print "Use the previously fetched ${dist_tarball}\n";
}
else {
print "Fetching $dist as $dist_tarball_path\n";
http_get(
$dist_tarball_url,
$header,
sub {
my ($body) = @_;
open my $BALL, "> $dist_tarball_path";
print $BALL $body;
close $BALL;
}
);
}
my $dist_extracted_path = $self->do_extract_tarball($dist_tarball_path);
$self->do_install_this($dist_extracted_path,$dist_version, $dist);
return;
}
sub run_command_install {
my ( $self, $dist, $opts ) = @_;
$self->{dist_name} = $dist;
unless ($dist) {
$self->run_command_install_perlbrew();
return
}
my $installation_name = $self->{as} || $dist;
if ($self->is_installed( $installation_name )) {
die "\nABORT: $installation_name is already installed.\n\n";
}
my $help_message = "Unknown installation target \"$dist\", abort.\nPlease see `perlbrew help` for the instruction on using the install command.\n\n";
my ($dist_name, $dist_version) = $dist =~ m/^(.*)-([\d.]+(?:-RC\d+)?|git)$/;
if (!$dist_name || !$dist_version) { # some kind of special install
if (-d "$dist/.git") {
$self->do_install_git($dist);
}
if (-f $dist) {
$self->do_install_archive($dist);
}
elsif ($dist =~ m/^(?:https?|ftp|file)/) { # more protocols needed?
$self->do_install_url($dist);
}
elsif ($dist =~ m/(?:perl-)?blead$/) {
$self->do_install_blead($dist);
}
else {
die $help_message;
}
}
elsif ($dist_name eq 'perl') {
$self->do_install_release($dist);
}
else {
die $help_message;
}
return;
}
sub do_install_archive {
my $self = shift;
my $dist_tarball_path = shift;
my $dist_version;
my $installation_name;
if ($dist_tarball_path =~ m{perl-?(5.+)\.tar\.(gz|bz2)\Z}) {
$dist_version = $1;
$installation_name = "perl-${dist_version}";
}
unless ($dist_version && $installation_name) {
die "Unable to determin perl version from archive filename.\n\nThe archive name should look like perl-5.x.y.tar.gz or perl-5.x.y.tar.bz2\n";
}
my $dist_extracted_path = $self->do_extract_tarball($dist_tarball_path);
$self->do_install_this($dist_extracted_path, $dist_version, $installation_name);
return;
}
sub do_install_this {
my ($self, $dist_extracted_dir, $dist_version, $as) = @_;
my @d_options = @{ $self->{D} };
my @u_options = @{ $self->{U} };
my @a_options = @{ $self->{A} };
$as = $self->{as} if $self->{as};
unshift @d_options, qq(prefix=$ROOT/perls/$as);
push @d_options, "usedevel" if $dist_version =~ /5\.1[13579]|git|blead/;
print "Installing $dist_extracted_dir into " . $self->path_with_tilde("$ROOT/perls/$as") . "\n";
print <<INSTALL if $self->{quiet} && !$self->{verbose};
This could take a while. You can run the following command on another shell to track the status:
tail -f @{[ $self->path_with_tilde($self->{log_file}) ]}
INSTALL
my $configure_flags = '-des';
$configure_flags = '-de';
# Test via "make test_harness" if available so we'll get
# automatic parallel testing via $HARNESS_OPTIONS. The
# "test_harness" target was added in 5.7.3, which was the last
# development release before 5.8.0.
my $test_target = "test";
if ($dist_version =~ /^5\.(\d+)\.(\d+)/
&& ($1 >= 8 || $1 == 7 && $2 == 3)) {
$test_target = "test_harness";
}
local $ENV{TEST_JOBS}=$self->{j}
if $test_target eq "test_harness" && ($self->{j}||1) > 1;
my $make = "make " . ($self->{j} ? "-j$self->{j}" : "");
my @install = $self->{notest} ? "make install" : ("make $test_target", "make install");
@install = join " && ", @install unless($self->{force});
my $cmd = join ";",
(
"cd $dist_extracted_dir",
"rm -f config.sh Policy.sh",
"patchperl",
"sh Configure $configure_flags " .
join( ' ',
( map { qq{'-D$_'} } @d_options ),
( map { qq{'-U$_'} } @u_options ),
( map { qq{'-A$_'} } @a_options ),
),
$dist_version =~ /^5\.(\d+)\.(\d+)/
&& ($1 < 8 || $1 == 8 && $2 < 9)
? ("$^X -i -nle 'print unless /command-line/' makefile x2p/makefile")
: (),
$make,
@install
);
if($self->{verbose}) {
$cmd = "($cmd) 2>&1 | tee $self->{log_file}";
print "$cmd\n" if $self->{verbose};
} else {
$cmd = "($cmd) >> '$self->{log_file}' 2>&1 ";
}
delete $ENV{$_} for qw(PERL5LIB PERL5OPT);
if (!system($cmd)) {
unless (-e "$ROOT/perls/$as/bin/perl") {
$self->run_command_symlink_executables($as);
}
print <<SUCCESS;
Installed $dist_extracted_dir as $as successfully. Run the following command to switch to it.
perlbrew switch $as
SUCCESS
}
else {
die <<FAIL;
Installing $dist_extracted_dir failed. See $self->{log_file} to see why.
If you want to force install the distribution, try:
perlbrew --force install $self->{dist_name}
FAIL
}
return;
}
sub format_perl_version {
my $self = shift;
my $version = shift;
return sprintf "%d.%d.%d",
substr( $version, 0, 1 ),
substr( $version, 2, 3 ),
substr( $version, 5 );
}
sub installed_perls {
my $self = shift;
my @result;
for (<$ROOT/perls/*>) {
my ($name) = $_ =~ m/\/([^\/]+$)/;
my $executable = catfile($_, 'bin', 'perl');
push @result, {
name => $name,
version => $self->format_perl_version(`$executable -e 'print \$]'`),
is_current => (current_perl eq $name),
is_external => 0
};
}
my $current_perl_executable = `which perl`;
$current_perl_executable =~ s/\n$//;
my $current_perl_executable_version;
for ( grep { -f $_ && -x $_ } uniq map { s/\/+$//; "$_/perl" } split(":", $self->env('PATH')) ) {
$current_perl_executable_version =
$self->format_perl_version(`$_ -e 'print \$]'`);
push @result, {
name => $_,
version => $current_perl_executable_version,
is_current => $current_perl_executable && ($_ eq $current_perl_executable),
is_external => 1
} unless index($_, $ROOT) == 0;
}
return @result;
}
sub is_installed {
my ($self, $name) = @_;
my @installed = grep { !$_->{is_external} } $self->installed_perls;
return grep { $name eq $_->{name} } @installed;
}
# Return a hash of PERLBREW_* variables
sub perlbrew_env {
my ($self, $perl) = @_;
my %env = (
PERLBREW_VERSION => $VERSION,
PERLBREW_PATH => "$ROOT/bin",
PERLBREW_ROOT => $ROOT
);
if ($perl) {
if(-d "$ROOT/perls/$perl/bin") {
$env{PERLBREW_PERL} = $perl;
$env{PERLBREW_PATH} .= ":$ROOT/perls/$perl/bin";
}
}
elsif ( $self->env("PERLBREW_PERL") ) {
$env{PERLBREW_PERL} = $self->env("PERLBREW_PERL");
$env{PERLBREW_PATH} .= ":$ROOT/perls/$env{PERLBREW_PERL}/bin";
}
return %env;
}