Ports Search

Results 1,9912,000 of 5,623 for /devel/.(0.004 seconds)
devel/Class-Trigger-0.14 (Score: 0.032514982)
Mixin to add / call inheritable triggers
Class::Trigger is a mixin class to add / call triggers (or hooks) that get called at some points you specify.
devel/Class-Unload-0.09 (Score: 0.032514982)
Perl5 module for unloading classes
Unloads the given class by clearing out its symbol table and removing it from %INC. SYNOPSIS use Class::Unload; use Class::Inspector; use Some::Class; Class::Unload->unload( 'Some::Class' ); Class::Inspector->loaded( 'Some::Class' ); # Returns false require Some::Class; # Reloads the class
devel/cvsps-2.1 (Score: 0.032514982)
Create patchset information from CVS
CVSps is a program for generating 'patchset' information from a CVS repository. A patchset in this case is defined as a set of changes made to a collection of files, and all committed at the same time (using a single 'cvs commit' command). This information is valuable to seeing the big picture of the evolution of a cvs project. While cvs tracks revision information, it is often difficult to see what changes were committed 'atomically' to the repository.
devel/Class-Workflow-0.11 (Score: 0.032514982)
Lightweight workflow system
Lightweight workflow system, let you build a state machine, with transitions between states.
devel/Code-Perl-0.03 (Score: 0.032514982)
Produce Perl code from a tree
Code::Perl allows you to build chunks of Perl code as a tree and then when you're finished building, the tree can output the Perl code. This is useful if you have built your own mini-language and you want to generate Perl from it. Rather than generating the Perl at parse time and having to worry about quoting, escaping, parentheses etc, you can just build a tree using Code::Perl and then dump out the correct Perl at the end.
devel/CommitBit-0.02 (Score: 0.032514982)
Project administration tool
CommitBit is a tool for managing commit access to software projects. It also provides for a "code.yourorganization.org" site with links to your wiki, mailing lists, bug tracking and so on.
devel/Compiler-Lexer-0.22 (Score: 0.032514982)
Perl extension for lexical analyzer
Lexical Analyzer for Perl5.
devel/Config-Any-0.27 (Score: 0.032514982)
Load class configuration data from a number of file formats
Config::Any provides a facility for Perl applications and libraries to load configuration data from multiple different file formats. It supports XML, YAML, JSON, Apache-style configuration, Windows INI files, and even Perl code. The rationale for this module is as follows: Perl programs are deployed on many different platforms and integrated with many different systems. Systems administrators and end users may prefer different configuration formats than the developers. The flexibility inherent in a multiple format configuration loader allows different users to make different choices, without generating extra work for the developers. As a developer you only need to learn a single interface to be able to use the power of different configuration formats.
devel/distorm-20121220.r230 (Score: 0.032514982)
Fast x86 and x86-64 disassembler library
diStorm is a binary stream disassembler of x86 instructions. It can operate in 16, 32, and 64 bit modes, and supports FPU, MMX, SSE, SSE2, SSE3, SSE4, 3DNow! (with extensions), x86-64, VMX, AMD SVM, and AVX instruction sets. diStorm was written to decode every instruction quickly and accurately, with robust handling of valid and unused prefixes. The output is a special structure that can describe any x86 instruction, and later be formatted into text for display.
devel/Config-ApacheFormat-1.2 (Score: 0.032514982)
Parse a configuration file in the same syntax as the Apache web server
This module is designed to parse a configuration file in the same syntax used by the Apache web server (see http://httpd.apache.org for details). This allows you to build applications which can be easily managed by experienced Apache admins. Also, by using this module, you'll benefit from the support for nested blocks with built-in parameter inheritance. This can greatly reduce the amount or repeated information in your configuration files. A good reference to the Apache configuration file format can be found here: http://httpd.apache.org/docs-2.0/configuring.html