libencode-locale-perl 1.05-3 source package in Ubuntu
Changelog
libencode-locale-perl (1.05-3) unstable; urgency=medium [ Debian Janitor ] * Apply multi-arch hints. + libencode-locale-perl: Add Multi-Arch: foreign. -- Jelmer Vernooij <email address hidden> Thu, 13 Oct 2022 15:40:32 +0100
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | main | perl | |
Lunar | release | main | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libencode-locale-perl_1.05-3.dsc | 2.0 KiB | b1f3478750a345e3bdb3e7f840fba1b84bf118c0a1222665a07530310188c6c9 |
libencode-locale-perl_1.05.orig.tar.gz | 8.2 KiB | 176fa02771f542a4efb1dbc2a4c928e8f4391bf4078473bd6040d8f11adb0ec1 |
libencode-locale-perl_1.05-3.debian.tar.xz | 2.9 KiB | fb16859fd023be094c9fd254f020bc1ea8e90527adf494a9bf73c187bea16d3e |
Available diffs
- diff from 1.05-2 to 1.05-3 (553 bytes)
No changes file available.
Binary packages built by this source
- libencode-locale-perl: utility to determine the locale encoding
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 are still byte
based. Programs therefore need to decode byte strings that enter the program
from the outside and encode them again on the way out.
.
The POSIX locale system is used to specify both the language conventions
requested by the user and the preferred character set to consume and output.
The Encode::Locale module looks up the charset and encoding (called a CODESET
in the locale jargon) and arranges for the Encode module to know this encoding
under the name "locale". It means bytes obtained from the environment can be
converted to Unicode strings by calling Encode::encode( locale => $bytes) and
converted back again with Encode::decode( locale => $string).