golang-github-dop251-scsu 0.0~git20220106.84ac880-3 source package in Ubuntu

Changelog

golang-github-dop251-scsu (0.0~git20220106.84ac880-3) unstable; urgency=medium

  * source upload for migration to testing

 -- Drew Parsons <email address hidden>  Wed, 07 Dec 2022 16:39:38 +0100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging 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

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-dop251-scsu_0.0~git20220106.84ac880-3.dsc 2.3 KiB a0551326690ce35d711454899bb33e4129eb0d54a4f8165de905e84540f5ebd3
golang-github-dop251-scsu_0.0~git20220106.84ac880.orig.tar.xz 12.3 KiB 99bd98288729df1ae2175b8d9c913e0ca147f8992d31274642e6981f547cabe3
golang-github-dop251-scsu_0.0~git20220106.84ac880-3.debian.tar.xz 2.7 KiB e74f2d081c71f2dbe65a4672b65c6f7b770c727f5ef3c3d2fe3414d825e03f38

No changes file available.

Binary packages built by this source

golang-github-dop251-scsu-dev: Go Implementation of Standard Compression Scheme for Unicode (library)

 A Standard Compression Scheme for Unicode implementation in Go.
 .
 This in an implementation of SCSU as described in
 (https://www.unicode.org/reports/tr6/tr6-4.html)
 .
 Although UTF-8 is now the most commonly used and recommended encoding, in
 some cases the use of SCSU can be beneficial. For example when storing
 or transmitting short alphabetical texts (Arabic, Hebrew, Russian, etc.)
 where general-purpose compression algorithms are inefficient, but SCSU
 provides nearly 50% compression ratio over UTF-8.
 .
 The code is based on the sample Java implementation found at
 (ftp://ftp.unicode.org/Public/PROGRAMS/SCSU/) however the encoding
 algorithm has been slightly modified as the implementation above
 contains a few bugs.
 .
 The code has been fuzz-tested using go-fuzz to ensure that random
 input neither crashes the Encoder nor the Decoder, and if it happens
 to be a valid UTF-8, an Encode/Decode cycle produces identical
 output.