libencode-locale-perl 1.02-1 source package in Ubuntu

Changelog

libencode-locale-perl (1.02-1) unstable; urgency=low

  [ Nicholas Bamber ]
  * New upstream release

  [ Salvatore Bonaccorso ]
  * debian/patches: Refresh spelling.patch.

libencode-locale-perl (1.01-1) unstable; urgency=low

  * Initial Release (Closes: #617518).
 -- Ubuntu Archive Auto-Sync <email address hidden>   Wed,  04 May 2011 09:38:10 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libencode-locale-perl_1.02.orig.tar.gz 6.6 KiB 20c5ba2ab0ac00f0e6d5c5d405f2ccb3fdb0212de3519ec8d16688574d8d5340
libencode-locale-perl_1.02-1.debian.tar.gz 2.1 KiB 5a49183140a018a6fcbc3872599a77efeaf771bd38786fae567d0d9be962238a
libencode-locale-perl_1.02-1.dsc 2.0 KiB b38cb0b6e478b19a5be78532123267a9342ccb7f4250277e2dfd8cb71552525d

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