perl: move CPAN loader wrappers to another namespace
[git.git] / perl / Git / LoadCPAN / Mail / Address.pm
blob879c2f5cd1030b7206283474b6f959df70ff01dc
1 package Git::LoadCPAN::Mail::Address;
2 use 5.008;
3 use strict;
4 use warnings;
6 =head1 NAME
8 Git::LoadCPAN::Mail::Address - Wrapper for the L<Mail::Address> module, in case it's not installed
10 =head1 DESCRIPTION
12 This module is only intended to be used for code shipping in the
13 C<git.git> repository. Use it for anything else at your peril!
15 =cut
17 eval {
18 require Mail::Address;
20 } or do {
21 require Git::FromCPAN::Mail::Address;