trivial-features 20210228.gitf6e8dd7-2 source package in Ubuntu

Changelog

trivial-features (20210228.gitf6e8dd7-2) unstable; urgency=medium

  * clisp-32bit.patch: new patch, fixes the 32-bit feature on CLISP.
    This is needed for CFFI 0.24.1 (see #999799)

 -- Sébastien Villemot <email address hidden>  Wed, 24 Nov 2021 16:05:31 +0100

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
trivial-features_20210228.gitf6e8dd7-2.dsc 2.2 KiB 1c5c664b04af41b8364d27f32803a54a0d4929c4f1d2ba96ae55cdfdc5e08aba
trivial-features_20210228.gitf6e8dd7.orig.tar.xz 10.1 KiB 3285619fd75ca50ec794d46e87bf7f738b0cc67e6700fac635c31a955e94e90e
trivial-features_20210228.gitf6e8dd7-2.debian.tar.xz 3.5 KiB 5da343449616517c948895cf4d1c59ff4f3f1e519c80da9c480589732c65e81e

No changes file available.

Binary packages built by this source

cl-trivial-features: abstraction layer for the *FEATURES* across Common Lisp implementations

 trivial-features ensures consistent *FEATURES* across multiple Common
 Lisp implementations.
 .
 For example, on MacOS X platforms, while most Lisps push `:DARWIN` to
 `*FEATURES*`, CLISP and Allegro push `:MACOS` and `:MACOSX` instead,
 respectively. Some Lisps might not push any feature suggesting MacOS
 X at all. trivial-features will make sure all Lisps will have
 `:DARWIN` in the `*FEATURES*` list when running on MacOS X. This
 way, you can write
 .
    #+darwin foo #-darwin bar
 .
 instead of
 .
    #+(or darwin macos macosx) foo
    #-(or darwin macos macosx) bar