slingshot-clojure 0.12.2-3 source package in Ubuntu

Changelog

slingshot-clojure (0.12.2-3) unstable; urgency=medium

  * Update package wrt cme.
    - Update Standards-Version to 4.5.1.
    - Bump dh-compat to 13.
    - Update Vcs fields.
  * Add myself as an uploader instead. (Closes: #891311)
    - Thanks for all the work, Wolodja Wentland, so far!

 -- Utkarsh Gupta <email address hidden>  Mon, 23 Nov 2020 21:23:05 +0530

Upload details

Uploaded by:
Debian Clojure Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Clojure Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
slingshot-clojure_0.12.2-3.dsc 2.1 KiB 06fc5fc59582be009a284dbfea540f68886c4d5efb0a5338d458500c1148547b
slingshot-clojure_0.12.2.orig.tar.gz 13.0 KiB 6d25fa2d1bee77e5371fe1246f28d8a1d257ae3fe111c9c72dd27be3773e7520
slingshot-clojure_0.12.2-3.debian.tar.xz 7.2 KiB c5e99e904a924c0e8bb5dc48e82b2ce6ad2623bbc0097cacaad26c904008ec17

Available diffs

No changes file available.

Binary packages built by this source

libslingshot-clojure: Enhanced throw and catch library for Clojure

 Slingshot is a Clojure library providing enhanced throw and catch replacements
 try+ and throw+.
 .
 Each is 100% compatible with Clojure's and Java's native try and throw both in
 source code and at runtime. Each also provides new capabilities intended to
 improve ease of use by leveraging Clojure's features like maps, records, and
 destructuring. Among them:
 .
    * throw+ can throw any Java object, not just those whose class is derived
      from java.lang.Throwable (e.g. Clojure maps or records)
 .
    * catch clauses within try+ can catch any Java object thrown by throw+,
      Clojure's throw, or Java's throw
 .
    * selectors in catch clauses allow matching on class name, key-value
      vectors, predicates and more
 .
    * Information about the context of a throw site is accessible via a hidden
      argument that includes information on, for example, the caught object,
      exception messages and stack traces