You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Convert-BinHex-1.119-20.fc19.noarch
Convert::BinHex extracts data from Macintosh BinHex files.
RPMPackage perl-Convert-ASN1-0.26-4.fc19.noarch
Convert::ASN1 encodes and decodes ASN.1 data structures using BER/DER rules.
RPMPackage perl-Contextual-Return-0.004007-2.fc19.noarch
This module allows you to define return values of a perl sub that are appropriate given the calling context.
RPMPackage perl-Context-Preserve-0.01-9.fc19.noarch
Sometimes you need to call a function, get the results, act on the results, then return the result of the function. This is painful because of contexts; the original function can behave different if it's called in void, scalar, or list context. You can ignore the various cases and just pick one, but that's fragile. To do things right, you need to see which case you're being called in, and then call the function in that context. This results in 3 code paths, which is a pain to type in (and maintain). This module automates the process. You provide a coderef that is the "original function", and another coderef to run after the original runs. You can modify the return value (aliased to @_) here, and do whatever else you need to do. 'wantarray' is correct inside both coderefs; in "after", though, the return value is ignored and the value 'wantarray' returns is related to the context that the original function was called in.
RPMPackage perl-Config-Tiny-2.14-7.lbn19.noarch
Config::Tiny is a Perl module designed for reading and writing .ini style configuration files. It is designed for simplicity and ease of use, and thus only supports the most basic operations.
RPMPackage perl-Config-IniFiles-2.79-1.fc19.noarch
Config::IniFiles provides a way to have readable configuration files outside your Perl script. Configurations can be imported (inherited, stacked,...), sections can be grouped, and settings can be accessed from a tied hash.
RPMPackage perl-Config-GitLike-1.10-2.fc19.noarch
This module handles interaction with configuration files of the style used by the version control system Git. It can both parse and modify these files, as well as create entirely new ones.
RPMPackage perl-Config-General-2.51-2.fc19.noarch
This module opens a config file and parses its contents for you. After parsing the module returns a hash structure which contains the representation of the config file. The format of config files supported by Config::General is inspired by the well known Apache config format, in fact, this module is 100% read-compatible with Apache configs, but you can also just use simple name/value pairs in your config files. In addition to the capabilities of an Apache config file it supports some enhancements such as here-documents, C-style comments or multiline options. It is also possible to save the config back to disk, which makes the module a perfect backend for configuration interfaces. It is possible to use variables in config files and there exists also support for object oriented access to the configuration.
RPMPackage perl-Config-AutoConf-0.305-1.lbn19.noarch
This module simulates some of the tasks autoconf macros do. To detect a command, a library and similar.
RPMPackage perl-Config-Any-0.23-4.fc19.noarch
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.
RPMPackage perl-Compress-Raw-Zlib-2.060-2.lbn19.x86_64
The Compress::Raw::Zlib module provides a Perl interface to the zlib compression library, which is used by IO::Compress::Zlib.
RPMPackage perl-Compress-Raw-Zlib-2.060-2.fc19.armv6hl
The Compress::Raw::Zlib module provides a Perl interface to the zlib compression library, which is used by IO::Compress::Zlib.
RPMPackage perl-Compress-Raw-Bzip2-2.060-2.fc19.x86_64
This module provides a Perl interface to the bzip2 compression library. It is used by IO::Compress::Bzip2.
RPMPackage perl-Compress-Raw-Bzip2-2.060-2.fc19.armv6hl
This module provides a Perl interface to the bzip2 compression library. It is used by IO::Compress::Bzip2.
RPMPackage perl-Clone-0.34-2.fc19.armv6hl
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference.
RPMPackage perl-Clone-0.34-2.fc19.x86_64
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. clone() takes a scalar argument and an optional parameter that can be used to limit the depth of the copy. To duplicate lists, arrays or hashes, pass them in by reference.
RPMPackage perl-Class-XSAccessor-1.19-3.lbn19.x86_64
Class::XSAccessor implements fast read, write and read/write accessors in XS. Additionally, it can provide predicates such as has_foo() for testing whether the attribute foo is defined in the object. It only works with objects that are implemented as ordinary hashes. Class::XSAccessor::Array implements the same interface for objects that use arrays for their internal representation.
RPMPackage perl-Class-Std-Fast-0.0.8-2.lbn19.noarch
Class::Std::Fast allows you to use the beautiful API of Class::Std in a faster way than Class::Std does. You can get the object's identity via scalar-ifying our object. Getting the objects identity is still possible via the ident method.
RPMPackage perl-Class-Std-0.013-3.lbn19.noarch
This module provides tools that help to implement the "inside out object" class structure in a convenient and standard way.
RPMPackage perl-Class-Singleton-1.4-14.fc19.noarch
This is the Class::Singleton module. A Singleton describes an object class that can have only one instance in any system. An example of a Singleton might be a print spooler or system registry. This module implements a Singleton class from which other classes can be derived. By itself, the Class::Singleton module does very little other than manage the instantiation of a single object. In deriving a class from Class::Singleton, your module will inherit the Singleton instantiation method and can implement whatever specific functionality is required.