cl-babel 20171213.git546fa82-1 source package in Ubuntu

Changelog

cl-babel (20171213.git546fa82-1) unstable; urgency=medium

  * New upstream snapshot.
  * d/watch now tracks git HEAD, as Quicklisp does.
  * Remove obsolete README.Debian.
  * Remove ${shlibs:Depends}, this is an arch:all package.
  * Mark the package as M-A foreign.
  * Ship README.md.
  * Add Depends on cl-trivial-gray-streams, needed by babel-streams.
  * Bump to debhelper compat level 11.
  * Rewrite d/rules using dh.
  * Rewrite d/copyright using machine-readable format 1.0.
  * Bump S-V to 4.1.4.
  * Update package description.
  * Add an autopkgtest that loads the ASDF systems on sbcl, ecl and clisp.
    Running the testsuite is not yet possible, because hu.dwim.stefil is not
    packaged in Debian.
  * Add myself to Uploaders.

 -- Sébastien Villemot <email address hidden>  Fri, 27 Apr 2018 15:37:17 +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

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
cl-babel_20171213.git546fa82-1.dsc 2.1 KiB b6352bcf7e99a48f207325e489ac739de8b77d1f867891056b252051f3269ab9
cl-babel_20171213.git546fa82.orig.tar.xz 121.0 KiB c6ef83bb56790d1e1eef3ff3fac709c38429a2222df64056de53d21017980cf8
cl-babel_20171213.git546fa82-1.debian.tar.xz 3.6 KiB db4d9d265af63c19fa79b5a3bb028b8f771f05c1f7291e7b2eb38ed9ad89356c

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...