File: control

package info (click to toggle)
r-cran-fastmap 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 344 kB
  • sloc: cpp: 1,911; ansic: 29; sh: 13; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,133 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
Source: r-cran-fastmap
Maintainer: Debian R Packages Maintainers <r-pkg-team@alioth-lists.debian.net>
Uploaders: Andreas Tille <tille@debian.org>
Section: gnu-r
Testsuite: autopkgtest-pkg-r
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-r,
               r-base-dev
Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/r-pkg-team/r-cran-fastmap
Vcs-Git: https://salsa.debian.org/r-pkg-team/r-cran-fastmap.git
Homepage: https://cran.r-project.org/package=fastmap
Rules-Requires-Root: no

Package: r-cran-fastmap
Architecture: any
Depends: ${R:Depends},
         ${shlibs:Depends},
         ${misc:Depends}
Recommends: ${R:Recommends}
Suggests: ${R:Suggests}
Description: GNU R fast implementation of a key-value store
 Fast implementation of a key-value store. Environments are commonly
 used as key-value stores, but every time a new key is used, it is added to
 R's global symbol table, causing a small amount of memory leakage. This can
 be problematic in cases where many different keys are used. Fastmap avoids
 this memory leak issue by implementing the map using data structures in C++.