File: control

package info (click to toggle)
slingshot-clojure 0.12.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 160 kB
  • sloc: xml: 72; makefile: 18
file content (43 lines) | stat: -rw-r--r-- 1,790 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Source: slingshot-clojure
Maintainer: Debian Clojure Maintainers <pkg-clojure-maintainers@lists.alioth.debian.org>
Uploaders: Utkarsh Gupta <utkarsh@debian.org>,
           Apollon Oikonomopoulos <apoikos@debian.org>
Section: java
Priority: optional
Build-Depends: debhelper-compat (= 13),
               javahelper,
               maven-repo-helper,
               clojure,
               libtext-markdown-perl | markdown,
               default-jdk
Standards-Version: 4.5.0
Vcs-Git: https://salsa.debian.org/clojure-team/slingshot-clojure.git
Vcs-Browser: https://salsa.debian.org/clojure-team/slingshot-clojure
Homepage: https://github.com/scgilardi/slingshot/

Package: libslingshot-clojure
Architecture: all
Depends: ${java:Depends},
         ${misc:Depends}
Recommends: ${java:Recommends}
Description: 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