SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

ghc-optparse-applicative rpm build for : openSUSE Leap 42. For other distributions click ghc-optparse-applicative.

Name : ghc-optparse-applicative
Version : 0.12.1.0 Vendor : obs://build_opensuse_org/home:mnhauke
Release : 12.1 Date : 2016-10-06 20:36:16
Group : Development/Languages/Other Source RPM : ghc-optparse-applicative-0.12.1.0-12.1.src.rpm
Size : 0.55 MB
Packager : (none)
Summary : Utilities and combinators for parsing command line options
Description :
Here is a simple example of an applicative option parser:

\' data Sample = Sample { hello :: String , quiet :: Bool
}

sample :: Parser Sample sample = Sample < $> strOption ( long
\"hello\" < > metavar \"TARGET\" < > help \"Target for the greeting\" )
< *> switch ( long \"quiet\" < > help \"Whether to be quiet\" )
\'

The parser is built using applicative style starting from a set of basic
combinators. In this example, \'hello\' is defined as an \'option\' with a \'String\'
argument, while \'quiet\' is a boolean \'flag\' (called \'switch\').

A parser can be used like this:

\' greet :: Sample -> IO () greet (Sample h False) = putStrLn $ \"Hello, \" ++ h
greet _ = return ()

main :: IO () main = execParser opts >>= greet where opts = info
(helper < *> sample) ( fullDesc < > progDesc \"Print a greeting for
TARGET\" < > header \"hello - a test for optparse-applicative\" ) \'

The \'greet\' function is the entry point of the program, while \'opts\' is a
complete description of the program, used when generating a help text.
The \'helper\' combinator takes any parser, and adds a \'help\' option to it (which
always fails).

The \'hello\' option in this example is mandatory (since it doesn\'t have a
default value), so running the program without any argument will display a help
text:

>hello - a test for optparse-applicative > >Usage: hello --hello TARGET
[--quiet] > Print a greeting for TARGET > >Available options: > -h,--help Show
this help text > --hello TARGET Target for the greeting > --quiet Whether to be
quiet

containing a short usage summary, and a detailed list of options with
descriptions.

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/home:/mnhauke:/git-annex/openSUSE_Leap_42.1/x86_64

Content of RPM  Changelog  Provides Requires

Hmm ... It's impossible ;-) This RPM doesn't exist on any FTP server

Provides :
ghc-optparse-applicative
ghc-optparse-applicative(x86-64)
libHSoptparse-applicative-0.12.1.0-IRzvgA8DI9gBDOXQ6QObL3-ghc7.10.2.so()(64bit)

Requires :
libc.so.6()(64bit)
libgmp.so.10()(64bit)
libc.so.6(GLIBC_2.2.5)(64bit)
libutil.so.1()(64bit)
libHSprocess-1.2.3.0-FLTz0SLwyG6LJUpZ52HjkU-ghc7.10.2.so()(64bit)
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
librt.so.1()(64bit)
libHSarray-0.5.1.0-E0sTtauuKsGDLZoT7lTbgZ-ghc7.10.2.so()(64bit)
libHSbase-4.8.1.0-GDytRqRVSUX7zckgKqJjgw-ghc7.10.2.so()(64bit)
libHSbytestring-0.10.6.0-6elQVSg5cWdFrvRnfxTUrH-ghc7.10.2.so()(64bit)
libHSdeepseq-1.4.1.1-LbCWUlehDDeLxurARKDH5o-ghc7.10.2.so()(64bit)
libpthread.so.0()(64bit)
libHSunix-2.7.1.0-A3WgcI5QiHK4PDo4jSYdwQ-ghc7.10.2.so()(64bit)
libHSfilepath-1.4.0.0-KsGE6pHE5eZHSN90ZVax6A-ghc7.10.2.so()(64bit)
rpmlib(CompressedFileNames) <= 3.0.4-1
libHSdirectory-1.2.2.0-KowvXytSqazBcvN7MGpFtg-ghc7.10.2.so()(64bit)
libHStransformers-0.4.2.0-3eG64VdP2vzGjP6wJiCp5X-ghc7.10.2.so()(64bit)
rpmlib(PayloadIsLzma) <= 4.4.6-1
libHSansi-terminal-0.6.2.3-KW0LUY2zB7JCYzE4ZYrwBg-ghc7.10.2.so()(64bit)
libHSansi-wl-pprint-0.6.7.3-KPlSW7tbqXS51Lj59n3FC4-ghc7.10.2.so()(64bit)
libHSinteger-gmp-1.0.0.0-2aU3IZNMF9a7mQ0OzsZ0dS-ghc7.10.2.so()(64bit)
libHSghc-prim-0.4.0.0-8TmvWUcS1U1IKHT0levwg3-ghc7.10.2.so()(64bit)
libHStransformers-compat-0.5.1.4-9QztagRWyOyIfLMXpD0KI1-ghc7.10.2.so()(64bit)
libdl.so.2()(64bit)
libHStime-1.5.0.1-AXTdBF9VRQoBOqJT6qtmVH-ghc7.10.2.so()(64bit)


Content of RPM :
/usr/lib64/ghc-7.10.2/optpa_IRzvgA8DI9gBDOXQ6QObL3
/usr/lib64/ghc-7.10.2/optpa_IRzvgA8DI9gBDOXQ6QObL3/libHSoptparse-applicative-0.12.1.0-IRzvgA8DI9gBDOXQ6QObL3-ghc7.10.2.so
/usr/share/doc/packages/ghc-optparse-applicative
/usr/share/doc/packages/ghc-optparse-applicative/LICENSE

 
ICM