Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pre-install local::lib #1705

Merged
merged 1 commit into from
Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ The following Perl scripts are pre-installed for convenience.
- [Net::SSLeay](https://metacpan.org/dist/Net-SSLeay/view/lib/Net/SSLeay.pod)
- [IO::Socket::SSL](https://metacpan.org/dist/IO-Socket-SSL/view/lib/IO/Socket/SSL.pod)
- [Mozilla::CA](https://metacpan.org/pod/Mozilla::CA)
- [local::lib](https://metacpan.org/pod/local::lib)
- [Win32](https://metacpan.org/pod/Win32) (installed from CPAN in perl 5.8.3 or earlier. From perl 5.8.4, it is installed as a core module.)

## Actions::Core
Expand Down
3 changes: 3 additions & 0 deletions scripts/darwin/build.pl
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ sub run {

# Test::Harness
cpan_install('https://cpan.metacpan.org/authors/id/L/LE/LEONT/Test-Harness-3.48.tar.gz', 'Test-Harness', 'Test::Harness', '5.6.0', '5.8.3');

# local::lib
cpan_install('https://cpan.metacpan.org/authors/id/H/HA/HAARG/local-lib-2.000029.tar.gz', 'local-lib', 'local::lib', '5.6.0');
};

group "archiving" => sub {
Expand Down
3 changes: 3 additions & 0 deletions scripts/linux/build.pl
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ sub run {

# Test::Harness
cpan_install('https://cpan.metacpan.org/authors/id/L/LE/LEONT/Test-Harness-3.48.tar.gz', 'Test-Harness', 'Test::Harness', '5.6.0', '5.8.3');

# local::lib
cpan_install('https://cpan.metacpan.org/authors/id/H/HA/HAARG/local-lib-2.000029.tar.gz', 'local-lib', 'local::lib', '5.6.0');
};

group "archiving" => sub {
Expand Down
3 changes: 3 additions & 0 deletions scripts/windows/build.pl
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ sub run {

# Test::Harness
cpan_install('https://cpan.metacpan.org/authors/id/L/LE/LEONT/Test-Harness-3.48.tar.gz', 'Test-Harness', 'Test::Harness', '5.6.0', '5.8.3');

# local::lib
cpan_install('https://cpan.metacpan.org/authors/id/H/HA/HAARG/local-lib-2.000029.tar.gz', 'local-lib', 'local::lib', '5.6.0');
};

group "archiving" => sub {
Expand Down
Loading