You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage php-imap-7.2.8-1.lbn25.x86_64
The php-imap module will add IMAP (Internet Message Access Protocol) support to PHP. IMAP is a protocol for retrieving and uploading e-mail messages on mail servers. PHP is an HTML-embedded scripting language.
RPMPackage php-gd-7.2.8-1.lbn25.x86_64
The php-gd package contains a dynamic shared object that will add support for using the gd graphics library to PHP.
RPMPackage php-common-7.2.8-1.lbn25.x86_64
The php-common package contains files used by both the php package and the php-cli package.
RPMPackage php-cli-7.2.8-1.lbn25.x86_64
The php-cli package contains the command-line interface executing PHP scripts, /usr/bin/php, and the CGI interface.
RPMPackage php-7.2.8-1.lbn25.x86_64
PHP is an HTML-embedded scripting language. PHP attempts to make it easy for developers to write dynamically generated web pages. PHP also offers built-in database integration for several commercial and non-commercial database management systems, so writing a database-enabled webpage with PHP is fairly simple. The most common use of PHP coding is probably as a replacement for CGI scripts. The php package contains the module (often referred to as mod_php) which adds support for the PHP language to Apache HTTP Server.
RPMPackage phonon-backend-gstreamer-4.9.0-1.fc25.x86_64
Gstreamer phonon backend.
RPMPackage phonon-4.10.2-3.lbn25.x86_64
Multimedia framework api.
RPMPackage perltidy-20181120-2.lbn25.noarch
Perltidy is a Perl script that indents and re-formats Perl scripts to make them easier to read. If you write Perl scripts, or spend much time reading them, you will probably find it useful. The formatting can be controlled with command line parameters. The default parameter settings approximately follow the suggestions in the Perl Style Guide. Perltidy can also output HTML of both POD and source code. Besides re-formatting scripts, Perltidy can be a great help in tracking down errors with missing or extra braces, parentheses, and square brackets because it is very good at localizing errors.
RPMPackage perl-version-0.99.24-6.lbn25.x86_64
Version objects were added to Perl in 5.10. This module implements version objects for older version of Perl and provides the version object API for all versions of Perl. All previous releases before 0.74 are deprecated and should not be used due to incompatible API changes. Version 0.77 introduces the new 'parse' and 'declare' methods to standardize usage. You are strongly urged to set 0.77 as a minimum in your code.
RPMPackage perl-utils-5.28.2-436.lbn25.1.noarch
Several utilities which come with Perl distribution like h2ph, perlbug, perlthanks, pl2pm, and splain. Some utilities are provided by more specific packages like perldoc by perl-Pod-Perldoc.
RPMPackage perl-threads-shared-1.60-1.lbn25.x86_64
By default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudo-forks on Win32). It is used together with the threads module.
RPMPackage perl-threads-2.22-418.lbn25.x86_64
Since Perl 5.8, thread programming has been available using a model called interpreter threads which provides a new Perl interpreter for each thread, and, by default, results in no data or state information being shared between threads. (Prior to Perl 5.8, 5005threads was available through the "Thread.pm" API. This threading model has been deprecated, and was removed as of Perl 5.10.0.)
RPMPackage perl-tests-5.28.2-436.lbn25.1.x86_64
This package contains the test suite included with Perl 5.28.2. Install this if you want to test your Perl installation (binary and core modules).
RPMPackage perl-strictures-2.000006-4.lbn25.noarch
This package turns on strict and makes most warnings fatal.
RPMPackage perl-srpm-macros-1-34.lbn25.noarch
These RPM macros are used for building Perl source packages from source repositories. They influence build-requires set into the source package.
RPMPackage perl-solv-0.7.19-3.lbn25.x86_64
Perl bindings for the libsolv library.
RPMPackage perl-podlators-4.11-4.lbn25.noarch
This package contains Pod::Man and Pod::Text modules which convert POD input to *roff source output, suitable for man pages, or plain text. It also includes several sub-classes of Pod::Text for formatted output to terminals with various capabilities.
RPMPackage perl-parent-0.237-3.lbn25.noarch
Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Mostly similar in effect to: package Baz; BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); }
RPMPackage perl-open-1.11-436.lbn25.1.noarch
The "open" pragma serves as one of the interfaces to declare default "layers" (also known as "disciplines") for all I/O.
RPMPackage perl-namespace-clean-0.27-10.lbn25.noarch
When you define a function, or import one, into a Perl package, it will naturally also be available as a method. This does not per se cause problems, but it can complicate subclassing and, for example, plugin classes that are included via multiple inheritance by loading them as base classes. The 'namespace::clean' pragma will remove all previously declared or imported symbols at the end of the current package's compile cycle. Functions called in the package itself will still be bound by their name, but they won't show up as methods on your class or instances.