2015-11-03 04:27:11 +01:00
|
|
|
$NetBSD: distinfo,v 1.4 2015/11/03 03:27:38 agc Exp $
|
Initial import of libargparse-0.1.0000 into the NetBSD Packages Collection.
libargparse is a command line argument parser library in C++
The ArgParse class allows you to specify names of options that you
want parsed, along with a usage message for them. Options come in
four flavors: flag, int, float, and string. Flags don't take
arguments, but the other kinds do. For an option that takes an
argument, it can be specified with an equals sign, with a colon, or by
putting it in the next element of argv. ("--foo=stuff",
"--foo:stuff", or "--foo stuff", respectively)
The flavors that take arguments also come in array flavors. With an
array, you specify a pointer to a vector of the basic type, instead of
just a pointer to a basic type. This allows the option to appear more
than once, and the new values are appended to the array. Optionally,
you can also specify a separator character, so that multiple array
elements can be parsed up from a single instance of the option.
Options can start with either a single dash or a double dash, but see
allowOneCharOptionsToBeCombined() for more information.
2002-10-28 14:09:08 +01:00
|
|
|
|
|
|
|
SHA1 (libargparse-0.1.0000.tar.gz) = 5574468f84618677f6a7f46547c49fede109cb7c
|
2005-02-23 23:24:08 +01:00
|
|
|
RMD160 (libargparse-0.1.0000.tar.gz) = 64d0a53a0f7d65c7f6864704761dc92a7ac31451
|
2015-11-03 04:27:11 +01:00
|
|
|
SHA512 (libargparse-0.1.0000.tar.gz) = 5619c3f441af532e1f5564f5c506cfd5d80184c36d4f042d6e78908b0fb88b4da9c78c2108b54d790ce21657c16d4b066fb584878b0a7a37ce0a453afbcc00a8
|
Initial import of libargparse-0.1.0000 into the NetBSD Packages Collection.
libargparse is a command line argument parser library in C++
The ArgParse class allows you to specify names of options that you
want parsed, along with a usage message for them. Options come in
four flavors: flag, int, float, and string. Flags don't take
arguments, but the other kinds do. For an option that takes an
argument, it can be specified with an equals sign, with a colon, or by
putting it in the next element of argv. ("--foo=stuff",
"--foo:stuff", or "--foo stuff", respectively)
The flavors that take arguments also come in array flavors. With an
array, you specify a pointer to a vector of the basic type, instead of
just a pointer to a basic type. This allows the option to appear more
than once, and the new values are appended to the array. Optionally,
you can also specify a separator character, so that multiple array
elements can be parsed up from a single instance of the option.
Options can start with either a single dash or a double dash, but see
allowOneCharOptionsToBeCombined() for more information.
2002-10-28 14:09:08 +01:00
|
|
|
Size (libargparse-0.1.0000.tar.gz) = 113175 bytes
|
2011-11-22 19:04:58 +01:00
|
|
|
SHA1 (patch-argparse.cpp) = a928b2e317ea3a3b9d33cf937134a4b078df827f
|