home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _797a3c607285d6e56360cc95dff643e0 < prev    next >
Text File  |  2000-03-23  |  33KB  |  639 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>CPAN - query, download and build perl modules from CPAN sites</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> CPAN - query, download and build perl modules from CPAN sites</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#interactive mode">Interactive Mode</A></LI>
  28.         <LI><A HREF="#cpan::shell">CPAN::Shell</A></LI>
  29.         <LI><A HREF="#autobundle">autobundle</A></LI>
  30.         <LI><A HREF="#recompile">recompile</A></LI>
  31.         <LI><A HREF="#the four cpan::* classes: author, bundle, module, distribution">The four <CODE>CPAN::*</CODE> Classes: Author, Bundle, Module, Distribution</A></LI>
  32.         <LI><A HREF="#programmers interface">Programmer&39;s interface</A></LI>
  33.         <LI><A HREF="#methods in the four classes">Methods in the four Classes</A></LI>
  34.         <LI><A HREF="#cache manager">Cache Manager</A></LI>
  35.         <LI><A HREF="#bundles">Bundles</A></LI>
  36.         <LI><A HREF="#prerequisites">Prerequisites</A></LI>
  37.         <LI><A HREF="#finding packages and version">Finding packages and VERSION</A></LI>
  38.         <LI><A HREF="#debugging">Debugging</A></LI>
  39.         <LI><A HREF="#floppy, zip, offline mode">Floppy, Zip, Offline Mode</A></LI>
  40.     </UL>
  41.  
  42.     <LI><A HREF="#configuration">CONFIGURATION</A></LI>
  43.     <UL>
  44.  
  45.         <LI><A HREF="#note on urllist parameter's format">Note on urllist parameter's format</A></LI>
  46.         <LI><A HREF="#urllist parameter has cdrom support">urllist parameter has CD-ROM support</A></LI>
  47.     </UL>
  48.  
  49.     <LI><A HREF="#security">SECURITY</A></LI>
  50.     <LI><A HREF="#export">EXPORT</A></LI>
  51.     <LI><A HREF="#populate an installation with lots of modules">POPULATE AN INSTALLATION WITH LOTS OF MODULES</A></LI>
  52.     <LI><A HREF="#working with cpan.pm behind firewalls">WORKING WITH CPAN.pm BEHIND FIREWALLS</A></LI>
  53.     <LI><A HREF="#bugs">BUGS</A></LI>
  54.     <LI><A HREF="#author">AUTHOR</A></LI>
  55.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  56. </UL>
  57. <!-- INDEX END -->
  58.  
  59. <HR>
  60. <P>
  61. <H1><A NAME="name">NAME</A></H1>
  62. <P>CPAN - query, download and build perl modules from CPAN sites</P>
  63. <P>
  64. <HR>
  65. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  66. <UL>
  67. <LI>Linux</LI>
  68. <LI>Solaris</LI>
  69. <LI>Windows</LI>
  70. </UL>
  71. <HR>
  72. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  73. <P>Interactive mode:</P>
  74. <PRE>
  75.   perl -MCPAN -e shell;</PRE>
  76. <P>Batch mode:</P>
  77. <PRE>
  78.   use CPAN;</PRE>
  79. <PRE>
  80.   autobundle, clean, install, make, recompile, test</PRE>
  81. <P>
  82. <HR>
  83. <H1><A NAME="description">DESCRIPTION</A></H1>
  84. <P>The CPAN module is designed to automate the make and install of perl
  85. modules and extensions. It includes some searching capabilities and
  86. knows how to use Net::FTP or LWP (or lynx or an external ftp client)
  87. to fetch the raw data from the net.</P>
  88. <P>Modules are fetched from one or more of the mirrored CPAN
  89. (Comprehensive Perl Archive Network) sites and unpacked in a dedicated
  90. directory.</P>
  91. <P>The CPAN module also supports the concept of named and versioned
  92. <EM>bundles</EM> of modules. Bundles simplify the handling of sets of
  93. related modules. See Bundles below.</P>
  94. <P>The package contains a session manager and a cache manager. There is
  95. no status retained between sessions. The session manager keeps track
  96. of what has been fetched, built and installed in the current
  97. session. The cache manager keeps track of the disk space occupied by
  98. the make processes and deletes excess space according to a simple FIFO
  99. mechanism.</P>
  100. <P>For extended searching capabilities there's a plugin for CPAN available,
  101. <A HREF="../CPAN/WAIT.html">the CPAN::WAIT manpage</A>. <CODE>CPAN::WAIT</CODE> is a full-text search engine that indexes
  102. all documents available in CPAN authors directories. If <CODE>CPAN::WAIT</CODE>
  103. is installed on your system, the interactive shell of <CPAN.pm> will
  104. enable the <CODE>wq</CODE>, <CODE>wr</CODE>, <CODE>wd</CODE>, <CODE>wl</CODE>, and <CODE>wh</CODE> commands which send
  105. queries to the WAIT server that has been configured for your
  106. installation.</P>
  107. <P>All other methods provided are accessible in a programmer style and in an
  108. interactive shell style.</P>
  109. <P>
  110. <H2><A NAME="interactive mode">Interactive Mode</A></H2>
  111. <P>The interactive mode is entered by running</P>
  112. <PRE>
  113.     perl -MCPAN -e shell</PRE>
  114. <P>which puts you into a readline interface. You will have the most fun if
  115. you install Term::ReadKey and Term::ReadLine to enjoy both history and
  116. command completion.</P>
  117. <P>Once you are on the command line, type 'h' and the rest should be
  118. self-explanatory.</P>
  119. <P>The most common uses of the interactive modes are</P>
  120. <DL>
  121. <DT><STRONG><A NAME="item_Searching_for_authors%2C_bundles%2C_distribution_f">Searching for authors, bundles, distribution files and modules</A></STRONG><BR>
  122. <DD>
  123. There are corresponding one-letter commands <CODE>a</CODE>, <CODE>b</CODE>, <CODE>d</CODE>, and <A HREF="../lib/Pod/perlfunc.html#item_m"><CODE>m</CODE></A>
  124. for each of the four categories and another, <CODE>i</CODE> for any of the
  125. mentioned four. Each of the four entities is implemented as a class
  126. with slightly differing methods for displaying an object.
  127. <P>Arguments you pass to these commands are either strings exactly matching
  128. the identification string of an object or regular expressions that are
  129. then matched case-insensitively against various attributes of the
  130. objects. The parser recognizes a regular expression only if you
  131. enclose it between two slashes.</P>
  132. <P>The principle is that the number of found objects influences how an
  133. item is displayed. If the search finds one item, the result is
  134. displayed with the rather verbose method <CODE>as_string</CODE>, but if we find
  135. more than one, we display each object with the terse method
  136. <as_glimpse>.</P>
  137. <P></P>
  138. <DT><STRONG><A NAME="item_make%2C_test%2C_install%2C_clean_modules_or_distri">make, test, install, clean  modules or distributions</A></STRONG><BR>
  139. <DD>
  140. These commands take any number of arguments and investigate what is
  141. necessary to perform the action. If the argument is a distribution
  142. file name (recognized by embedded slashes), it is processed. If it is
  143. a module, CPAN determines the distribution file in which this module
  144. is included and processes that, following any dependencies named in
  145. the module's Makefile.PL (this behavior is controlled by
  146. <EM>prerequisites_policy</EM>.)
  147. <P>Any <CODE>make</CODE> or <CODE>test</CODE> are run unconditionally. An</P>
  148. <PRE>
  149.   install <distribution_file></PRE>
  150. <P>also is run unconditionally. But for</P>
  151. <PRE>
  152.   install <module></PRE>
  153. <P>CPAN checks if an install is actually needed for it and prints
  154. <EM>module up to date</EM> in the case that the distribution file containing
  155. the module doesn&39;t need to be updated.</P>
  156. <P>CPAN also keeps track of what it has done within the current session
  157. and doesn&39;t try to build a package a second time regardless if it
  158. succeeded or not. The <CODE>force</CODE> command takes as a first argument the
  159. method to invoke (currently: <CODE>make</CODE>, <CODE>test</CODE>, or <CODE>install</CODE>) and executes the
  160. command from scratch.</P>
  161. <P>Example:</P>
  162. <PRE>
  163.     cpan> install OpenGL
  164.     OpenGL is up to date.
  165.     cpan> force install OpenGL
  166.     Running make
  167.     OpenGL-0.4/
  168.     OpenGL-0.4/COPYRIGHT
  169.     [...]</PRE>
  170. <P>A <CODE>clean</CODE> command results in a</P>
  171. <PRE>
  172.   make clean</PRE>
  173. <P>being executed within the distribution file's working directory.</P>
  174. <P></P>
  175. <DT><STRONG><A NAME="item_get%2C_readme%2C_look_module_or_distribution">get, readme, look module or distribution</A></STRONG><BR>
  176. <DD>
  177. <CODE>get</CODE> downloads a distribution file without further action. <CODE>readme</CODE>
  178. displays the README file of the associated distribution. <CODE>Look</CODE> gets
  179. and untars (if not yet done) the distribution file, changes to the
  180. appropriate directory and opens a subshell process in that directory.
  181. <P></P>
  182. <DT><STRONG><A NAME="item_Signals">Signals</A></STRONG><BR>
  183. <DD>
  184. CPAN.pm installs signal handlers for SIGINT and SIGTERM. While you are
  185. in the cpan-shell it is intended that you can press <CODE>^C</CODE> anytime and
  186. return to the cpan-shell prompt. A SIGTERM will cause the cpan-shell
  187. to clean up and leave the shell loop. You can emulate the effect of a
  188. SIGTERM by sending two consecutive SIGINTs, which usually means by
  189. pressing <CODE>^C</CODE> twice.
  190. <P>CPAN.pm ignores a SIGPIPE. If the user sets inactivity_timeout, a
  191. SIGALRM is used during the run of the <CODE>perl Makefile.PL</CODE> subprocess.</P>
  192. <P></P></DL>
  193. <P>
  194. <H2><A NAME="cpan::shell">CPAN::Shell</A></H2>
  195. <P>The commands that are available in the shell interface are methods in
  196. the package CPAN::Shell. If you enter the shell command, all your
  197. input is split by the Text::ParseWords::shellwords() routine which
  198. acts like most shells do. The first word is being interpreted as the
  199. method to be called and the rest of the words are treated as arguments
  200. to this method. Continuation lines are supported if a line ends with a
  201. literal backslash.</P>
  202. <P>
  203. <H2><A NAME="autobundle">autobundle</A></H2>
  204. <P><CODE>autobundle</CODE> writes a bundle file into the
  205. <CODE>$CPAN::Config->{cpan_home}/Bundle</CODE> directory. The file contains
  206. a list of all modules that are both available from CPAN and currently
  207. installed within @INC. The name of the bundle file is based on the
  208. current date and a counter.</P>
  209. <P>
  210. <H2><A NAME="recompile">recompile</A></H2>
  211. <P><CODE>recompile()</CODE> is a very special command in that it takes no argument and
  212. runs the make/test/install cycle with brute force over all installed
  213. dynamically loadable extensions (aka XS modules) with 'force' in
  214. effect. The primary purpose of this command is to finish a network
  215. installation. Imagine, you have a common source tree for two different
  216. architectures. You decide to do a completely independent fresh
  217. installation. You start on one architecture with the help of a Bundle
  218. file produced earlier. CPAN installs the whole Bundle for you, but
  219. when you try to repeat the job on the second architecture, CPAN
  220. responds with a <CODE>"Foo up to date"</CODE> message for all modules. So you
  221. invoke CPAN's recompile on the second architecture and you&39;re done.</P>
  222. <P>Another popular use for <CODE>recompile</CODE> is to act as a rescue in case your
  223. perl breaks binary compatibility. If one of the modules that CPAN uses
  224. is in turn depending on binary compatibility (so you cannot run CPAN
  225. commands), then you should try the CPAN::Nox module for recovery.</P>
  226. <P>
  227. <H2><A NAME="the four cpan::* classes: author, bundle, module, distribution">The four <CODE>CPAN::*</CODE> Classes: Author, Bundle, Module, Distribution</A></H2>
  228. <P>Although it may be considered internal, the class hierarchy does matter
  229. for both users and programmer. CPAN.pm deals with above mentioned four
  230. classes, and all those classes share a set of methods. A classical
  231. single polymorphism is in effect. A metaclass object registers all
  232. objects of all kinds and indexes them with a string. The strings
  233. referencing objects have a separated namespace (well, not completely
  234. separated):</P>
  235. <PRE>
  236.          Namespace                         Class</PRE>
  237. <PRE>
  238.    words containing a "/" (slash)      Distribution
  239.     words starting with Bundle::          Bundle
  240.           everything else            Module or Author</PRE>
  241. <P>Modules know their associated Distribution objects. They always refer
  242. to the most recent official release. Developers may mark their releases
  243. as unstable development versions (by inserting an underbar into the
  244. visible version number), so the really hottest and newest distribution
  245. file is not always the default.  If a module Foo circulates on CPAN in
  246. both version 1.23 and 1.23_90, CPAN.pm offers a convenient way to
  247. install version 1.23 by saying</P>
  248. <PRE>
  249.     install Foo</PRE>
  250. <P>This would install the complete distribution file (say
  251. BAR/Foo-1.23.tar.gz) with all accompanying material. But if you would
  252. like to install version 1.23_90, you need to know where the
  253. distribution file resides on CPAN relative to the authors/id/
  254. directory. If the author is BAR, this might be BAR/Foo-1.23_90.tar.gz;
  255. so you would have to say</P>
  256. <PRE>
  257.     install BAR/Foo-1.23_90.tar.gz</PRE>
  258. <P>The first example will be driven by an object of the class
  259. CPAN::Module, the second by an object of class CPAN::Distribution.</P>
  260. <P>
  261. <H2><A NAME="programmers interface">Programmer&39;s interface</A></H2>
  262. <P>If you do not enter the shell, the available shell commands are both
  263. available as methods (<CODE>CPAN::Shell->install(...)</CODE>) and as
  264. functions in the calling package (<CODE>install(...)</CODE>).</P>
  265. <P>There's currently only one class that has a stable interface -
  266. CPAN::Shell. All commands that are available in the CPAN shell are
  267. methods of the class CPAN::Shell. Each of the commands that produce
  268. listings of modules (<CODE>r</CODE>, <CODE>autobundle</CODE>, <CODE>u</CODE>) also return a list of
  269. the IDs of all modules within the list.</P>
  270. <DL>
  271. <DT><STRONG><A NAME="item_expand"><CODE>expand($type,@things)</CODE></A></STRONG><BR>
  272. <DD>
  273. The IDs of all objects available within a program are strings that can
  274. be expanded to the corresponding real objects with the
  275. <A HREF="#item_expand"><CODE>CPAN::Shell->expand("Module",@things)</CODE></A> method. Expand returns a
  276. list of CPAN::Module objects according to the <CODE>@things</CODE> arguments
  277. given. In scalar context it only returns the first element of the
  278. list.
  279. <P></P>
  280. <DT><STRONG><A NAME="item_Programming_Examples">Programming Examples</A></STRONG><BR>
  281. <DD>
  282. This enables the programmer to do operations that combine
  283. functionalities that are available in the shell.
  284. <PRE>
  285.     # install everything that is outdated on my disk:
  286.     perl -MCPAN -e 'CPAN::Shell->install(CPAN::Shell->r)'</PRE>
  287. <PRE>
  288.     # install my favorite programs if necessary:
  289.     for $mod (qw(Net::FTP MD5 Data::Dumper)){
  290.         my $obj = CPAN::Shell->expand('Module',$mod);
  291.         $obj->install;
  292.     }</PRE>
  293. <PRE>
  294.     # list all modules on my disk that have no VERSION number
  295.     for $mod (CPAN::Shell->expand("Module","/./")){
  296.         next unless $mod->inst_file;
  297.         # MakeMaker convention for undefined $VERSION:
  298.         next unless $mod->inst_version eq "undef";
  299.         print "No VERSION in ", $mod->id, "\n";
  300.     }</PRE>
  301. <P>Or if you want to write a cronjob to watch The CPAN, you could list
  302. all modules that need updating:</P>
  303. <PRE>
  304.     perl -e 'use CPAN; CPAN::Shell->r;'</PRE>
  305. <P>If you don't want to get any output if all modules are up to date, you
  306. can parse the output of above command for the regular expression
  307. //modules are up to date// and decide to mail the output only if it
  308. doesn't match. Ick?</P>
  309. <P>If you prefer to do it more in a programmer style in one single
  310. process, maybe something like this suites you better:</P>
  311. <PRE>
  312.   # list all modules on my disk that have newer versions on CPAN
  313.   for $mod (CPAN::Shell->expand("Module","/./")){
  314.     next unless $mod->inst_file;
  315.     next if $mod->uptodate;
  316.     printf "Module %s is installed as %s, could be updated to %s from CPAN\n",
  317.         $mod->id, $mod->inst_version, $mod->cpan_version;
  318.   }</PRE>
  319. <P>If that gives you too much output every day, you maybe only want to
  320. watch for three modules. You can write</P>
  321. <PRE>
  322.   for $mod (CPAN::Shell->expand("Module","/Apache|LWP|CGI/")){</PRE>
  323. <P>as the first line instead. Or you can combine some of the above
  324. tricks:</P>
  325. <PRE>
  326.   # watch only for a new mod_perl module
  327.   $mod = CPAN::Shell->expand("Module","mod_perl");
  328.   exit if $mod->uptodate;
  329.   # new mod_perl arrived, let me know all update recommendations
  330.   CPAN::Shell->r;</PRE>
  331. <P></P></DL>
  332. <P>
  333. <H2><A NAME="methods in the four classes">Methods in the four Classes</A></H2>
  334. <P>
  335. <H2><A NAME="cache manager">Cache Manager</A></H2>
  336. <P>Currently the cache manager only keeps track of the build directory
  337. ($CPAN::Config->{build_dir}). It is a simple FIFO mechanism that
  338. deletes complete directories below <CODE>build_dir</CODE> as soon as the size of
  339. all directories there gets bigger than $CPAN::Config->{build_cache}
  340. (in MB). The contents of this cache may be used for later
  341. re-installations that you intend to do manually, but will never be
  342. trusted by CPAN itself. This is due to the fact that the user might
  343. use these directories for building modules on different architectures.</P>
  344. <P>There is another directory ($CPAN::Config->{keep_source_where}) where
  345. the original distribution files are kept. This directory is not
  346. covered by the cache manager and must be controlled by the user. If
  347. you choose to have the same directory as build_dir and as
  348. keep_source_where directory, then your sources will be deleted with
  349. the same fifo mechanism.</P>
  350. <P>
  351. <H2><A NAME="bundles">Bundles</A></H2>
  352. <P>A bundle is just a perl module in the namespace Bundle:: that does not
  353. define any functions or methods. It usually only contains documentation.</P>
  354. <P>It starts like a perl module with a package declaration and a $VERSION
  355. variable. After that the pod section looks like any other pod with the
  356. only difference being that <EM>one special pod section</EM> exists starting with
  357. (verbatim):</P>
  358. <PRE>
  359.         =head1 CONTENTS</PRE>
  360. <P>In this pod section each line obeys the format</P>
  361. <PRE>
  362.         Module_Name [Version_String] [- optional text]</PRE>
  363. <P>The only required part is the first field, the name of a module
  364. (e.g. Foo::Bar, ie. <EM>not</EM> the name of the distribution file). The rest
  365. of the line is optional. The comment part is delimited by a dash just
  366. as in the man page header.</P>
  367. <P>The distribution of a bundle should follow the same convention as
  368. other distributions.</P>
  369. <P>Bundles are treated specially in the CPAN package. If you say 'install
  370. Bundle::Tkkit' (assuming such a bundle exists), CPAN will install all
  371. the modules in the CONTENTS section of the pod. You can install your
  372. own Bundles locally by placing a conformant Bundle file somewhere into
  373. your @INC path. The <CODE>autobundle()</CODE> command which is available in the
  374. shell interface does that for you by including all currently installed
  375. modules in a snapshot bundle file.</P>
  376. <P>
  377. <H2><A NAME="prerequisites">Prerequisites</A></H2>
  378. <P>If you have a local mirror of CPAN and can access all files with
  379. ``file:'' URLs, then you only need a perl better than perl5.003 to run
  380. this module. Otherwise Net::FTP is strongly recommended. LWP may be
  381. required for non-UNIX systems or if your nearest CPAN site is
  382. associated with an URL that is not <CODE>ftp:</CODE>.</P>
  383. <P>If you have neither Net::FTP nor LWP, there is a fallback mechanism
  384. implemented for an external ftp command or for an external lynx
  385. command.</P>
  386. <P>
  387. <H2><A NAME="finding packages and version">Finding packages and VERSION</A></H2>
  388. <P>This module presumes that all packages on CPAN</P>
  389. <UL>
  390. <LI>
  391. declare their $VERSION variable in an easy to parse manner. This
  392. prerequisite can hardly be relaxed because it consumes far too much
  393. memory to load all packages into the running program just to determine
  394. the $VERSION variable. Currently all programs that are dealing with
  395. version use something like this
  396. <PRE>
  397.     perl -MExtUtils::MakeMaker -le \
  398.         'print MM->parse_version(shift)' filename</PRE>
  399. <P>If you are author of a package and wonder if your $VERSION can be
  400. parsed, please try the above method.</P>
  401. <P></P>
  402. <LI>
  403. come as compressed or gzipped tarfiles or as zip files and contain a
  404. Makefile.PL (well, we try to handle a bit more, but without much
  405. enthusiasm).
  406. <P></P></UL>
  407. <P>
  408. <H2><A NAME="debugging">Debugging</A></H2>
  409. <P>The debugging of this module is pretty difficult, because we have
  410. interferences of the software producing the indices on CPAN, of the
  411. mirroring process on CPAN, of packaging, of configuration, of
  412. synchronicity, and of bugs within CPAN.pm.</P>
  413. <P>In interactive mode you can try ``o debug'' which will list options for
  414. debugging the various parts of the package. The output may not be very
  415. useful for you as it's just a by-product of my own testing, but if you
  416. have an idea which part of the package may have a bug, it's sometimes
  417. worth to give it a try and send me more specific output. You should
  418. know that ``o debug'' has built-in completion support.</P>
  419. <P>
  420. <H2><A NAME="floppy, zip, offline mode">Floppy, Zip, Offline Mode</A></H2>
  421. <P>CPAN.pm works nicely without network too. If you maintain machines
  422. that are not networked at all, you should consider working with file:
  423. URLs. Of course, you have to collect your modules somewhere first. So
  424. you might use CPAN.pm to put together all you need on a networked
  425. machine. Then copy the $CPAN::Config->{keep_source_where} (but not
  426. $CPAN::Config->{build_dir}) directory on a floppy. This floppy is kind
  427. of a personal CPAN. CPAN.pm on the non-networked machines works nicely
  428. with this floppy. See also below the paragraph about CD-ROM support.</P>
  429. <P>
  430. <HR>
  431. <H1><A NAME="configuration">CONFIGURATION</A></H1>
  432. <P>When the CPAN module is installed, a site wide configuration file is
  433. created as CPAN/Config.pm. The default values defined there can be
  434. overridden in another configuration file: CPAN/MyConfig.pm. You can
  435. store this file in $HOME/.cpan/CPAN/MyConfig.pm if you want, because
  436. $HOME/.cpan is added to the search path of the CPAN module before the
  437. <A HREF="../lib/Pod/perlfunc.html#item_use"><CODE>use()</CODE></A> or <A HREF="../lib/Pod/perlfunc.html#item_require"><CODE>require()</CODE></A> statements.</P>
  438. <P>Currently the following keys in the hash reference $CPAN::Config are
  439. defined:</P>
  440. <PRE>
  441.   build_cache        size of cache for directories to build modules
  442.   build_dir          locally accessible directory to build modules
  443.   index_expire       after this many days refetch index files
  444.   cpan_home          local directory reserved for this package
  445.   gzip               location of external program gzip
  446.   inactivity_timeout breaks interactive Makefile.PLs after this
  447.                      many seconds inactivity. Set to 0 to never break.
  448.   inhibit_startup_message
  449.                      if true, does not print the startup message
  450.   keep_source_where  directory in which to keep the source (if we do)
  451.   make               location of external make program
  452.   make_arg           arguments that should always be passed to 'make'
  453.   make_install_arg   same as make_arg for 'make install'
  454.   makepl_arg         arguments passed to 'perl Makefile.PL'
  455.   pager              location of external program more (or any pager)
  456.   prerequisites_policy
  457.                      what to do if you are missing module prerequisites
  458.                      ('follow' automatically, 'ask' me, or 'ignore')
  459.   scan_cache         controls scanning of cache ('atstart' or 'never')
  460.   tar                location of external program tar
  461.   unzip              location of external program unzip
  462.   urllist            arrayref to nearby CPAN sites (or equivalent locations)
  463.   wait_list          arrayref to a wait server to try (See CPAN::WAIT)
  464.   ftp_proxy,      }  the three usual variables for configuring
  465.     http_proxy,   }  proxy requests. Both as CPAN::Config variables
  466.     no_proxy      }  and as environment variables configurable.</PRE>
  467. <P>You can set and query each of these options interactively in the cpan
  468. shell with the command set defined within the <CODE>o conf</CODE> command:</P>
  469. <DL>
  470. <DT><STRONG><A NAME="item_o_conf_%3Cscalar_option%3E"><CODE>o conf <scalar option></CODE></A></STRONG><BR>
  471. <DD>
  472. prints the current value of the <EM>scalar option</EM>
  473. <P></P>
  474. <DT><STRONG><A NAME="item_o_conf_%3Cscalar_option%3E_%3Cvalue%3E"><CODE>o conf <scalar option> <value></CODE></A></STRONG><BR>
  475. <DD>
  476. Sets the value of the <EM>scalar option</EM> to <EM>value</EM>
  477. <P></P>
  478. <DT><STRONG><A NAME="item_o_conf_%3Clist_option%3E"><CODE>o conf <list option></CODE></A></STRONG><BR>
  479. <DD>
  480. prints the current value of the <EM>list option</EM> in MakeMaker's
  481. neatvalue format.
  482. <P></P>
  483. <DT><STRONG><A NAME="item_o_conf_%3Clist_option%3E_%5Bshift%7Cpop%5D"><CODE>o conf <list option> [shift|pop]</CODE></A></STRONG><BR>
  484. <DD>
  485. shifts or pops the array in the <EM>list option</EM> variable
  486. <P></P>
  487. <DT><STRONG><A NAME="item_o_conf_%3Clist_option%3E_%5Bunshift%7Cpush%7Csplic"><CODE>o conf <list option> [unshift|push|splice] <list></CODE></A></STRONG><BR>
  488. <DD>
  489. works like the corresponding perl commands.
  490. <P></P></DL>
  491. <P>
  492. <H2><A NAME="note on urllist parameter's format">Note on urllist parameter's format</A></H2>
  493. <P>urllist parameters are URLs according to RFC 1738. We do a little
  494. guessing if your URL is not compliant, but if you have problems with file URLs, please try the correct format. Either:</P>
  495. <PRE>
  496.     <A HREF="file://localhost/whatever/ftp/pub/CPAN/">file://localhost/whatever/ftp/pub/CPAN/</A></PRE>
  497. <P>or</P>
  498. <PRE>
  499.     <A HREF="file:///home/ftp/pub/CPAN/">file:///home/ftp/pub/CPAN/</A></PRE>
  500. <P>
  501. <H2><A NAME="urllist parameter has cdrom support">urllist parameter has CD-ROM support</A></H2>
  502. <P>The <CODE>urllist</CODE> parameter of the configuration table contains a list of
  503. URLs that are to be used for downloading. If the list contains any
  504. <CODE>file</CODE> URLs, CPAN always tries to get files from there first. This
  505. feature is disabled for index files. So the recommendation for the
  506. owner of a CD-ROM with CPAN contents is: include your local, possibly
  507. outdated CD-ROM as a <CODE>file</CODE> URL at the end of urllist, e.g.</P>
  508. <PRE>
  509.   o conf urllist push <A HREF="file://localhost/CDROM/CPAN">file://localhost/CDROM/CPAN</A></PRE>
  510. <P>CPAN.pm will then fetch the index files from one of the CPAN sites
  511. that come at the beginning of urllist. It will later check for each
  512. module if there is a local copy of the most recent version.</P>
  513. <P>Another peculiarity of urllist is that the site that we could
  514. successfully fetch the last file from automatically gets a preference
  515. token and is tried as the first site for the next request. So if you
  516. add a new site at runtime it may happen that the previously preferred
  517. site will be tried another time. This means that if you want to disallow
  518. a site for the next transfer, it must be explicitly removed from
  519. urllist.</P>
  520. <P>
  521. <HR>
  522. <H1><A NAME="security">SECURITY</A></H1>
  523. <P>There's no strong security layer in CPAN.pm. CPAN.pm helps you to
  524. install foreign, unmasked, unsigned code on your machine. We compare
  525. to a checksum that comes from the net just as the distribution file
  526. itself. If somebody has managed to tamper with the distribution file,
  527. they may have as well tampered with the CHECKSUMS file. Future
  528. development will go towards strong authentication.</P>
  529. <P>
  530. <HR>
  531. <H1><A NAME="export">EXPORT</A></H1>
  532. <P>Most functions in package CPAN are exported per default. The reason
  533. for this is that the primary use is intended for the cpan shell or for
  534. oneliners.</P>
  535. <P>
  536. <HR>
  537. <H1><A NAME="populate an installation with lots of modules">POPULATE AN INSTALLATION WITH LOTS OF MODULES</A></H1>
  538. <P>To populate a freshly installed perl with my favorite modules is pretty
  539. easiest by maintaining a private bundle definition file. To get a useful
  540. blueprint of a bundle definition file, the command autobundle can be used
  541. on the CPAN shell command line. This command writes a bundle definition
  542. file for all modules that are installed for the currently running perl
  543. interpreter. It's recommended to run this command only once and from then
  544. on maintain the file manually under a private name, say
  545. Bundle/my_bundle.pm. With a clever bundle file you can then simply say</P>
  546. <PRE>
  547.     cpan> install Bundle::my_bundle</PRE>
  548. <P>then answer a few questions and then go out for a coffee.</P>
  549. <P>Maintaining a bundle definition file means to keep track of two
  550. things: dependencies and interactivity. CPAN.pm sometimes fails on
  551. calculating dependencies because not all modules define all MakeMaker
  552. attributes correctly, so a bundle definition file should specify
  553. prerequisites as early as possible. On the other hand, it's a bit
  554. annoying that many distributions need some interactive configuring. So
  555. what I try to accomplish in my private bundle file is to have the
  556. packages that need to be configured early in the file and the gentle
  557. ones later, so I can go out after a few minutes and leave CPAN.pm
  558. unattained.</P>
  559. <P>
  560. <HR>
  561. <H1><A NAME="working with cpan.pm behind firewalls">WORKING WITH CPAN.pm BEHIND FIREWALLS</A></H1>
  562. <P>Thanks to Graham Barr for contributing the following paragraphs about
  563. the interaction between perl, and various firewall configurations.</P>
  564. <P>Firewalls can be categorized into three basic types.</P>
  565. <DL>
  566. <DT><STRONG><A NAME="item_http_firewall">http firewall</A></STRONG><BR>
  567. <DD>
  568. This is where the firewall machine runs a web server and to access the
  569. outside world you must do it via the web server. If you set environment
  570. variables like http_proxy or ftp_proxy to a values beginning with http://
  571. or in your web browser you have to set proxy information then you know
  572. you are running a http firewall.
  573. <P>To access servers outside these types of firewalls with perl (even for
  574. ftp) you will need to use LWP.</P>
  575. <P></P>
  576. <DT><STRONG><A NAME="item_ftp_firewall">ftp firewall</A></STRONG><BR>
  577. <DD>
  578. This where the firewall machine runs a ftp server. This kind of
  579. firewall will only let you access ftp servers outside the firewall.
  580. This is usually done by connecting to the firewall with ftp, then
  581. entering a username like <A HREF="mailto:``user@outside.host.com''">``user@outside.host.com''</A>
  582. <P>To access servers outside these type of firewalls with perl you
  583. will need to use Net::FTP.</P>
  584. <P></P>
  585. <DT><STRONG><A NAME="item_One_way_visibility">One way visibility</A></STRONG><BR>
  586. <DD>
  587. I say one way visibility as these firewalls try to make themselve look
  588. invisible to the users inside the firewall. An FTP data connection is
  589. normally created by sending the remote server your IP address and then
  590. listening for the connection. But the remote server will not be able to
  591. connect to you because of the firewall. So for these types of firewall
  592. FTP connections need to be done in a passive mode.
  593. <P>There are two that I can think off.</P>
  594. <DL>
  595. <DT><STRONG><A NAME="item_SOCKS">SOCKS</A></STRONG><BR>
  596. <DD>
  597. If you are using a SOCKS firewall you will need to compile perl and link
  598. it with the SOCKS library, this is what is normally called a ``socksified''
  599. perl. With this executable you will be able to connect to servers outside
  600. the firewall as if it is not there.
  601. <P></P>
  602. <DT><STRONG><A NAME="item_IP_Masquerade">IP Masquerade</A></STRONG><BR>
  603. <DD>
  604. This is the firewall implemented in the Linux kernel, it allows you to
  605. hide a complete network behind one IP address. With this firewall no
  606. special compiling is need as you can access hosts directly.
  607. <P></P></DL>
  608. </DL>
  609. <P>
  610. <HR>
  611. <H1><A NAME="bugs">BUGS</A></H1>
  612. <P>We should give coverage for <STRONG>all</STRONG> of the CPAN and not just the PAUSE
  613. part, right? In this discussion CPAN and PAUSE have become equal --
  614. but they are not. PAUSE is authors/ and modules/. CPAN is PAUSE plus
  615. the clpa/, doc/, misc/, ports/, src/, scripts/.</P>
  616. <P>Future development should be directed towards a better integration of
  617. the other parts.</P>
  618. <P>If a Makefile.PL requires special customization of libraries, prompts
  619. the user for special input, etc. then you may find CPAN is not able to
  620. build the distribution. In that case, you should attempt the
  621. traditional method of building a Perl module package from a shell.</P>
  622. <P>
  623. <HR>
  624. <H1><A NAME="author">AUTHOR</A></H1>
  625. <P>Andreas Koenig <<A HREF="mailto:andreas.koenig@anima.de">andreas.koenig@anima.de</A>></P>
  626. <P>
  627. <HR>
  628. <H1><A NAME="see also">SEE ALSO</A></H1>
  629. <P>perl(1), CPAN::Nox(3)</P>
  630. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  631. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  632. <STRONG><P CLASS=block> CPAN - query, download and build perl modules from CPAN sites</P></STRONG>
  633. </TD></TR>
  634. </TABLE>
  635.  
  636. </BODY>
  637.  
  638. </HTML>
  639.