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
|
Source: docopt.cpp
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Tino Didriksen <tino@didriksen.cc>,
Eero Aaltonen <eero.aaltonen@vaisala.com>
Section: libs
Priority: optional
Build-Depends: cmake (>= 3.1),
debhelper-compat (= 13),
python3:any <!nocheck>
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/science-team/docopt.cpp.git
Vcs-Browser: https://salsa.debian.org/science-team/docopt.cpp
Homepage: https://github.com/docopt/docopt.cpp
Rules-Requires-Root: no
Package: libdocopt0
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
${shlibs:Depends}
Description: C++11 port of docopt
With docopt, the option parser is generated based on the program's docstring.
docopt parses the usage pattern ("Usage: ...") and option descriptions (lines
starting with dash "-") and ensures that the program invocation matches the
usage pattern. It parses options, arguments and commands based on that. The
basic idea is that a good help message has all necessary information in it to
make a parser.
.
This is a port of the docopt Python module to C++ with a focus on maintaining
full feature parity (and code structure) as the original. The differences from
the Python port are:
.
- The addition of a docopt_parse function, which does not terminate the
program on error a docopt::value type to hold the various value types that
can be parsed.
.
- Because C++ is statically-typed and Python is not, some changes were made
to the interfaces of the internal parse tree types.
.
- Because std::regex does not have an equivalent to Python's regex.split,
some of the regex's had to be restructured and additional loops used.
.
This package provides the shared libraries.
Package: libdocopt-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
libdocopt0 (= ${binary:Version})
Description: development files for docopt.cpp
With docopt, the option parser is generated based on the program's docstring.
docopt parses the usage pattern ("Usage: ...") and option descriptions (lines
starting with dash "-") and ensures that the program invocation matches the
usage pattern. It parses options, arguments and commands based on that. The
basic idea is that a good help message has all necessary information in it to
make a parser.
.
This is a port of the docopt Python module to C++ with a focus on maintaining
full feature parity (and code structure) as the original. The differences from
the Python port are:
.
- The addition of a docopt_parse function, which does not terminate the
program on error a docopt::value type to hold the various value types that
can be parsed.
.
- Because C++ is statically-typed and Python is not, some changes were made
to the interfaces of the internal parse tree types.
.
- Because std::regex does not have an equivalent to Python's regex.split,
some of the regex's had to be restructured and additional loops used.
.
This package provides the development files.
|