libencode-locale-perl 1.05-1.1 source package in Ubuntu

Changelog

libencode-locale-perl (1.05-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Fri, 18 Dec 2020 19:21:56 +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 Pocket Published Component Section
Jammy release main perl

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libencode-locale-perl_1.05-1.1.dsc 2.1 KiB 4044cf6ee9e24a59c1cc856f9c34636ec1c7abf9cd0bbf3e18df963770819f30
libencode-locale-perl_1.05.orig.tar.gz 8.2 KiB 176fa02771f542a4efb1dbc2a4c928e8f4391bf4078473bd6040d8f11adb0ec1
libencode-locale-perl_1.05-1.1.debian.tar.xz 2.6 KiB 707a7e13989ae5ff3af92e494f6609ebe335ee9269251211855776cd729816bb

Available diffs

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