File: control

package info (click to toggle)
libconvert-ascii85-perl 0.01-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 88 kB
  • sloc: perl: 115; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Source: libconvert-ascii85-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl,
                     libtest-pod-perl,
                     libtest-pod-coverage-perl
Standards-Version: 3.9.4
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libconvert-ascii85-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libconvert-ascii85-perl.git
Homepage: https://metacpan.org/release/Convert-Ascii85

Package: libconvert-ascii85-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Multi-Arch: foreign
Description: module for encoding and decoding of ascii85/base85 strings
 Convert::Ascii85 implements the Ascii85 (also known as Base85) algorithm for
 encoding binary data as text. This is done by interpreting each group of four
 bytes as a 32-bit integer, which is then converted to a five-digit base-85
 representation using the digits from ASCII 33 (!) to 117 (u).
 .
 This is similar to MIME::Base64 but more space efficient: The overhead is
 only 1/4 of the original data (as opposed to 1/3 for Base64).