source: general/prog/perl-core-modules.txt@ 5f1d5fa

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 5f1d5fa was 4a7a19b, checked in by Ken Moffat <ken@…>, 8 years ago

Perl Modules:
· Remove optional Encode deps from MIME::Charset
· Delete all commented modules
· Add text file of modules in core perl known to be referenced in Makefile.PL files

so that adding a new module will be less prone to adding a core dependency.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17886 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 1.9 KB
Line 
1This is an attempt to make it easier to determine dependencies for perl modules
2by reading Makefile.PL or Build.PL and (sometimes) by reading the testscripts.
3
4It is a list of modules in core perl-5.24.0 which are deps for modules I have
5looked at. Occasionally, a module might need a newer version than what is in
6the current perl release. Usually, that only affects modules used by
7biblatex-biber.
8
9The '::' translates to '/' when looking at a log of what got installed,
10but some are slightly different (library, not pm ?) and some of the
11modules are in the Arch-OS (x86_64-linux) directory.
12
13If you see 'eval' in a Makefile.PL or in a test, it implies that the module
14may be optional. There are one or two exceptions in Makefile.PLs where a
15module is only needed with certain versions of another module
16
17This list is in alphabetical order, with digits and '::' after letters,
18NOT ASCII order
19
20B
21B::Deparse
22base
23blib
24bytes
25Carp
26Config
27Config::Autoconf
28constant
29CPAN::Meta
30CPAN::Meta::Prereqs
31CPAN::Meta::Requirements
32Cwd
33Data::Dumper
34Devel::Peek
35Dynaloader
36Encode
37Env
38Exporter
39ExtUtils::CBuilder
40ExtUtils::LibBuilder
41ExtUtils::MakeMaker
42ExtUtils::MM_Unix
43Fcntl
44File::Basename
45File::Compare
46File::Copy
47File::Find
48File::Glob
49File::Path
50File::Spec
51File::Spec::Functions
52File::Temp
53File::Which
54FileHandle
55FindBin
56Getopt::Long
57Hash::Util
58if
59integer
60IO::File
61IO::Handle
62IO::Socket::IP
63IPC::Cmd
64IPC::Open2
65IPC::Open3
66JSON::PP
67lib
68List::Util
69Math::BigInt
70Module::Metadata
71open
72overload
73parent
74PerlIO
75Pod::Simple
76POSIX
77re
78Scalar::Util
79Storable
80strict
81Symbol
82Sys::Hostname
83Test
84Test::Builder
85Test::Builder::Module
86Test::Builder::Tester
87Test::Harness
88Test::More
89Test::Tester
90Text::ParseWords
91Tie::Array
92Tie::Hash
93Time::HighRes
94Time::Local
95Unicode::Collate
96Unicode::Normalize
97utf8
98vars
99version
100warnings
101warnings::register
102XSLoader
103
104Any reference to inc:: in the Makefile.PL means that a module used
105during the build or install is s h ipped within the tarball.
106
Note: See TracBrowser for help on using the repository browser.