trivial-features 20200702.gite7bb968-1 source package in Ubuntu

Changelog

trivial-features (20200702.gite7bb968-1) unstable; urgency=medium

  * New upstream snapshot
  * Disable clisp autopkgtest on i386, it is not reliable there
  * Bump to debhelper 13
  * Bump to S-V 4.5.1

 -- Sébastien Villemot <email address hidden>  Fri, 11 Dec 2020 14:13:52 +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

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
trivial-features_20200702.gite7bb968-1.dsc 2.2 KiB d1557188883f5cfa21617fa81a7a892d963ebd1ef8e645398af6017d059d38f1
trivial-features_20200702.gite7bb968.orig.tar.xz 9.9 KiB 7d71218e9ef82c364dec9dc67fef768f6ed01fca9e94386325eeecb249aeb145
trivial-features_20200702.gite7bb968-1.debian.tar.xz 3.0 KiB 3c025475344c01c1f43f645c48da65e4dd7033d4ac54c63bd3740051a158245f

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