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

Changelog

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

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit.

  [ Sébastien Villemot ]
  * New upstream snapshot
  * Update standards version to 4.6.0, no changes needed.
  * Add more fields to debian/upstream/metadata

 -- Sébastien Villemot <email address hidden>  Fri, 12 Nov 2021 15:59:19 +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

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
trivial-features_20210228.gitf6e8dd7-1.dsc 2.2 KiB 5891676a533503df51a377bf826f245e820be7df2d6ca3f227cd2cdb8da6e9e5
trivial-features_20210228.gitf6e8dd7.orig.tar.xz 10.1 KiB 3285619fd75ca50ec794d46e87bf7f738b0cc67e6700fac635c31a955e94e90e
trivial-features_20210228.gitf6e8dd7-1.debian.tar.xz 3.2 KiB 51770220b98f6563d8009483e33ad92f9d27c291e8431b734ed56ba44088aa50

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