2021-04-23 10:49:16 by Masatake Daimon | Files touched by this commit (4) |
Log message:
Update to cmdargs-0.10.21
0.10.21, released 2021-02-14
Handle GHC 9.0 optimisations
Remove support for GHC 7.4 to 7.8
|
2020-05-11 19:52:21 by Roland Illig | Files touched by this commit (190) |
Log message:
hs-*: add PLIST files
These PLIST files have been autogenerated by mk/haskell.mk using
HS_UPDATE_PLIST=yes during a bulk build. They will help to track changes
to the packages. The Haskell packages didn't have PLIST files because
their paths contained package hashes. These hashes are now determined by
mk/haskell.mk, which makes it easy to generate easy to read PLIST files.
|
2020-01-01 04:01:16 by Masatake Daimon | Files touched by this commit (4) |
Log message:
Update to cmdargs-0.10.20
0.10.20, released 2018-01-22
#54, use the getopt data types from base
0.10.19, released 2018-01-01
#47, ensure Semigroup instance on all GHC versions
0.10.18, released 2017-09-24
#47, GHC 8.4 compatibility
0.10.17, released 2017-03-31
Add processValueIO for more controlled error messages
#529, don't include the stack trace in processValue
0.10.16, released 2017-03-22
Minor improvement to error messages
0.10.15, released 2017-03-06
#43, GHC 8.2 compatibility
0.10.14, released 2016-02-16
#39, ensure correct line breaks in HTML help output
#18, preserve manual \n in help messages
#25, reformat the README
|
2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995) |
Log message:
Add SHA512 digests for distfiles for devel category
Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2015-06-04 15:06:12 by Ryosuke Moro | Files touched by this commit (3) |
Log message:
Update to 0.10.13
CHANGES:
0.10.13
#24, support Ratio in some places
https://github.com/ndmitchell/cmdargs/issues/24
0.10.12
GHC 7.2 compatibility
0.10.11
#15, never put [brackets] around optional args in Explicit
https://github.com/ndmitchell/cmdargs/issues/15
|
2014-11-23 13:52:33 by Ryosuke Moro | Files touched by this commit (51) |
Log message:
Bump PKGREVISION for hs-transformers-0.4.2.0
|
2014-10-08 23:56:17 by Ryosuke Moro | Files touched by this commit (3) |
Log message:
Update to 0.10.10
CHANGES:
0.10.10
#14, fix @ file arguments
deprecated tyConString
|
2014-08-29 16:08:42 by Ryosuke Moro | Files touched by this commit (61) |
Log message:
make it clear what package depend on
discussed with wiz@.
|
2014-07-28 23:35:23 by Ryosuke Moro | Files touched by this commit (3) |
Log message:
Update to 0.10.9
CHANGES:
0.10.9
#10, fix versionArgs (broken in 0.10.8)
0.10.8
Avoid compilation warnings on GHC 7.8
#9, add --numeric-version flag
Update the copyright year
Change GetOpt.usageInfo to be more like GetOpt
|
2014-05-22 23:39:23 by Ryosuke Moro | Files touched by this commit (5) |
Log message:
Import cmdargs-0.10.7 as devel/hs-cmdargs,
packaged for wip.
This library provides an easy way to define command line parsers.
Most users will want to use the System.Console.CmdArgs.Implicit module,
whose documentation contains an example.
* System.Console.CmdArgs.Explicit provides a way to write command line parsers
for both single mode programs (most programs) and multiple mode programs
(e.g. darcs or cabal). Parsers are defined by constructing a data structure.
* System.Console.CmdArgs.Implicit provides a way to concisely define
command line parsers, up to three times shorter than getopt.
These parsers are translated into the Explicit data type.
* System.Console.CmdArgs.GetOpt provides a wrapper allowing compatiblity
with existing getopt parsers, mapping to the Explicit data type.
For a general reference on what command line flags are commonly used,
see http://www.faqs.org/docs/artu/ch10s05.html.
|