File: control

package info (click to toggle)
ocaml-sqlexpr 0.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 440 kB
  • ctags: 676
  • sloc: ml: 7,021; makefile: 26
file content (61 lines) | stat: -rw-r--r-- 2,511 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Source: ocaml-sqlexpr
Section: ocaml
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Uploaders: Dmitrijs Ledkovs <xnox@debian.org>
Build-Depends:
  ocaml-nox (>= 3.11.1-3~),
  ocaml-findlib,
  ocaml-base-nox,
  libsqlite3-ocaml-dev,
  liblwt-ocaml-dev,
  libextlib-ocaml-dev,
  libcsv-ocaml-dev,
  libbatteries-ocaml-dev,
  libestring-ocaml-dev,
  dh-ocaml (>= 0.9~),
  debhelper (>= 7.0.50~),
  camlp4
Standards-Version: 3.9.2
Homepage: http://github.com/mfp/ocaml-sqlexpr
Vcs-Git: git://anonscm.debian.org/pkg-ocaml-maint/packages/ocaml-sqlexpr.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ocaml-maint/packages/ocaml-sqlexpr.git

Package: libsqlexpr-ocaml-dev
Architecture: any
Depends: ${ocaml:Depends}, ${misc:Depends}, ${shlibs:Depends}
Provides: ${ocaml:Provides}
Recommends: ocaml-findlib
Description: type-safe, convenient SQLite database access (development)
 Minimalistic library and syntax extension for type-safe, convenient execution
 of SQL statements. Currently compatible with Sqlite3.
 .
 Sqlexpr features:
  * automated prepared statement caching, param binding, data extraction, error
    checking (including automatic stmt reset to avoid BUSY/LOCKED errors in
    subsequent queries), stmt finalization on db close, etc.
  * HOFs like iter, fold, transaction
  * support for different concurrency models: everything is functorized over a
    THREAD monad, so you can for instance do concurrent folds/iters with Lwt
  * support for SQL stmt syntax checks and some extra semantic checking (column
    names, etc)

Package: libsqlexpr-ocaml
Architecture: any
Depends: ${ocaml:Depends}, ${misc:Depends}, ${shlibs:Depends}
Provides: ${ocaml:Provides}
Description: type-safe, convenient SQLite database access (runtime)
 Minimalistic library and syntax extension for type-safe, convenient execution
 of SQL statements. Currently compatible with Sqlite3.
 .
 Sqlexpr features:
  * automated prepared statement caching, param binding, data extraction, error
    checking (including automatic stmt reset to avoid BUSY/LOCKED errors in
    subsequent queries), stmt finalization on db close, etc.
  * HOFs like iter, fold, transaction
  * support for different concurrency models: everything is functorized over a
    THREAD monad, so you can for instance do concurrent folds/iters with Lwt
  * support for SQL stmt syntax checks and some extra semantic checking (column
    names, etc)
 .
 This package contains the shared runtime libraries.