cl-babel 20200719.gitf892d05-2 source package in Ubuntu

Changelog

cl-babel (20200719.gitf892d05-2) unstable; urgency=medium

  * Disable clisp autopkgtest on ppc64el, it is not reliable there
  * Bump to S-V 4.6.0

 -- Sébastien Villemot <email address hidden>  Wed, 08 Sep 2021 20:19:27 +0200

Upload details

Uploaded by:
Debian Common Lisp Team
Uploaded to:
Sid
Original maintainer:
Debian Common Lisp Team
Architectures:
all
Section:
lisp
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe lisp
Noble release universe lisp
Mantic release universe lisp
Lunar release universe lisp
Jammy release universe lisp

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
cl-babel_20200719.gitf892d05-2.dsc 2.1 KiB f71c8f4c2871d3079a38658bfc2c054779697bf8e17ba6f6e20336aedbfc3020
cl-babel_20200719.gitf892d05.orig.tar.xz 123.6 KiB 326c238ba5cc394f1ec3e7693ad550b5cfa119fa291d6b43ecc7cdb4aa09fa83
cl-babel_20200719.gitf892d05-2.debian.tar.xz 4.1 KiB 5fade03459de6b9bd0e6f2811d573ddb0fdb2ea1eb696787eb388e04b64d5e84

No changes file available.

Binary packages built by this source

cl-babel: charset encoding/decoding library for Common Lisp

 Babel is a charset encoding/decoding library, not unlike GNU libiconv, but
 completely written in Common Lisp.
 .
 It strives to achieve decent performance. To that effect, it uses OpenMCL's
 approach of calculating the destination buffer size in advance. Most of the
 encoding/decoding algorithms have been adapted from OpenMCL's source.
 .
 Another important goal is reusability. Similarly to SBCL, it defines an
 interface wherein the algorithms can be reused between a variety of data types
 so long we're dealing with conversions between octets and unicode code points.
 .
 Babel comes with converters between strings and (unsigned-byte 8) vectors but
 can be easily extended to deal with, e.g., strings and foreign memory, vectors
 and Closure's runes, etc...