tl-expected 1.1.0-1 source package in Ubuntu

Changelog

tl-expected (1.1.0-1) unstable; urgency=medium

  * New upstream release.
  * Rewrite d/watch file for updated GitHub HTML code.
  * Remove previous patches, because they are no longer needed.
  * Build depend on catch2 instead of outdated catch.
  * New Prefer-packaged-Catch2.patch to avoid network access.
  * Add upstream metadata.

 -- Nicholas Guriev <email address hidden>  Sun, 18 Jun 2023 00:23:17 +0300

Upload details

Uploaded by:
Nicholas Guriev
Uploaded to:
Sid
Original maintainer:
Nicholas Guriev
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
tl-expected_1.1.0-1.dsc 1.3 KiB ee0557d64b1746c9bc82bb63177323f777eb41fe36c153cb42b30aa50128b6c3
tl-expected_1.1.0.orig.tar.gz 23.2 KiB 1db357f46dd2b24447156aaf970c4c40a793ef12a8a9c2ad9e096d9801368df6
tl-expected_1.1.0-1.debian.tar.xz 2.8 KiB 3823467391dedc3a8f2a0ee3ed871482325d14d7b3968d09f1e03130a655657d

Available diffs

No changes file available.

Binary packages built by this source

libexpected-dev: C++11/14/17 std::expected with functional-style extensions

 Single header implementation of std::expected with functional-style extensions.
 .
 std::expected is proposed as the preferred way to represent object which will
 either have an expected value, or an unexpected value giving information about
 why something failed. Unfortunately, chaining together many computations which
 may fail can be verbose, as error-checking code will be mixed in with the
 actual programming logic. This implementation provides a number of utilities to
 make coding with expected cleaner.