diff options
author | 2020-05-29 21:52:54 +0100 | |
---|---|---|
committer | 2020-05-29 21:57:47 +0100 | |
commit | c7f54bc735ea4bc7276caaf84b6ab98ee6399507 (patch) | |
tree | d623fd5db1ca424fb09eec1afcd94567e33f176a /dev-haskell/parsec1/metadata.xml | |
parent | media-libs/libinsane: needs object-introspection dependency (diff) | |
download | gentoo-c7f54bc735ea4bc7276caaf84b6ab98ee6399507.tar.gz gentoo-c7f54bc735ea4bc7276caaf84b6ab98ee6399507.tar.bz2 gentoo-c7f54bc735ea4bc7276caaf84b6ab98ee6399507.zip |
dev-haskell/parsec1: new package, a depend onf xmobar-0.32
Portable monadic parser combinators
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-haskell/parsec1/metadata.xml')
-rw-r--r-- | dev-haskell/parsec1/metadata.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dev-haskell/parsec1/metadata.xml b/dev-haskell/parsec1/metadata.xml new file mode 100644 index 000000000000..b0ea7c4648b7 --- /dev/null +++ b/dev-haskell/parsec1/metadata.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>haskell@gentoo.org</email> + <name>Gentoo Haskell</name> + </maintainer> + <longdescription> + Parsec is designed from scratch as an industrial-strength parser + library. It is simple, safe, well documented (on the package + homepage), has extensive libraries and good error messages, + and is also fast. + + This package is the core haskell98 part of the parsec2 + package, intended to preserve its simplicity and portability. + + Note, that the module names overlap with those of parsec from the Haskell + Platform, therefore I do not recommend to unconditionally use parsec1 (or + parsec2 and parsec3) as dependency in cabal files of packages for hackage. + But you may want to develop your code using these limited and portable + parsec1 functions and finally change the dependency from parsec1 to parsec + in order to avoid module ambiguities for users just installing your package. + Your own module ambiguities are best avoided by hiding packages. + + This version only differs from the pervious one by improved error messages + for try (positions are not reset), tokens and thus string (longer + unexpected strings are now reported to match the error position). + The notFollowedBy-parser was generalized (as in parsec-3) so + characters in messages are now shown in single instead of double + quotes. + Also (as since parsec-3.1.2) lookAhead no longer consumes tokens on success + (so that the many-parser can detect this). + </longdescription> +</pkgmetadata> |