You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-ExtUtils-Manifest-1.70-1.lbn19.noarch
Utilities to write and check a MANIFEST file.
RPMPackage perl-ExtUtils-MakeMaker-Coverage-0.05-17.fc19.noarch
This module adds an additional target to the Makefile generated by ExtUtils::MakeMaker. The target, testcover, calls cover, the command-line script to generate test coverage statistics, to clean up any data from a previous run. It then runs the tests, as if make test was run, then calls cover again to generate the coverage statistics.
RPMPackage perl-ExtUtils-MakeMaker-7.04-1.lbn19.noarch
This utility is designed to write a Makefile for an extension module from a Makefile.PL. It is based on the Makefile.SH model provided by Andy Dougherty and the perl5-porters.
RPMPackage perl-ExtUtils-InstallPaths-0.010-2.lbn19.noarch
This module tries to make install path resolution as easy as possible. When you want to install a module, it needs to figure out where to install things. The nutshell version of how this works is that default installation locations are determined from ExtUtils::Config, and they may be individually overridden by using the install_path attribute. An install_base attribute lets you specify an alternative installation root like /home/foo and prefix does something similar in a rather different (and more complicated) way. destdir lets you specify a temporary installation directory like /tmp/install in case you want to create bundled-up installable packages.
RPMPackage perl-ExtUtils-Install-1.58-266.fc19.noarch
Handles the installing and uninstalling of perl modules, scripts, man pages, etc.
RPMPackage perl-ExtUtils-Helpers-0.022-2.lbn19.noarch
This module provides various portable helper functions for module building modules.
RPMPackage perl-ExtUtils-Embed-1.30-266.fc19.noarch
Utilities for embedding Perl in C/C++ applications.
RPMPackage perl-ExtUtils-Depends-0.304-1.fc19.noarch
This module tries to make it easy to build Perl extensions that use functions and typemaps provided by other perl extensions. This means that a perl extension is treated like a shared library that provides also a C and an XS interface besides the perl one.
RPMPackage perl-ExtUtils-Config-0.008-1.lbn19.noarch
ExtUtils::Config is an abstraction around the %Config hash.
RPMPackage perl-ExtUtils-CChecker-0.08-2.fc19.noarch
Often Perl modules are written to wrap functionality found in existing C headers, libraries, or to use OS-specific features. It is useful in the Build.PL or Makefile.PL file to check for the existence of these requirements before attempting to actually build the module.
RPMPackage perl-ExtUtils-CBuilder-0.28.2.6-266.fc19.noarch
This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was motivated by the Module::Build project, but may be useful for other purposes as well.
RPMPackage perl-Exporter-Tiny-0.042-1.lbn19.noarch
Exporter::Tiny supports many of Sub::Exporter's external-facing features including renaming imported functions with the -as, -prefix and -suffix options; explicit destinations with the into option; and alternative installers with the installer option. But it's written in only about 40% as many lines of code and with zero non-core dependencies. Its internal-facing interface is closer to Exporter.pm, with configuration done through the @EXPORT, @EXPORT_OK and %EXPORT_TAGS package variables. Exporter::Tiny performs most of its internal duties (including resolution of tag names to sub names, resolution of sub names to coderefs, and installation of coderefs into the target package) as method calls, which means they can be overridden to provide interesting behavior.
RPMPackage perl-Exporter-Declare-0.109-1.fc19.noarch
Exporter::Declare is a meta-driven exporting tool. Exporter::Declare tries to adopt all the good features of other exporting tools, while throwing away horrible interfaces. Exporter::Declare also provides hooks that allow you to add options and arguments for import. Finally, Exporter::Declare's meta-driven system allows for top-notch introspection.
RPMPackage perl-Expect-1.21-14.fc19.noarch
This module provides Expect-like functionality to Perl. Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.
RPMPackage perl-Event-Lib-1.03-20.fc19.armv6hl
This module is a Perl wrapper around libevent(3) as available from http://monkey.org/~provos/libevent/. It allows to execute a function whenever a given event on a filehandle happens, a timeout occurs or a signal is received.
RPMPackage perl-Event-Lib-1.03-20.fc19.x86_64
This module is a Perl wrapper around libevent(3) as available from http://monkey.org/~provos/libevent/. It allows to execute a function whenever a given event on a filehandle happens, a timeout occurs or a signal is received.
RPMPackage perl-Event-1.21-2.fc19.armv6hl
The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute.
RPMPackage perl-Event-1.21-2.fc19.x86_64
The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute.
RPMPackage perl-Eval-Context-0.09.11-4.fc19.noarch
This module defines a subroutine that let you evaluate Perl code in a specific context. The code can be passed directly as a string or as a file name to read from. It also provides some subroutines to let you define and optionally share variables and subroutines between your code and the code you wish to evaluate. Finally there is some support for running your code in a safe compartment.
RPMPackage perl-Eval-Closure-0.08-4.fc19.noarch
String eval is often used for dynamic code generation. For instance, Moose uses it heavily, to generate inlined versions of accessors and constructors, which speeds code up at runtime by a significant amount. String eval is not without its issues however - it's difficult to control the scope it's used in (which determines which variables are in scope inside the eval), and it's easy to miss compilation errors, since eval catches them and sticks them in $@ instead. This module attempts to solve these problems. It provides an eval_closure function, which evals a string in a clean environment, other than a fixed list of specified variables. Compilation errors are rethrown automatically.