Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第3,5713,580项(搜索用时0.003秒)
devel/namespace-sweep-0.006 (Score: 0.032514982)
Sweep up imported subs in your classes
Because Perl methods are just regular subroutines, it's difficult to tell what's a method and what's just an imported function. As a result, imported functions can be called as methods on your objects. This pragma will delete imported functions from your class's symbol table, thereby ensuring that your interface is as you specified it. However, code inside your module will still be able to use the imported functions without any problems.
devel/orz-0.13 (Score: 0.032514982)
Method of annotation as /* */ in perl
When you just can't get your code to work, admit you are a total failure.
devel/cmake-3.6.2 (Score: 0.032514982)
Qt-based GUI for CMake
CMake is used to control the software compilation process using simple platform and compiler independent configuration files. CMake generates native makefiles and workspaces that can be used in the compiler environment of your choice. CMake is quite sophisticated: it is possible to support complex environments requiring system configuration, pre-processor generation, code generation, and template instantiation.
devel/math-0.2.0 (Score: 0.032514982)
Math module for Elixir
The missing Math module for Elixir.
devel/pip-1.19 (Score: 0.032514982)
Perl Installation Program
The pip ("Perl Installation Program") console application is used to install Perl distributions in a wide variety of formats, both from CPAN and from external third-party locations, while supporting module dependencies that go across the boundary from third-party to CPAN. Using pip you can install CPAN modules, arbitrary tarballs from both the local file-system or across the internet from arbitrary URIs. You can use pip to ensure that specific versions of CPAN modules are installed instead of the most current version.
devel/reaper-1.00 (Score: 0.032514982)
Perl module for reaping child processes via $SIG{CHLD}
The reaper module provides a $SIG{CHLD} handler that can be installed globally as well as locally. It also supports chaining of signal handlers, meaning it will not just replace an existing $SIG{CHLD} handler. It still requires applications to do the right thing in using this module and not installing their own versions. At least it provides a consistent implementation that can be shared between various modules.
devel/relative-0.04 (Score: 0.032514982)
Load modules with relative names
relative - Load modules with relative names This module allows you to load modules using only parts of their name, relatively to the current module or to a given module. Module names are by default searched below the current module, but can be searched upper in the hierarchy using the ..:: syntax.
devel/rpm-build-perl-0.82 (Score: 0.032514982)
This module is required to build Perl RPM packages
rpm-build-perl is required to build Perl RPM packages; it contains scripts for automatic dependency tracking, RPM macros for Perl.
devel/self-init-0.01 (Score: 0.032514982)
Invoke package init methods at compile time
Invoke package init methods at compile time
devel/self-0.35 (Score: 0.032514982)
Provides "self" and "args" keywords in your OO program
This module adds self and args keywords in your Perl OO module. It's really just handy helpers to get rid of: my $self = shift; Basically, self is just equal to $_[0], and args is just $_[1..$#_].