| Meta documentation | view source | Contained in the Meta distribution. |
Meta::Lang::Perl::Deps - module to help you handle perl dependency information.
Copyright (C) 2001, 2002 Mark Veltzer; All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
MANIFEST: Deps.pm PROJECT: meta VERSION: 0.15
package foo; use Meta::Lang::Perl::Deps qw(); my($object)=Meta::Lang::Perl::Deps->new(); my($result)=$object->method();
This module will help you extract, manipulate and print perl dependency from actual perl source files.
is_internal($) add_graph($) c2deps($) module_to_search_file($) module_to_file($) file_to_module($) module_to_deps($) extfile_to_module($) deps_to_module($) add_deps($$$$$) add_deps_rec($$$$$$) TEST($)
This method receives a module name from the DEPENDENCY files and tells you if it is internal or not (by checking if it is absolute or not).
This method will add the dependency information in a single perl file (script or module) to a graph dependency object you give it.
This method will extract a dependency graph from a perl source file.
This will translate a module name to a module file to search for (without the perl/lib prefix...
Convert a filename for a module to its perl notation (with ::).
This method receives a module name and returns the deps file that holds the dependency information for it.
Convert an expternal perl module filename perl module notation.
This method does the reverse of module_to_deps.
This method recevies a deps file, and returns the module which it represents.
This method reads a dep file and adds it's information to a graph.
This module will create a dep graph to describe the module and all the modules that it depends on.
Test suite for this module. Currenlty it tries to check the recursive dependencies of a certain module.
None.
None.
Name: Mark Veltzer Email: mailto:veltzer@cpan.org WWW: http://www.veltzer.org CPAN id: VELTZER
0.00 MV fix up cook files 0.01 MV perl packaging 0.02 MV more perl packaging 0.03 MV perl packaging again 0.04 MV fix database problems 0.05 MV md5 project 0.06 MV database 0.07 MV perl module versions in files 0.08 MV movies and small fixes 0.09 MV thumbnail user interface 0.10 MV more thumbnail issues 0.11 MV website construction 0.12 MV web site automation 0.13 MV SEE ALSO section fix 0.14 MV teachers project 0.15 MV md5 issues
Meta::Baseline::Aegis(3), Meta::Development::Deps(3), Meta::Error::Simple(3), Meta::IO::File(3), Meta::Utils::Output(3), Meta::Utils::Utils(3), strict(3)
-in the c2deps method check that the source configuration management tool knows about the files were adding.
-were always calling Aegis::Search_path here. Optimize this (either at the aegis or this level).
| Meta documentation | view source | Contained in the Meta distribution. |