don't try to create paths if we are deactivating
[p5sagit/local-lib.git] / lib / local / lib.pm
1 use strict;
2 use warnings;
3
4 package local::lib;
5
6 use 5.006;
7
8 use File::Spec ();
9 use File::Path ();
10 use Config;
11
12 our $VERSION = '1.008026'; # 1.8.26
13 $VERSION = eval $VERSION;
14
15 our @KNOWN_FLAGS = qw(--self-contained --deactivate --deactivate-all);
16
17 sub DEACTIVATE_ONE () { 1 }
18 sub DEACTIVATE_ALL () { 2 }
19
20 sub INTERPOLATE_ENV () { 1 }
21 sub LITERAL_ENV     () { 0 }
22
23 sub import {
24   my ($class, @args) = @_;
25
26   # Remember what PERL5LIB was when we started
27   my $perl5lib = $ENV{PERL5LIB} || '';
28
29   my %arg_store;
30   for my $arg (@args) {
31     # check for lethal dash first to stop processing before causing problems
32     # the fancy dash is U+2212 or \xE2\x88\x92
33     if ($arg =~ /\xE2\x88\x92/ or $arg =~ /−/) {
34       die <<'DEATH';
35 WHOA THERE! It looks like you've got some fancy dashes in your commandline!
36 These are *not* the traditional -- dashes that software recognizes. You
37 probably got these by copy-pasting from the perldoc for this module as
38 rendered by a UTF8-capable formatter. This most typically happens on an OS X
39 terminal, but can happen elsewhere too. Please try again after replacing the
40 dashes with normal minus signs.
41 DEATH
42     }
43     elsif(grep { $arg eq $_ } @KNOWN_FLAGS) {
44       (my $flag = $arg) =~ s/--//;
45       $arg_store{$flag} = 1;
46     }
47     elsif($arg =~ /^--/) {
48       die "Unknown import argument: $arg";
49     }
50     else {
51       # assume that what's left is a path
52       $arg_store{path} = $arg;
53     }
54   }
55
56   if($arg_store{'self-contained'}) {
57     die "FATAL: The local::lib --self-contained flag has never worked reliably and the original author, Mark Stosberg, was unable or unwilling to maintain it. As such, this flag has been removed from the local::lib codebase in order to prevent misunderstandings and potentially broken builds. The local::lib authors recommend that you look at the lib::core::only module shipped with this distribution in order to create a more robust environment that is equivalent to what --self-contained provided (although quite possibly not what you originally thought it provided due to the poor quality of the documentation, for which we apologise).\n";
58   }
59
60   my $deactivating = 0;
61   if ($arg_store{deactivate}) {
62     $deactivating = DEACTIVATE_ONE;
63   }
64   if ($arg_store{'deactivate-all'}) {
65     $deactivating = DEACTIVATE_ALL;
66   }
67
68   $arg_store{path} = $class->resolve_path($arg_store{path});
69   $class->setup_local_lib_for($arg_store{path}, $deactivating);
70
71   for (@INC) { # Untaint @INC
72     next if ref; # Skip entry if it is an ARRAY, CODE, blessed, etc.
73     m/(.*)/ and $_ = $1;
74   }
75 }
76
77 sub pipeline;
78
79 sub pipeline {
80   my @methods = @_;
81   my $last = pop(@methods);
82   if (@methods) {
83     \sub {
84       my ($obj, @args) = @_;
85       $obj->${pipeline @methods}(
86         $obj->$last(@args)
87       );
88     };
89   } else {
90     \sub {
91       shift->$last(@_);
92     };
93   }
94 }
95
96 =begin testing
97
98 #:: test pipeline
99
100 package local::lib;
101
102 { package Foo; sub foo { -$_[1] } sub bar { $_[1]+2 } sub baz { $_[1]+3 } }
103 my $foo = bless({}, 'Foo');
104 Test::More::ok($foo->${pipeline qw(foo bar baz)}(10) == -15);
105
106 =end testing
107
108 =cut
109
110 sub _uniq {
111     my %seen;
112     grep { ! $seen{$_}++ } @_;
113 }
114
115 sub resolve_path {
116   my ($class, $path) = @_;
117   $class->${pipeline qw(
118     resolve_relative_path
119     resolve_home_path
120     resolve_empty_path
121   )}($path);
122 }
123
124 sub resolve_empty_path {
125   my ($class, $path) = @_;
126   if (defined $path) {
127     $path;
128   } else {
129     '~/perl5';
130   }
131 }
132
133 =begin testing
134
135 #:: test classmethod setup
136
137 my $c = 'local::lib';
138
139 =end testing
140
141 =begin testing
142
143 #:: test classmethod
144
145 is($c->resolve_empty_path, '~/perl5');
146 is($c->resolve_empty_path('foo'), 'foo');
147
148 =end testing
149
150 =cut
151
152 sub resolve_home_path {
153   my ($class, $path) = @_;
154   return $path unless ($path =~ /^~/);
155   my ($user) = ($path =~ /^~([^\/]+)/); # can assume ^~ so undef for 'us'
156   my $tried_file_homedir;
157   my $homedir = do {
158     if (eval { require File::HomeDir } && $File::HomeDir::VERSION >= 0.65) {
159       $tried_file_homedir = 1;
160       if (defined $user) {
161         File::HomeDir->users_home($user);
162       } else {
163         File::HomeDir->my_home;
164       }
165     } else {
166       if (defined $user) {
167         (getpwnam $user)[7];
168       } else {
169         if (defined $ENV{HOME}) {
170           $ENV{HOME};
171         } else {
172           (getpwuid $<)[7];
173         }
174       }
175     }
176   };
177   unless (defined $homedir) {
178     require Carp;
179     Carp::croak(
180       "Couldn't resolve homedir for "
181       .(defined $user ? $user : 'current user')
182       .($tried_file_homedir ? '' : ' - consider installing File::HomeDir')
183     );
184   }
185   $path =~ s/^~[^\/]*/$homedir/;
186   $path;
187 }
188
189 sub resolve_relative_path {
190   my ($class, $path) = @_;
191   $path = File::Spec->rel2abs($path);
192 }
193
194 =begin testing
195
196 #:: test classmethod
197
198 local *File::Spec::rel2abs = sub { shift; 'FOO'.shift; };
199 is($c->resolve_relative_path('bar'),'FOObar');
200
201 =end testing
202
203 =cut
204
205 sub setup_local_lib_for {
206   my ($class, $path, $deactivating) = @_;
207
208   my $interpolate = LITERAL_ENV;
209   my @active_lls = $class->active_paths;
210
211   $class->ensure_dir_structure_for($path)
212     unless $deactivating;
213
214   # On Win32 directories often contain spaces. But some parts of the CPAN
215   # toolchain don't like that. To avoid this, GetShortPathName() gives us
216   # an alternate representation that has none.
217   # This only works if the directory already exists.
218   $path = Win32::GetShortPathName($path) if $^O eq 'MSWin32';
219
220   if (! $deactivating) {
221     if (@active_lls && $active_lls[0] eq $path) {
222       exit 0 if $0 eq '-';
223       return; # Asked to add what's already at the top of the stack
224     } elsif (grep { $_ eq $path} @active_lls) {
225       # Asked to add a dir that's lower in the stack -- so we remove it from
226       # where it is, and then add it back at the top.
227       $class->setup_env_hash_for($path, DEACTIVATE_ONE);
228       # Which means we can no longer output "PERL5LIB=...:$PERL5LIB" stuff
229       # anymore because we're taking something *out*.
230       $interpolate = INTERPOLATE_ENV;
231     }
232   }
233
234   if ($0 eq '-') {
235     $class->print_environment_vars_for($path, $deactivating, $interpolate);
236     exit 0;
237   } else {
238     $class->setup_env_hash_for($path, $deactivating);
239     my $arch_dir = $Config{archname};
240     @INC = _uniq(
241   (
242       # Inject $path/$archname for each path in PERL5LIB
243       map { ( File::Spec->catdir($_, $arch_dir), $_ ) }
244       split($Config{path_sep}, $ENV{PERL5LIB})
245   ),
246   @INC
247     );
248   }
249 }
250
251 sub install_base_bin_path {
252   my ($class, $path) = @_;
253   File::Spec->catdir($path, 'bin');
254 }
255
256 sub install_base_perl_path {
257   my ($class, $path) = @_;
258   File::Spec->catdir($path, 'lib', 'perl5');
259 }
260
261 sub install_base_arch_path {
262   my ($class, $path) = @_;
263   File::Spec->catdir($class->install_base_perl_path($path), $Config{archname});
264 }
265
266 sub ensure_dir_structure_for {
267   my ($class, $path) = @_;
268   unless (-d $path) {
269     warn "Attempting to create directory ${path}\n";
270   }
271   File::Path::mkpath($path);
272   return
273 }
274
275 sub guess_shelltype {
276   my $shellbin = 'sh';
277   if(defined $ENV{'SHELL'}) {
278       my @shell_bin_path_parts = File::Spec->splitpath($ENV{'SHELL'});
279       $shellbin = $shell_bin_path_parts[-1];
280   }
281   my $shelltype = do {
282       local $_ = $shellbin;
283       if(/csh/) {
284           'csh'
285       } else {
286           'bourne'
287       }
288   };
289
290   # Both Win32 and Cygwin have $ENV{COMSPEC} set.
291   if (defined $ENV{'COMSPEC'} && $^O ne 'cygwin') {
292       my @shell_bin_path_parts = File::Spec->splitpath($ENV{'COMSPEC'});
293       $shellbin = $shell_bin_path_parts[-1];
294          $shelltype = do {
295                  local $_ = $shellbin;
296                  if(/command\.com/) {
297                          'win32'
298                  } elsif(/cmd\.exe/) {
299                          'win32'
300                  } elsif(/4nt\.exe/) {
301                          'win32'
302                  } else {
303                          $shelltype
304                  }
305          };
306   }
307   return $shelltype;
308 }
309
310 sub print_environment_vars_for {
311   my ($class, $path, $deactivating, $interpolate) = @_;
312   print $class->environment_vars_string_for($path, $deactivating, $interpolate);
313 }
314
315 sub environment_vars_string_for {
316   my ($class, $path, $deactivating, $interpolate) = @_;
317   my @envs = $class->build_environment_vars_for($path, $deactivating, $interpolate);
318   my $out = '';
319
320   # rather basic csh detection, goes on the assumption that something won't
321   # call itself csh unless it really is. also, default to bourne in the
322   # pathological situation where a user doesn't have $ENV{SHELL} defined.
323   # note also that shells with funny names, like zoid, are assumed to be
324   # bourne.
325
326   my $shelltype = $class->guess_shelltype;
327
328   while (@envs) {
329     my ($name, $value) = (shift(@envs), shift(@envs));
330     $value =~ s/(\\")/\\$1/g if defined $value;
331     $out .= $class->${\"build_${shelltype}_env_declaration"}($name, $value);
332   }
333   return $out;
334 }
335
336 # simple routines that take two arguments: an %ENV key and a value. return
337 # strings that are suitable for passing directly to the relevant shell to set
338 # said key to said value.
339 sub build_bourne_env_declaration {
340   my $class = shift;
341   my($name, $value) = @_;
342   return defined($value) ? qq{export ${name}="${value}";\n} : qq{unset ${name};\n};
343 }
344
345 sub build_csh_env_declaration {
346   my $class = shift;
347   my($name, $value) = @_;
348   return defined($value) ? qq{setenv ${name} "${value}";\n} : qq{unsetenv ${name};\n};
349 }
350
351 sub build_win32_env_declaration {
352   my $class = shift;
353   my($name, $value) = @_;
354   return defined($value) ? qq{set ${name}=${value}\n} : qq{set ${name}=\n};
355 }
356
357 sub setup_env_hash_for {
358   my ($class, $path, $deactivating) = @_;
359   my %envs = $class->build_environment_vars_for($path, $deactivating, INTERPOLATE_ENV);
360   @ENV{keys %envs} = values %envs;
361 }
362
363 sub build_environment_vars_for {
364   my ($class, $path, $deactivating, $interpolate) = @_;
365
366   if ($deactivating == DEACTIVATE_ONE) {
367     return $class->build_deactivate_environment_vars_for($path, $interpolate);
368   } elsif ($deactivating == DEACTIVATE_ALL) {
369     return $class->build_deact_all_environment_vars_for($path, $interpolate);
370   } else {
371     return $class->build_activate_environment_vars_for($path, $interpolate);
372   }
373 }
374
375 # Build an environment value for a variable like PATH from a list of paths.
376 # References to existing variables are given as references to the variable name.
377 # Duplicates are removed.
378 #
379 # options:
380 # - interpolate: INTERPOLATE_ENV/LITERAL_ENV
381 # - exists: paths are included only if they exist (default: interpolate == INTERPOLATE_ENV)
382 # - filter: function to apply to each path do decide if it must be included
383 # - empty: the value to return in the case of empty value
384 my %ENV_LIST_VALUE_DEFAULTS = (
385     interpolate => INTERPOLATE_ENV,
386     exists => undef,
387     filter => sub { 1 },
388     empty => undef,
389 );
390 sub _env_list_value {
391   my $options = shift;
392   die(sprintf "unknown option '$_' at %s line %u\n", (caller)[1..2])
393     for grep { !exists $ENV_LIST_VALUE_DEFAULTS{$_} } keys %$options;
394   my %options = (%ENV_LIST_VALUE_DEFAULTS, %{ $options });
395   $options{exists} = $options{interpolate} == INTERPOLATE_ENV
396     unless defined $options{exists};
397
398   my %seen;
399
400   my $value = join($Config{path_sep}, map {
401       ref $_ ? ($^O eq 'MSWin32' ? "%${$_}%" : "\$${$_}") : $_
402     } grep {
403       ref $_ || (defined $_
404                  && length($_) > 0
405                  && !$seen{$_}++
406                  && $options{filter}->($_)
407                  && (!$options{exists} || -e $_))
408     } map {
409       if (ref $_ eq 'SCALAR' && $options{interpolate} == INTERPOLATE_ENV) {
410         defined $ENV{${$_}} ? (split /\Q$Config{path_sep}/, $ENV{${$_}}) : ()
411       } else {
412         $_
413       }
414     } @_);
415   return length($value) ? $value : $options{empty};
416 }
417
418 sub build_activate_environment_vars_for {
419   my ($class, $path, $interpolate) = @_;
420   return (
421     PERL_LOCAL_LIB_ROOT =>
422             _env_list_value(
423               { interpolate => $interpolate, exists => 0, empty => '' },
424               $path,
425               \'PERL_LOCAL_LIB_ROOT',
426             ),
427     PERL_MB_OPT => "--install_base " . _mb_escape_path($path),
428     PERL_MM_OPT => "INSTALL_BASE=" . _mm_escape_path($path),
429     PERL5LIB =>
430             _env_list_value(
431               { interpolate => $interpolate, exists => 0, empty => '' },
432               $class->install_base_perl_path($path),
433               \'PERL5LIB',
434             ),
435     PATH => _env_list_value(
436               { interpolate => $interpolate, exists => 0, empty => '' },
437         $class->install_base_bin_path($path),
438               \'PATH',
439             ),
440   )
441 }
442
443 sub _mm_escape_path {
444   my $path = shift;
445   $path =~ s/\\/\\\\\\\\/g;
446   if ($path =~ s/ /\\ /g) {
447     $path = qq{"\\"$path\\""};
448   }
449   return $path;
450 }
451
452 sub _mb_escape_path {
453   my $path = shift;
454   $path =~ s/\\/\\\\/g;
455   return qq{"$path"};
456 }
457
458 sub active_paths {
459   my ($class) = @_;
460
461   return () unless defined $ENV{PERL_LOCAL_LIB_ROOT};
462
463   return grep {
464     # screen out entries that aren't actually reflected in @INC
465     my $active_ll = $class->install_base_perl_path($_);
466     grep { $_ eq $active_ll } @INC
467   }
468   grep { $_ ne '' }
469   split /\Q$Config{path_sep}\E/, $ENV{PERL_LOCAL_LIB_ROOT};
470 }
471
472 sub build_deactivate_environment_vars_for {
473   my ($class, $path, $interpolate) = @_;
474
475   my @active_lls = $class->active_paths;
476
477   if (!grep { $_ eq $path } @active_lls) {
478     warn "Tried to deactivate inactive local::lib '$path'\n";
479     return ();
480   }
481
482   my $perl_path = $class->install_base_perl_path($path);
483   my $arch_path = $class->install_base_arch_path($path);
484   my $bin_path = $class->install_base_bin_path($path);
485
486
487   my %env = (
488     PERL_LOCAL_LIB_ROOT => _env_list_value(
489       {
490         exists => 0,
491       },
492       grep { $_ ne $path } @active_lls
493     ),
494     PERL5LIB => _env_list_value(
495       {
496         exists => 0,
497         filter => sub {
498           $_ ne $perl_path && $_ ne $arch_path
499         },
500       },
501       \'PERL5LIB',
502     ),
503     PATH => _env_list_value(
504       {
505         exists => 0,
506         filter => sub { $_ ne $bin_path },
507       },
508       \'PATH',
509     ),
510   );
511
512   # If removing ourselves from the "top of the stack", set install paths to
513   # correspond with the new top of stack.
514   if ($active_lls[0] eq $path) {
515     my $new_top = $active_lls[1];
516     $env{PERL_MB_OPT} = defined($new_top) ? "--install_base "._mb_escape_path($new_top) : undef;
517     $env{PERL_MM_OPT} = defined($new_top) ? "INSTALL_BASE="._mm_escape_path($new_top) : undef;
518   }
519
520   return %env;
521 }
522
523 sub build_deact_all_environment_vars_for {
524   my ($class, $path, $interpolate) = @_;
525
526   my @active_lls = $class->active_paths;
527
528   my %perl_paths = map { (
529       $class->install_base_perl_path($_) => 1,
530       $class->install_base_arch_path($_) => 1
531     ) } @active_lls;
532   my %bin_paths = map { (
533       $class->install_base_bin_path($_) => 1,
534     ) } @active_lls;
535
536   my %env = (
537     PERL_LOCAL_LIB_ROOT => undef,
538     PERL_MM_OPT => undef,
539     PERL_MB_OPT => undef,
540     PERL5LIB => _env_list_value(
541       {
542         exists => 0,
543         filter => sub {
544           ! scalar grep { exists $perl_paths{$_} } $_[0]
545         },
546       },
547       \'PERL5LIB'
548     ),
549     PATH => _env_list_value(
550       {
551         exists => 0,
552         filter => sub {
553           ! scalar grep { exists $bin_paths{$_} } $_[0]
554         },
555       },
556       \'PATH'
557     ),
558   );
559
560   return %env;
561 }
562
563 =begin testing
564
565 #:: test classmethod
566
567 File::Path::rmtree('t/var/splat');
568
569 $c->ensure_dir_structure_for('t/var/splat');
570
571 ok(-d 't/var/splat');
572
573 =end testing
574
575 =encoding utf8
576
577 =head1 NAME
578
579 local::lib - create and use a local lib/ for perl modules with PERL5LIB
580
581 =head1 SYNOPSIS
582
583 In code -
584
585   use local::lib; # sets up a local lib at ~/perl5
586
587   use local::lib '~/foo'; # same, but ~/foo
588
589   # Or...
590   use FindBin;
591   use local::lib "$FindBin::Bin/../support";  # app-local support library
592
593 From the shell -
594
595   # Install LWP and its missing dependencies to the '~/perl5' directory
596   perl -MCPAN -Mlocal::lib -e 'CPAN::install(LWP)'
597
598   # Just print out useful shell commands
599   $ perl -Mlocal::lib
600   export PERL_MB_OPT='--install_base /home/username/perl5'
601   export PERL_MM_OPT='INSTALL_BASE=/home/username/perl5'
602   export PERL5LIB='/home/username/perl5/lib/perl5/i386-linux:/home/username/perl5/lib/perl5'
603   export PATH="/home/username/perl5/bin:$PATH"
604
605 =head2 The bootstrapping technique
606
607 A typical way to install local::lib is using what is known as the
608 "bootstrapping" technique.  You would do this if your system administrator
609 hasn't already installed local::lib.  In this case, you'll need to install
610 local::lib in your home directory.
611
612 Even if you do have administrative privileges, you will still want to set up your
613 environment variables, as discussed in step 4. Without this, you would still
614 install the modules into the system CPAN installation and also your Perl scripts
615 will not use the lib/ path you bootstrapped with local::lib.
616
617 By default local::lib installs itself and the CPAN modules into ~/perl5.
618
619 Windows users must also see L</Differences when using this module under Win32>.
620
621 1. Download and unpack the local::lib tarball from CPAN (search for "Download"
622 on the CPAN page about local::lib).  Do this as an ordinary user, not as root
623 or administrator.  Unpack the file in your home directory or in any other
624 convenient location.
625
626 2. Run this:
627
628   perl Makefile.PL --bootstrap
629
630 If the system asks you whether it should automatically configure as much
631 as possible, you would typically answer yes.
632
633 In order to install local::lib into a directory other than the default, you need
634 to specify the name of the directory when you call bootstrap, as follows:
635
636   perl Makefile.PL --bootstrap=~/foo
637
638 3. Run this: (local::lib assumes you have make installed on your system)
639
640   make test && make install
641
642 4. Now we need to setup the appropriate environment variables, so that Perl
643 starts using our newly generated lib/ directory. If you are using bash or
644 any other Bourne shells, you can add this to your shell startup script this
645 way:
646
647   echo 'eval $(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)' >>~/.bashrc
648
649 If you are using C shell, you can do this as follows:
650
651   /bin/csh
652   echo $SHELL
653   /bin/csh
654   perl -I$HOME/perl5/lib/perl5 -Mlocal::lib >> ~/.cshrc
655
656 If you passed to bootstrap a directory other than default, you also need to give that as
657 import parameter to the call of the local::lib module like this way:
658
659   echo 'eval $(perl -I$HOME/foo/lib/perl5 -Mlocal::lib=$HOME/foo)' >>~/.bashrc
660
661 After writing your shell configuration file, be sure to re-read it to get the
662 changed settings into your current shell's environment. Bourne shells use
663 C<. ~/.bashrc> for this, whereas C shells use C<source ~/.cshrc>.
664
665 If you're on a slower machine, or are operating under draconian disk space
666 limitations, you can disable the automatic generation of manpages from POD when
667 installing modules by using the C<--no-manpages> argument when bootstrapping:
668
669   perl Makefile.PL --bootstrap --no-manpages
670
671 To avoid doing several bootstrap for several Perl module environments on the
672 same account, for example if you use it for several different deployed
673 applications independently, you can use one bootstrapped local::lib
674 installation to install modules in different directories directly this way:
675
676   cd ~/mydir1
677   perl -Mlocal::lib=./
678   eval $(perl -Mlocal::lib=./)  ### To set the environment for this shell alone
679   printenv                      ### You will see that ~/mydir1 is in the PERL5LIB
680   perl -MCPAN -e install ...    ### whatever modules you want
681   cd ../mydir2
682   ... REPEAT ...
683
684 If you are working with several C<local::lib> environments, you may want to
685 remove some of them from the current environment without disturbing the others.
686 You can deactivate one environment like this (using bourne sh):
687
688   eval $(perl -Mlocal::lib=--deactivate,~/path)
689
690 which will generate and run the commands needed to remove C<~/path> from your
691 various search paths. Whichever environment was B<activated most recently> will
692 remain the target for module installations. That is, if you activate
693 C<~/path_A> and then you activate C<~/path_B>, new modules you install will go
694 in C<~/path_B>. If you deactivate C<~/path_B> then modules will be installed
695 into C<~/pathA> -- but if you deactivate C<~/path_A> then they will still be
696 installed in C<~/pathB> because pathB was activated later.
697
698 You can also ask C<local::lib> to clean itself completely out of the current
699 shell's environment with the C<--deactivate-all> option.
700 For multiple environments for multiple apps you may need to include a modified
701 version of the C<< use FindBin >> instructions in the "In code" sample above.
702 If you did something like the above, you have a set of Perl modules at C<<
703 ~/mydir1/lib >>. If you have a script at C<< ~/mydir1/scripts/myscript.pl >>,
704 you need to tell it where to find the modules you installed for it at C<<
705 ~/mydir1/lib >>.
706
707 In C<< ~/mydir1/scripts/myscript.pl >>:
708
709   use strict;
710   use warnings;
711   use local::lib "$FindBin::Bin/..";  ### points to ~/mydir1 and local::lib finds lib
712   use lib "$FindBin::Bin/../lib";     ### points to ~/mydir1/lib
713
714 Put this before any BEGIN { ... } blocks that require the modules you installed.
715
716 =head2 Differences when using this module under Win32
717
718 To set up the proper environment variables for your current session of
719 C<CMD.exe>, you can use this:
720
721   C:\>perl -Mlocal::lib
722   set PERL_MB_OPT=--install_base C:\DOCUME~1\ADMINI~1\perl5
723   set PERL_MM_OPT=INSTALL_BASE=C:\DOCUME~1\ADMINI~1\perl5
724   set PERL5LIB=C:\DOCUME~1\ADMINI~1\perl5\lib\perl5;C:\DOCUME~1\ADMINI~1\perl5\lib\perl5\MSWin32-x86-multi-thread
725   set PATH=C:\DOCUME~1\ADMINI~1\perl5\bin;%PATH%
726
727   ### To set the environment for this shell alone
728   C:\>perl -Mlocal::lib > %TEMP%\tmp.bat && %TEMP%\tmp.bat && del %TEMP%\tmp.bat
729   ### instead of $(perl -Mlocal::lib=./)
730
731 If you want the environment entries to persist, you'll need to add then to the
732 Control Panel's System applet yourself or use L<App::local::lib::Win32Helper>.
733
734 The "~" is translated to the user's profile directory (the directory named for
735 the user under "Documents and Settings" (Windows XP or earlier) or "Users"
736 (Windows Vista or later)) unless $ENV{HOME} exists. After that, the home
737 directory is translated to a short name (which means the directory must exist)
738 and the subdirectories are created.
739
740 =head1 RATIONALE
741
742 The version of a Perl package on your machine is not always the version you
743 need.  Obviously, the best thing to do would be to update to the version you
744 need.  However, you might be in a situation where you're prevented from doing
745 this.  Perhaps you don't have system administrator privileges; or perhaps you
746 are using a package management system such as Debian, and nobody has yet gotten
747 around to packaging up the version you need.
748
749 local::lib solves this problem by allowing you to create your own directory of
750 Perl packages downloaded from CPAN (in a multi-user system, this would typically
751 be within your own home directory).  The existing system Perl installation is
752 not affected; you simply invoke Perl with special options so that Perl uses the
753 packages in your own local package directory rather than the system packages.
754 local::lib arranges things so that your locally installed version of the Perl
755 packages takes precedence over the system installation.
756
757 If you are using a package management system (such as Debian), you don't need to
758 worry about Debian and CPAN stepping on each other's toes.  Your local version
759 of the packages will be written to an entirely separate directory from those
760 installed by Debian.
761
762 =head1 DESCRIPTION
763
764 This module provides a quick, convenient way of bootstrapping a user-local Perl
765 module library located within the user's home directory. It also constructs and
766 prints out for the user the list of environment variables using the syntax
767 appropriate for the user's current shell (as specified by the C<SHELL>
768 environment variable), suitable for directly adding to one's shell
769 configuration file.
770
771 More generally, local::lib allows for the bootstrapping and usage of a
772 directory containing Perl modules outside of Perl's C<@INC>. This makes it
773 easier to ship an application with an app-specific copy of a Perl module, or
774 collection of modules. Useful in cases like when an upstream maintainer hasn't
775 applied a patch to a module of theirs that you need for your application.
776
777 On import, local::lib sets the following environment variables to appropriate
778 values:
779
780 =over 4
781
782 =item PERL_MB_OPT
783
784 =item PERL_MM_OPT
785
786 =item PERL5LIB
787
788 =item PATH
789
790 PATH is appended to, rather than clobbered.
791
792 =back
793
794 These values are then available for reference by any code after import.
795
796 =head1 CREATING A SELF-CONTAINED SET OF MODULES
797
798 See L<lib::core::only> for one way to do this - but note that
799 there are a number of caveats, and the best approach is always to perform a
800 build against a clean perl (i.e. site and vendor as close to empty as possible).
801
802 =head1 OPTIONS
803
804 Options are values that can be passed to the C<local::lib> import besides the
805 directory to use. They are specified as C<use local::lib '--option'[, path];>
806 or C<perl -Mlocal::lib=--option[,path]>.
807
808 =head2 --deactivate
809
810 Remove the chosen path (or the default path) from the module search paths if it
811 was added by C<local::lib>, instead of adding it.
812
813 =head2 --deactivate-all
814
815 Remove all directories that were added to search paths by C<local::lib> from the
816 search paths.
817
818 =head1 METHODS
819
820 =head2 ensure_dir_structure_for
821
822 =over 4
823
824 =item Arguments: $path
825
826 =item Return value: None
827
828 =back
829
830 Attempts to create the given path, and all required parent directories. Throws
831 an exception on failure.
832
833 =head2 print_environment_vars_for
834
835 =over 4
836
837 =item Arguments: $path
838
839 =item Return value: None
840
841 =back
842
843 Prints to standard output the variables listed above, properly set to use the
844 given path as the base directory.
845
846 =head2 build_environment_vars_for
847
848 =over 4
849
850 =item Arguments: $path, $interpolate
851
852 =item Return value: \%environment_vars
853
854 =back
855
856 Returns a hash with the variables listed above, properly set to use the
857 given path as the base directory.
858
859 =head2 setup_env_hash_for
860
861 =over 4
862
863 =item Arguments: $path
864
865 =item Return value: None
866
867 =back
868
869 Constructs the C<%ENV> keys for the given path, by calling
870 L</build_environment_vars_for>.
871
872 =head2 active_paths
873
874 =over 4
875
876 =item Arguments: None
877
878 =item Return value: @paths
879
880 =back
881
882 Returns a list of active C<local::lib> paths, according to the
883 C<PERL_LOCAL_LIB_ROOT> environment variable and verified against
884 what is really in C<@INC>.
885
886 =head2 install_base_perl_path
887
888 =over 4
889
890 =item Arguments: $path
891
892 =item Return value: $install_base_perl_path
893
894 =back
895
896 Returns a path describing where to install the Perl modules for this local
897 library installation. Appends the directories C<lib> and C<perl5> to the given
898 path.
899
900 =head2 install_base_arch_path
901
902 =over 4
903
904 =item Arguments: $path
905
906 =item Return value: $install_base_arch_path
907
908 =back
909
910 Returns a path describing where to install the architecture-specific Perl
911 modules for this local library installation. Based on the
912 L</install_base_perl_path> method's return value, and appends the value of
913 C<$Config{archname}>.
914
915 =head2 install_base_bin_path
916
917 =over 4
918
919 =item Arguments: $path
920
921 =item Return value: $install_base_bin_path
922
923 =back
924
925 Returns a path describing where to install the executable programs for this
926 local library installation. Based on the L</install_base_perl_path> method's
927 return value, and appends the directory C<bin>.
928
929 =head2 resolve_empty_path
930
931 =over 4
932
933 =item Arguments: $path
934
935 =item Return value: $base_path
936
937 =back
938
939 Builds and returns the base path into which to set up the local module
940 installation. Defaults to C<~/perl5>.
941
942 =head2 resolve_home_path
943
944 =over 4
945
946 =item Arguments: $path
947
948 =item Return value: $home_path
949
950 =back
951
952 Attempts to find the user's home directory. If installed, uses C<File::HomeDir>
953 for this purpose. If no definite answer is available, throws an exception.
954
955 =head2 resolve_relative_path
956
957 =over 4
958
959 =item Arguments: $path
960
961 =item Return value: $absolute_path
962
963 =back
964
965 Translates the given path into an absolute path.
966
967 =head2 resolve_path
968
969 =over 4
970
971 =item Arguments: $path
972
973 =item Return value: $absolute_path
974
975 =back
976
977 Calls the following in a pipeline, passing the result from the previous to the
978 next, in an attempt to find where to configure the environment for a local
979 library installation: L</resolve_empty_path>, L</resolve_home_path>,
980 L</resolve_relative_path>. Passes the given path argument to
981 L</resolve_empty_path> which then returns a result that is passed to
982 L</resolve_home_path>, which then has its result passed to
983 L</resolve_relative_path>. The result of this final call is returned from
984 L</resolve_path>.
985
986 =head1 A WARNING ABOUT UNINST=1
987
988 Be careful about using local::lib in combination with "make install UNINST=1".
989 The idea of this feature is that will uninstall an old version of a module
990 before installing a new one. However it lacks a safety check that the old
991 version and the new version will go in the same directory. Used in combination
992 with local::lib, you can potentially delete a globally accessible version of a
993 module while installing the new version in a local place. Only combine "make
994 install UNINST=1" and local::lib if you understand these possible consequences.
995
996 =head1 LIMITATIONS
997
998 =over 4
999
1000 =item * The perl toolchain is unable to handle directory names with spaces in it,
1001 so you can't put your local::lib bootstrap into a directory with spaces. What
1002 you can do is moving your local::lib to a directory with spaces B<after> you
1003 installed all modules inside your local::lib bootstrap. But be aware that you
1004 can't update or install CPAN modules after the move.
1005
1006 =item * Rather basic shell detection. Right now anything with csh in its name is
1007 assumed to be a C shell or something compatible, and everything else is assumed
1008 to be Bourne, except on Win32 systems. If the C<SHELL> environment variable is
1009 not set, a Bourne-compatible shell is assumed.
1010
1011 =item * Bootstrap is a hack and will use CPAN.pm for ExtUtils::MakeMaker even if you
1012 have CPANPLUS installed.
1013
1014 =item * Kills any existing PERL5LIB, PERL_MM_OPT or PERL_MB_OPT.
1015
1016 =item * Should probably auto-fixup CPAN config if not already done.
1017
1018 =back
1019
1020 Patches very much welcome for any of the above.
1021
1022 =over 4
1023
1024 =item * On Win32 systems, does not have a way to write the created environment variables
1025 to the registry, so that they can persist through a reboot.
1026
1027 =back
1028
1029 =head1 TROUBLESHOOTING
1030
1031 If you've configured local::lib to install CPAN modules somewhere in to your
1032 home directory, and at some point later you try to install a module with C<cpan
1033 -i Foo::Bar>, but it fails with an error like: C<Warning: You do not have
1034 permissions to install into /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux at
1035 /usr/lib64/perl5/5.8.8/Foo/Bar.pm> and buried within the install log is an
1036 error saying C<'INSTALL_BASE' is not a known MakeMaker parameter name>, then
1037 you've somehow lost your updated ExtUtils::MakeMaker module.
1038
1039 To remedy this situation, rerun the bootstrapping procedure documented above.
1040
1041 Then, run C<rm -r ~/.cpan/build/Foo-Bar*>
1042
1043 Finally, re-run C<cpan -i Foo::Bar> and it should install without problems.
1044
1045 =head1 ENVIRONMENT
1046
1047 =over 4
1048
1049 =item SHELL
1050
1051 =item COMSPEC
1052
1053 local::lib looks at the user's C<SHELL> environment variable when printing out
1054 commands to add to the shell configuration file.
1055
1056 On Win32 systems, C<COMSPEC> is also examined.
1057
1058 =back
1059
1060 =head1 SEE ALSO
1061
1062 =over 4
1063
1064 =item * L<Perl Advent article, 2011|http://perladvent.org/2011/2011-12-01.html>
1065
1066 =back
1067
1068 =head1 SUPPORT
1069
1070 IRC:
1071
1072     Join #local-lib on irc.perl.org.
1073
1074 =head1 AUTHOR
1075
1076 Matt S Trout <mst@shadowcat.co.uk> http://www.shadowcat.co.uk/
1077
1078 auto_install fixes kindly sponsored by http://www.takkle.com/
1079
1080 =head1 CONTRIBUTORS
1081
1082 Patches to correctly output commands for csh style shells, as well as some
1083 documentation additions, contributed by Christopher Nehren <apeiron@cpan.org>.
1084
1085 Doc patches for a custom local::lib directory, more cleanups in the english
1086 documentation and a L<german documentation|POD2::DE::local::lib> contributed by Torsten Raudssus
1087 <torsten@raudssus.de>.
1088
1089 Hans Dieter Pearcey <hdp@cpan.org> sent in some additional tests for ensuring
1090 things will install properly, submitted a fix for the bug causing problems with
1091 writing Makefiles during bootstrapping, contributed an example program, and
1092 submitted yet another fix to ensure that local::lib can install and bootstrap
1093 properly. Many, many thanks!
1094
1095 pattern of Freenode IRC contributed the beginnings of the Troubleshooting
1096 section. Many thanks!
1097
1098 Patch to add Win32 support contributed by Curtis Jewell <csjewell@cpan.org>.
1099
1100 Warnings for missing PATH/PERL5LIB (as when not running interactively) silenced
1101 by a patch from Marco Emilio Poleggi.
1102
1103 Mark Stosberg <mark@summersault.com> provided the code for the now deleted
1104 '--self-contained' option.
1105
1106 Documentation patches to make win32 usage clearer by
1107 David Mertens <dcmertens.perl@gmail.com> (run4flat).
1108
1109 Brazilian L<portuguese translation|POD2::PT_BR::local::lib> and minor doc patches contributed by Breno
1110 G. de Oliveira <garu@cpan.org>.
1111
1112 Improvements to stacking multiple local::lib dirs and removing them from the
1113 environment later on contributed by Andrew Rodland <arodland@cpan.org>.
1114
1115 Patch for Carp version mismatch contributed by Hakim Cassimally <osfameron@cpan.org>.
1116
1117 =head1 COPYRIGHT
1118
1119 Copyright (c) 2007 - 2010 the local::lib L</AUTHOR> and L</CONTRIBUTORS> as
1120 listed above.
1121
1122 =head1 LICENSE
1123
1124 This is free software; you can redistribute it and/or modify it under
1125 the same terms as the Perl 5 programming language system itself.
1126
1127 =cut
1128
1129 1;