You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Devel-Caller-2.06-18.lbn25.x86_64
Devel::Caller - Meatier versions of caller.
RPMPackage perl-Date-Calc-6.4-12.lbn25.noarch
The library provides all sorts of date calculations based on the Gregorian calendar (the one used in all western countries today), thereby complying with all relevant norms and standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where applicable).
RPMPackage perl-Data-Section-0.200007-6.lbn25.noarch
Data::Section provides an easy way to access multiple named chunks of line-oriented data in your module's DATA section. It was written to allow modules to store their own templates, but probably has other uses.
RPMPackage perl-Data-Perl-0.002009-14.lbn25.noarch
Data::Perl is a collection of classes that wrap fundamental data types that exist in Perl. These classes and methods as they exist today are an attempt to mirror functionality provided by Moose's Native Traits. One important thing to note is all classes currently do no validation on constructor input.
RPMPackage perl-Data-OptList-0.110-9.lbn25.noarch
Hashes are great for storing named data, but if you want more than one entry for a name, you have to use a list of pairs. Even then, this is really boring to write: $values = [ foo => undef, bar => undef, baz => undef, xyz => { ... }, ]; With Data::OptList, you can do this instead: $values = Data::OptList::mkopt([ qw(foo bar baz), xyz => { ... }, ]); This works by assuming that any defined scalar is a name and any reference following a name is its value.
RPMPackage perl-Data-Dumper-2.174-1.lbn25.x86_64
Given a list of scalars or reference variables, writes out their contents in perl syntax. The references can also be objects. The content of each variable is output in a single Perl statement. Handles self-referential structures correctly.
RPMPackage perl-DB_File-1.852-1.lbn25.x86_64
DB_File is a module which allows Perl programs to make use of the facilities provided by Berkeley DB version 1.x (if you have a newer version of DB, you will be limited to functionality provided by interface of version 1.x). The interface defined here mirrors the Berkeley DB interface closely.
RPMPackage perl-DBI-Coro-1.642-2.lbn25.x86_64
This is an experimental asynchronous DBD::Gofer stream transport for DBI implemented on top of Coro. The BIG WIN from using Coro is that it enables the use of existing DBI frameworks like DBIx::Class.
RPMPackage perl-DBI-1.642-2.lbn25.x86_64
DBI is a database access Application Programming Interface (API) for the Perl Language. The DBI API Specification defines a set of functions, variables and conventions that provide a consistent database interface independent of the actual database being used.
RPMPackage perl-DBD-Pg-3.8.0-1.lbn25.x86_64
DBD::Pg is a Perl module that works with the DBI module to provide access to PostgreSQL databases.
RPMPackage perl-DBD-MySQL-4.050-2.lbn25.x86_64
DBD::mysql is the Perl5 Database Interface driver for the MySQL database. In other words: DBD::mysql is an interface between the Perl programming language and the MySQL programming API that comes with the MySQL relational database management system.
RPMPackage perl-Compress-Raw-Zlib-2.086-1.lbn25.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-Bzip2-2.086-1.lbn25.x86_64
This module provides a Perl interface to the bzip2 compression library. It is used by IO::Compress::Bzip2.
RPMPackage perl-Compress-Bzip2-2.26-10.lbn25.x86_64
The Compress::Bzip2 module provides a Perl interface to the Bzip2 compression library. A relevant subset of the functionality provided by Bzip2 is available in Compress::Bzip2. Compress::Bzip2 is not well integrated into PerlIO, use the preferred IO::Compress::Bzip2 instead.
RPMPackage perl-Clone-0.41-2.lbn25.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-Tiny-1.006-9.lbn25.noarch
This module offers a minimalist class construction kit in around 120 lines of code. Here is a list of features: * defines attributes via import arguments * generates read-write accessors * supports lazy attribute defaults * supports custom accessors * superclass provides a standard new constructor * new takes a hash reference or list of key/value pairs * new has heuristics to catch constructor attribute typos * new calls BUILD for each class from parent to child * superclass provides a DESTROY method * DESTROY calls DEMOLISH for each class from child to parent
RPMPackage perl-Class-Method-Modifiers-2.12-12.lbn25.noarch
Method modifiers are a powerful feature from the CLOS (Common Lisp Object System) world. In its most basic form, a method modifier is just a method that calls '$self->SUPER::foo(@_)'. I for one have trouble remembering that exact invocation, so my classes seldom re-dispatch to their base classes. Very bad! 'Class::Method::Modifiers' provides three modifiers: 'before', 'around', and 'after'. 'before' and 'after' are run just before and after the method they modify, but can not really affect that original method. 'around' is run in place of the original method, with a hook to easily call that original method. See the 'MODIFIERS' section for more details on how the particular modifiers work.
RPMPackage perl-Class-Load-0.25-5.lbn25.noarch
require EXPR only accepts Class/Name.pm style module names, not Class::Name. How frustrating! For that, we provide load_class 'Class::Name'. It's often useful to test whether a module can be loaded, instead of throwing an error when it's not available. For that, we provide try_load_class 'Class::Name'. Finally, sometimes we need to know whether a particular class has been loaded. Asking %INC is an option, but that will miss inner packages and any class for which the filename does not correspond to the package name. For that, we provide is_class_loaded 'Class::Name'.
RPMPackage perl-Class-ISA-0.36-1025.lbn25.noarch
This library provides functions that return the list (in order) of names of (super-)classes Perl would search to find a method, with no duplicates.
RPMPackage perl-Carp-Clan-6.07-2.lbn25.noarch
This module reports errors from the perspective of the caller of a "clan" of modules, similar to "Carp.pm" itself. But instead of giving it a number of levels to skip on the calling stack, you give it a pattern to characterize the package names of the "clan" of modules which shall never be blamed for any error.