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

Changelog

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


  [ Salvatore Bonaccorso ]
  * debian/copyright: Replace DEP5 Format-Specification URL from
    svn.debian.org to anonscm.debian.org URL.

  [ Fabrizio Regalli ]
  * Imported Upstream version 1.03
  * Updated d/compat to 8
  * Updated debhelper to (>= 8)
  * Added myself to Uploaders and Copyright
  * Updated d/copyright using latest .174 DEP5 format
  * Removed no more necessary spelling.patch 
    It is now included in the upstream source code

 -- Fabrizio Regalli <email address hidden>  Sun, 12 Feb 2012 14:31:35 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release main perl

Builds

Quantal: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libencode-locale-perl_1.03-1.dsc 2.1 KiB f7e6387d5404176b4bf6ccff9afbba69b46dd28dc4c44afe971f73401c4a2480
libencode-locale-perl_1.03.orig.tar.gz 6.7 KiB f76337e0933225914111fcc3319ff4db359b1abfd1aa56dff2df5378db0e2d55
libencode-locale-perl_1.03-1.debian.tar.gz 2.1 KiB 6ee7e357976ad49d1a88b0c5cbc9e3cbc92e94cda72a19082529eb931d3115c6

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