libencode-locale-perl 1.05-ok2 source package in openKylin

Changelog

libencode-locale-perl (1.05-ok2) yangtze; urgency=medium

  * Modify debian/control.

 -- sufang <email address hidden>  Thu, 15 Sep 2022 15:46:14 +0800

Upload details

Uploaded by:
sufang
Sponsored by:
luoyaoming
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Nile V2.0 proposed main perl
Nile V2.0 release main perl
Yangtze V1.0 release main perl
Yangtze V1.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libencode-locale-perl_1.05-ok2.tar.xz 8.9 KiB 209a2156213ba04b2cb9326474ad2b817792f308290a59e162b876c5cb0c594d
libencode-locale-perl_1.05-ok2.dsc 1.5 KiB 0215187908692b5759d8bc48fc8583902166c3f97b2db37e278c740824363d5c

Available diffs

View changes file

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).