You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-core-5.24.2-387.lbn25.1.x86_64
A metapackage which requires all of the perl bits and modules in the upstream tarball from perl.org.
RPMPackage perl-constant-1.33-419.lbn25.noarch
This pragma allows you to declare constants at compile-time: use constant PI => 4 * atan2(1, 1); When you declare a constant such as "PI" using the method shown above, each machine your script runs upon can have as many digits of accuracy as it can use. Also, your program will be easier to read, more likely to be maintained (and maintained correctly), and far less likely to send a space probe to the wrong planet because nobody noticed the one equation in which you wrote 3.14195. When a constant is used in an expression, Perl replaces it with its value at compile time, and may then optimize the expression further. In particular, any code in an "if (CONSTANT)" block will be optimized away if the constant is false.
RPMPackage perl-bignum-0.51-2.lbn25.noarch
This package attempts to make it easier to write scripts that use BigInts and BigFloats in a transparent way.
RPMPackage perl-aliased-0.34-12.lbn25.noarch
aliased is simple in concept but is a rather handy module. It loads the class you specify and exports into your namespace a subroutine that returns the class name. You can explicitly alias the class to another name or, if you prefer, you can do so implicitly. In the latter case, the name of the subroutine is the last part of the class name.
RPMPackage perl-YAML-Tiny-1.73-5.lbn25.noarch
YAML::Tiny is a Perl class for reading and writing YAML-style files, written with as little code as possible, reducing load time and memory overhead.
RPMPackage perl-YAML-Syck-1.31-2.lbn25.x86_64
This module provides a Perl interface to the libsyck data serialization library. It exports the Dump and Load functions for converting Perl data structures to YAML strings, and the other way around.
RPMPackage perl-YAML-1.28-1.lbn25.noarch
The YAML.pm module implements a YAML Loader and Dumper based on the YAML 1.0 specification (http://www.yaml.org/spec/). YAML is a generic data serialization language that is optimized for human readability. It can be used to express the data structures of most modern programming languages, including Perl. For information on the YAML syntax, please refer to the YAML specification.
RPMPackage perl-XML-Parser-2.44-15.lbn25.x86_64
This module provides ways to parse XML documents. It is built on top of XML::Parser::Expat, which is a lower level interface to James Clark's expat library. Each call to one of the parsing methods creates a new instance of XML::Parser::Expat which is then used to parse the document. Expat options may be provided when the XML::Parser object is created. These options are then passed on to the Expat object on each parse call. They can also be given as extra arguments to the parse methods, in which case they override options given at XML::Parser creation time.
RPMPackage perl-XML-DOM-1.45-3.fc25.noarch
This is a Perl extension to XML::Parser. It adds a new 'Style' to XML::Parser, called 'DOM', that allows XML::Parser to build an Object Oriented data structure with a DOM Level 1 compliant interface. For a description of the DOM (Document Object Model), see <http://www.w3.org/DOM/>.
RPMPackage perl-WWW-RobotRules-6.02-21.lbn25.noarch
This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html>. Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site.
RPMPackage perl-Variable-Magic-0.62-6.lbn25.x86_64
Magic is Perl way of enhancing objects. This mechanism let the user add extra data to any variable and hook syntactical operations (such as access, assignation or destruction) that can be applied to it. With this module, you can add your own magic to any variable without the pain of the C API.
RPMPackage perl-Unicode-UTF8-0.62-8.lbn25.x86_64
This module provides functions to encode and decode UTF-8 encoding form as specified by Unicode and ISO/IEC 10646:2011.
RPMPackage perl-Unicode-Normalize-1.26-418.lbn25.x86_64
This package provides Perl functions that can convert strings into various Unicode normalization forms as defined in Unicode Standard Annex #15.
RPMPackage perl-URI-1.76-2.lbn25.noarch
This module implements the URI class. Objects of this class represent "Uniform Resource Identifier references" as specified in RFC 2396 (and updated by RFC 2732).
RPMPackage perl-Type-Tiny-1.004004-2.lbn25.noarch
Type::Tiny is a tiny class for creating Moose-like type constraint objects which are compatible with Moo, Moose and Mouse.
RPMPackage perl-Try-Tiny-0.30-5.lbn25.noarch
This module provides bare bones try/catch statements that are designed to minimize common mistakes with eval blocks, and NOTHING else. This is unlike TryCatch, which provides a nice syntax and avoids adding another call stack layer, and supports calling return from the try block to return from the parent subroutine. These extra features come at a cost of a few dependencies, namely Devel::Declare and Scope::Upper that are occasionally problematic, and the additional catch filtering uses Moose type constraints, which may not be desirable either.
RPMPackage perl-TimeDate-2.30-16.lbn25.noarch
This module includes a number of smaller modules suited for manipulation of time and date strings with Perl. In particular, the Date::Format and Date::Parse modules can display and read times and dates in various formats, providing a more reliable interface to textual representations of points in time.
RPMPackage perl-Time-Piece-1.33-436.lbn25.1.x86_64
The Time::Piece module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime or gmtime as documented in perlfunc still behave as expected.
RPMPackage perl-Time-Local-1.280-4.lbn25.noarch
This module provides functions that are the inverse of built-in perl functions localtime() and gmtime(). They accept a date as a six-element array, and return the corresponding time(2) value in seconds since the system epoch (Midnight, January 1, 1970 GMT on Unix, for example). This value can be positive or negative, though POSIX only requires support for positive values, so dates before the system's epoch may not work on all operating systems.
RPMPackage perl-Text-Template-1.55-1.lbn25.noarch
This is a library for generating form letters, building HTML pages, or filling in templates generally. A 'template' is a piece of text that has little Perl programs embedded in it here and there. When you 'fill in' a template, you evaluate the little programs and replace them with their values.