translitcodec 0.7.0-2 source package in Ubuntu

Changelog

translitcodec (0.7.0-2) unstable; urgency=medium

  * debian/watch: Correct pattern for expected filename.

 -- Edward Betts <edward@4angle.com>  Wed, 17 Aug 2022 23:23:04 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
translitcodec_0.7.0-2.dsc 2.0 KiB f731ed835e80781a783b229e4245fe970fedaaeb6165326be661d385b2559ab5
translitcodec_0.7.0.orig.tar.gz 48.9 KiB 4ac4f1dff1e512b8a1d1e399cc45651a8bc35b8b18b84d6dcb71d007c6dcb1b3
translitcodec_0.7.0-2.debian.tar.xz 2.5 KiB 10913327ee6c83fa3b3980fe63e0f76199ec5d41f0ffebf046bf578f0fe387a5

Available diffs

No changes file available.

Binary packages built by this source

python3-translitcodec: Unicode to 8-bit charset transliteration codec

 This package contains codecs for transliterating ISO 10646 texts into
 best-effort representations using smaller coded character sets (ASCII,
 ISO 8859, etc.). The translation tables used by the codecs are from
 the 'transtab' collection by Markus Kuhn.
 .
 Three types of transliterating codecs are provided:
 .
 "long", using as many characters as needed to make a natural replacement.
 For example, \u00e4 LATIN SMALL LETTER A WITH DIAERESIS 'ä' will be replaced
 with 'ae'.
 .
 "short", using the minimum number of characters to make a replacement.
 For example, \u00e4 LATIN SMALL LETTER A WITH DIAERESIS 'ä' will be replaced
 with 'a'.
 .
 "one", only performing single character replacements. Characters that can
 not be transliterated with a single character are passed through unchanged.
 For example, \u2639 WHITE FROWNING FACE '☹' will be passed through unchanged.