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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
Source: serd
Section: libs
Maintainer: Debian Multimedia Maintainers <debian-multimedia@lists.debian.org>
Uploaders:
Alessio Treglia <alessio@debian.org>,
Jaromír Mikeš <mira.mikes@seznam.cz>,
Dennis Braun <snd@debian.org>
Build-Depends:
debhelper-compat (= 13),
meson,
pkgconf,
python3:any
Build-Depends-Indep:
doxygen,
graphviz,
python3-sphinx,
sphinxygen
Standards-Version: 4.7.3
Homepage: https://drobilla.net/software/serd.html
Vcs-Git: https://salsa.debian.org/multimedia-team/serd.git
Vcs-Browser: https://salsa.debian.org/multimedia-team/serd
Package: libserd-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends:
libserd-0-0 (= ${binary:Version}),
${misc:Depends}
Recommends:
pkgconf
Suggests:
libserd-doc
Description: lightweight RDF syntax library - development files
Serd is a lightweight C library for RDF syntax which supports reading
and writing Turtle and NTriples.
.
This package provides the development files for Serd.
Package: libserd-0-0
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends:
${misc:Depends},
${shlibs:Depends}
Suggests:
serdi
Description: lightweight RDF syntax library
Serd is a lightweight C library for RDF syntax which supports reading
and writing Turtle and NTriples.
.
Serd is not intended to be a swiss-army knife of RDF syntax, but rather
is suited to resource limited applications, or situations where a simple
reader/writer with minimal dependencies is ideal (e.g. in LV2 hosts or
plugins).
.
Serd is:
* small: Serd is implemented in under 2500 lines1 of standard C code.
* portable and dependency-free: Serd uses only the C standard library,
and has no external dependencies, making it a lightweight dependency
in every sense.
* fast and lightweight: Serd (and the included serdi tool) can be used
to stream abbreviated Turtle (unlike many other tools which can not
stream since they must first build an internal model to abbreviate).
In other words, Serd can re-serialise an unbounded amount of Turtle
using a fixed amount of memory, preserving the abbreviations in the
input.
* conformant and well-tested: Serd is written to the Turtle, NTriples
and URI specifications, and includes a comprehensive test suite which
includes all the normative examples from the Turtle specification, all
the "normal" examples from the URI specification, and additional tests
added specifically for Serd. The test suite has over 96% code coverage
(by line), and runs with zero memory errors or leaks.
Package: serdi
Architecture: any
Section: text
Depends:
${misc:Depends},
${shlibs:Depends}
Description: lightweight RDF syntax library - serdi tool
Serd is a lightweight C library for RDF syntax which supports reading
and writing Turtle and NTriples.
.
This package provides the utility 'serdi'.
Package: libserd-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Enhances:
libserd-dev
Depends:
libjs-sphinxdoc (>= 3.4.3-1),
${misc:Depends}
Description: lightweight RDF syntax library - documentation
Serd is a lightweight C library for RDF syntax which supports reading
and writing Turtle and NTriples.
.
This package provides the developer's reference for serd.
|