Debian lenny version packages
[pkg-perl] / deb-src / libmodule-depends-perl / libmodule-depends-perl-0.14 / README
1 README for Module::Depends 0.13
2
3 =head1 NAME
4
5 Module::Depends - identify the dependencies of a distribution
6
7 =head1 SYNOPSIS
8
9  use YAML;
10  use Module::Depends;
11  my $deps = Module::Depends->new->dist_dir( '.' )->find_modules;
12  print "Our dependencies:\n", Dump $deps->requires;
13
14
15 =head1 DEPENDENCIES
16
17 This module has external dependencies on the following modules:
18
19  Class::Accessor::Chained
20  File::Spec
21  YAML
22
23 =head1 INSTALLATION
24
25  perl Build.PL
26  perl Build test
27
28 and if all goes well
29
30  perl Build install
31
32 =head1 HISTORY
33
34 What changed over the last 3 revisions
35
36 =over
37
38 =item 0.13 Tuesday 26th June, 2007
39
40     File::chdir 0.08 changed its behaviour and is not backwards
41     compatible - avoid using it.
42
43
44 =item 0.12 Thursday 1st March, 2007
45
46         Implement a y_n for the Module::Build fakery
47
48
49 =item 0.11 Saturday 3rd February, 2007
50
51         Fixed the emulation of Module::Install::require
52         Change the base test case so that it doesn't need a 
53         ./Build dist first (for when building out of SVN rather 
54        than a released dist)
55
56 =back
57
58 =head1 AUTHOR
59
60 Richard Clamp, based on code extracted from the Fotango build system
61 originally by James Duncan and Arthur Bergman.
62
63 =head1 COPYRIGHT
64
65 Copyright 2004,2007 Fotango.  All Rights Reserved.
66
67 This module is free software; you can redistribute it and/or modify it
68 under the same terms as Perl itself.
69
70 =head1 SEE ALSO
71
72 L<Module::Depends::Intrusive>
73