File: control

package info (click to toggle)
lazymap-clojure 3.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 144 kB
  • sloc: sh: 124; xml: 30; makefile: 28
file content (29 lines) | stat: -rw-r--r-- 1,150 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
Source: lazymap-clojure
Section: java
Priority: optional
Maintainer: Debian Clojure Maintainers <pkg-clojure-maintainers@lists.alioth.debian.org>
Uploaders: Apollon Oikonomopoulos <apoikos@debian.org>
Build-Depends: clojure,
               debhelper-compat (= 13),
               default-jdk,
               javahelper,
               maven-repo-helper,
               markdown
Standards-Version: 4.5.1
Vcs-Git: https://salsa.debian.org/clojure-team/lazymap-clojure.git
Vcs-Browser: https://salsa.debian.org/clojure-team/lazymap-clojure
Homepage: https://bitbucket.org/kotarak/lazymap
Rules-Requires-Root: no

Package: liblazymap-clojure
Architecture: all
Depends: ${java:Depends},
         ${misc:Depends},
         libclojure-java,
Recommends: ${java:Recommends}
Description: transparent wrapper around Clojure's map types
 LazyMap is a transparent wrapper around the map types of Clojure. It works
 similar to lazy-seq for sequences: the value associated with a key via
 lazy-assoc is not evaluated until it is actually accessed. So if the value is
 dissoc'd before it is accessed the code necessary to generate the value is not
 executed at all.