You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage perl-Encode-Newlines-0.05-19.fc36.noarch
This module provides the CR, LF, CRLF and Native encodings, to aid in normalizing line endings.
RPMPackage perl-Encode-Locale-1.05-22.fc36.noarch
In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world is still byte based. Programs therefore needs to decode byte strings that enter the program from the outside and encode them again on the way out.
RPMPackage perl-Encode-Detect-1.01-38.fc36.x86_64
This Perl module is an Encode::Encoding subclass that uses Encode::Detect::Detector to determine the charset of the input data and then decodes it using the encoder of the detected charset.
RPMPackage perl-Encode-3.17-485.fc36.x86_64
The Encode module provides the interface between Perl strings and the rest of the system. Perl strings are sequences of characters.
RPMPackage perl-Email-Date-Format-1.005-21.fc36.noarch
This module can be used to emit RFC 2822 style date strings.
RPMPackage perl-DynaLoader-Functions-0.003-14.fc36.noarch
This module provides a function-based interface to dynamic loading as used by Perl. Some details of dynamic loading are very platform-dependent, so correct use of these functions requires the programmer to be mindful of the space of platform variations.
RPMPackage perl-DynaLoader-1.50-486.fc36.x86_64
The DynaLoader module defines a standard generic interface to the dynamic linking mechanisms available on many platforms. Its primary purpose is to implement automatic dynamic loading of Perl modules. For a simpler interface, see XSLoader module.
RPMPackage perl-Dumpvalue-2.27-486.fc36.noarch
Dumpvalue module enables you to print a content of variables and other Perl data structures.
RPMPackage perl-Dist-CheckConflicts-0.11-24.fc36.noarch
One shortcoming of the CPAN clients that currently exist is that they have no way of specifying conflicting downstream dependencies of modules. This module attempts to work around this issue by allowing you to specify conflicting versions of modules separately, and deal with them after the module is done installing. For instance, say you have a module Foo, and some other module Bar uses Foo. If Foo were to change its API in a non-backwards-compatible way, this would cause Bar to break until it is updated to use the new API. Foo can't just depend on the fixed version of Bar, because this will cause a circular dependency (because Bar is already depending on Foo), and this doesn't express intent properly anyway - Foo doesn't use Bar at all. The ideal solution would be for there to be a way to specify conflicting versions of modules in a way that would let CPAN clients update conflicting modules automatically after an existing module is upgraded, but until that happens, this module will allow users to do this manually.
RPMPackage perl-DirHandle-1.05-486.fc36.noarch
There is no reason to use this module nowadays. The DirHandle module provides an alternative interface to the opendir(), closedir(), readdir(), and rewinddir() functions. Since Perl 5.6, opendir() alone has been all you need for lexical handles.
RPMPackage perl-Digest-SHA-6.03-1.fc36.x86_64
Digest::SHA is a complete implementation of the NIST Secure Hash Standard. It gives Perl programmers a convenient way to calculate SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224, and SHA-512/256 message digests. The module can handle all types of input, including partial-byte data.
RPMPackage perl-Digest-MD5-2.58-479.fc36.x86_64
The Digest::MD5 module allows you to use the RSA Data Security Inc. MD5 Message Digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input.
RPMPackage perl-Digest-HMAC-1.04-4.fc36.noarch
HMAC is used for message integrity checks between two parties that share a secret key, and works in combination with some other Digest algorithm, usually MD5 or SHA-1. The HMAC mechanism is described in RFC 2104. HMAC follow the common Digest:: interface, but the constructor takes the secret key and the name of some other simple Digest:: as argument.
RPMPackage perl-Digest-1.20-2.fc36.noarch
The Digest:: modules calculate digests, also called "fingerprints" or "hashes", of some data, called a message. The digest is (usually) some small/fixed size string. The actual size of the digest depends of the algorithm used. The message is simply a sequence of arbitrary bytes or bits.
RPMPackage perl-Devel-StackTrace-2.05-4.lbn36.noarch
The Devel::StackTrace module contains two classes, Devel::StackTrace and Devel::StackTraceFrame. The goal of this object is to encapsulate the information that can found through using the caller() function, as well as providing a simple interface to this data. The Devel::StackTrace object contains a set of Devel::StackTraceFrame objects, one for each level of the stack. The frames contain all the data available from caller() as of Perl 5.6.0.
RPMPackage perl-Devel-SelfStubber-1.06-486.fc36.noarch
Devel::SelfStubber prints the stubs you need to put in the module before the __DATA__ token (or you can get it to print the entire module with stubs correctly placed). The stubs ensure that if a method is called, it will get loaded. They are needed specifically for inherited autoloaded methods.
RPMPackage perl-Devel-Peek-1.30-486.fc36.x86_64
Devel::Peek contains functions which allows raw Perl data types to be manipulated from a Perl script. This is used by those who do XS programming to check that the data they are sending from C to Perl looks as they think it should look.
RPMPackage perl-Devel-LexAlias-0.05-28.fc36.x86_64
Devel::LexAlias provides the ability to alias a lexical variable in a subroutines scope to one of your choosing.
RPMPackage perl-Devel-GlobalDestruction-0.14-17.fc36.noarch
Perl's global destruction is a little tricky to deal with with respect to finalizers because it's not ordered and objects can sometimes disappear. Writing defensive destructors is hard and annoying, and usually if global destruction is happening you only need the destructors that free up non process local resources to actually execute. For these constructors you can avoid the mess by simply bailing out if global destruction is in effect.
RPMPackage perl-Devel-Caller-2.06-27.fc36.x86_64
Devel::Caller - Meatier versions of caller.