NOTICE: This package has been removed from pkgsrc

./wip/hs-cmdargs, Command line argument processing

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 0.10.7, Package name: hs-cmdargs-0.10.7, Maintainer: szptvlfn

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.


Required to run:
[wip/ghc] [devel/hs-transformers]

Master sites:

SHA1: a3ded794be497c2b63bafe2a8e0805843cb25c9c
RMD160: eebac56bb4085f7192342df9340c2b9c479d374d
Filesize: 60.084 KB

Version history: (Expand)


CVS history: (Expand)


   2014-05-22 23:41:47 by Ryosuke Moro | Files touched by this commit (22) | Package removed
Log message:
Remove hs-cmdargs, imported to pkgsrc/devel.
Remove hs-x11-xft, imported to pkgsrc/x11.
Remove xmonad, imported to pkgsrc/wm.
   2014-05-15 23:49:04 by Ryosuke Moro | Files touched by this commit (110)
Log message:
Remove hs-transformers, imported to pkgsrc/devel.
   2014-05-05 02:03:01 by Ryosuke Moro | Files touched by this commit (74)
Log message:
Update MAINTAINER address
   2014-04-17 00:16:27 by Ryosuke Moro | Files touched by this commit (10)
Log message:
- ready for HASKELL_ENABLE_HADDOCK_DOCUMENTATION= yes
   2013-12-10 14:37:42 by Ryosuke Moro | Files touched by this commit (3)
Log message:
Update to 0.10.7

CHANGES:
0.10.7
    #1, fix timestamps in .tar.gz dist file
 ( #1 => https://github.com/ndmitchell/cmdargs/issues/1 )
   2013-12-06 00:05:28 by Ryosuke Moro | Files touched by this commit (3)
Log message:
Update to 0.10.6

CHANGES:
0.10.6
    #625, more documentation about args/argPos
    #626, ensure initial lists don't get reversed (fix after #610)
    ( #610 => http://code.google.com/p/ndmitchell/issues/detail?id=610 )
    ( #625 => http://code.google.com/p/ndmitchell/issues/detail?id=625 )
    ( #626 => http://code.google.com/p/ndmitchell/issues/detail?id=626 )
   2013-07-29 22:09:58 by Ryosuke Moro | Files touched by this commit (5)
Log message:
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.