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

Changelog

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

  * identify Unicode, Inc. as a copyright coauthor

 -- Drew Parsons <email address hidden>  Sun, 27 Nov 2022 22:02:59 +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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-dop251-scsu_0.0~git20220106.84ac880-2.dsc 2.3 KiB 48b4b149f71590642a50a1d507cb57f1002978fafe2dbbb7b5a114973fa27d0e
golang-github-dop251-scsu_0.0~git20220106.84ac880.orig.tar.xz 12.3 KiB 99bd98288729df1ae2175b8d9c913e0ca147f8992d31274642e6981f547cabe3
golang-github-dop251-scsu_0.0~git20220106.84ac880-2.debian.tar.xz 2.6 KiB 015e4d9f6e0ce6ce706c9e0f8a6a9381a00e18e601a3fe11f74a6fd4b6e3a799

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.