| package Git::LoadCPAN; |
| require v5.26; |
| use strict; |
| use warnings $ENV{GIT_PERL_FATAL_WARNINGS} ? qw(FATAL all) : (); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| use constant NO_PERL_CPAN_FALLBACKS_STR => '@' . 'NO_PERL_CPAN_FALLBACKS' . '@'; |
| use constant NO_PERL_CPAN_FALLBACKS => ( |
| q[] ne '' |
| and |
| q[] ne NO_PERL_CPAN_FALLBACKS_STR |
| ); |
|
|
| sub import { |
| shift; |
| my $caller = caller; |
| my %args = @_; |
| my $module = exists $args{module} ? delete $args{module} : die "BUG: Expected 'module' parameter!"; |
| my $import = exists $args{import} ? delete $args{import} : die "BUG: Expected 'import' parameter!"; |
| die "BUG: Too many arguments!" if keys %args; |
|
|
| |
| my $package_pm = $module; |
| $package_pm =~ s[::][/]g; |
| $package_pm .= '.pm'; |
| |
| eval { |
| require $package_pm; |
| 1; |
| } or do { |
| my $error = $@ || "Zombie Error"; |
| |
| if (NO_PERL_CPAN_FALLBACKS) { |
| chomp(my $error = sprintf <<'THEY_PROMISED', $module); |
| BUG: The '%s' module is not here, but NO_PERL_CPAN_FALLBACKS was set! |
| |
| Git needs this Perl module from the CPAN, and will by default ship |
| with a copy of it. This Git was built with NO_PERL_CPAN_FALLBACKS, |
| meaning that whoever built it promised to provide this module. |
| |
| You're seeing this error because they broke that promise, and we can't |
| load our fallback version, since we were asked not to install it. |
| |
| If you're seeing this error and didn't package Git yourself the |
| package you're using is broken, or your system is broken. This error |
| won't appear if Git is built without NO_PERL_CPAN_FALLBACKS (instead |
| we'll use our fallback version of the module). |
| THEY_PROMISED |
| die $error; |
| } |
| |
| my $Git_LoadCPAN_pm_path = $INC{"Git/LoadCPAN.pm"} || die "BUG: Should have our own path from %INC!"; |
| |
| require File::Basename; |
| my $Git_LoadCPAN_pm_root = File::Basename::dirname($Git_LoadCPAN_pm_path) || die "BUG: Can't figure out lib/Git dirname from '$Git_LoadCPAN_pm_path'!"; |
| |
| require File::Spec; |
| my $Git_pm_FromCPAN_root = File::Spec->catdir($Git_LoadCPAN_pm_root, '..', 'FromCPAN'); |
| die "BUG: '$Git_pm_FromCPAN_root' should be a directory!" unless -d $Git_pm_FromCPAN_root; |
| |
| local @INC = ($Git_pm_FromCPAN_root, @INC); |
| require $package_pm; |
| }; |
| |
| if ($import) { |
| no strict 'refs'; |
| *{"${caller}::import"} = sub { |
| shift; |
| use strict 'refs'; |
| unshift @_, $module; |
| goto &{"${module}::import"}; |
| }; |
| use strict 'refs'; |
| } |
| } |
| |
| 1; |
| |