Commit 8428a0c1 authored by Clint Adams's avatar Clint Adams
Browse files

add cassava-megaparsec

parent 19609ec0
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
haskell-cassava-megaparsec (1.0.0-1) unstable; urgency=low

  * Initial release

 -- Clint Adams <clint@debian.org>  Mon, 29 Jul 2019 17:21:45 -0400
+1 −0
Original line number Diff line number Diff line
10
+88 −0
Original line number Diff line number Diff line
Source: haskell-cassava-megaparsec
Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
Uploaders: Clint Adams <clint@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 10),
 haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
 cdbs,
 ghc,
 ghc-prof,
 libghc-cassava-dev (>= 0.4.2),
 libghc-cassava-dev (<< 0.6),
 libghc-cassava-prof (>= 0.4.2),
 libghc-cassava-prof (<< 0.6),
 libghc-megaparsec-dev (>= 6.0),
 libghc-megaparsec-dev (<< 7.0),
 libghc-megaparsec-prof (>= 6.0),
 libghc-megaparsec-prof (<< 7.0),
 libghc-unordered-containers-dev (>= 0.2.7),
 libghc-unordered-containers-dev (<< 0.3),
 libghc-unordered-containers-prof (>= 0.2.7),
 libghc-unordered-containers-prof (<< 0.3),
 libghc-vector-dev (>= 0.11),
 libghc-vector-dev (<< 0.13),
 libghc-vector-prof (>= 0.11),
 libghc-vector-prof (<< 0.13),
 libghc-hspec-dev (>= 2.0),
 libghc-hspec-dev (<< 3.0),
 libghc-hspec-prof (>= 2.0),
 libghc-hspec-prof (<< 3.0),
Build-Depends-Indep: ghc-doc,
 libghc-cassava-doc,
 libghc-megaparsec-doc,
 libghc-unordered-containers-doc,
 libghc-vector-doc,
Standards-Version: 4.4.0
Homepage: https://github.com/stackbuilders/cassava-megaparsec
X-Description: Megaparsec parser of CSV files that plays nicely with Cassava
 This package provides alternative parser for the Cassava package
 written with Megaparsec so you can get better error messages at
 expense of some speed.
 .
 The package works seamlessly with Cassava by replacing the following
 functions: decode, decodeWith, decodeByName, decodeByNameWith.
 .
 The functions work just the same as Cassava's equivalents, but also
 take name of file they parse (to include into error messages) and
 return typed high-quality error messages produced by Megaparsec.

Package: libghc-cassava-megaparsec-dev
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
 ${shlibs:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-cassava-megaparsec-prof
Architecture: any
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Provides: ${haskell:Provides},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}

Package: libghc-cassava-megaparsec-doc
Architecture: all
Section: doc
Depends: ${haskell:Depends},
 ${misc:Depends},
Recommends: ${haskell:Recommends},
Suggests: ${haskell:Suggests},
Conflicts: ${haskell:Conflicts},
Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
 ${haskell:LongDescription}
 .
 ${haskell:Blurb}
+31 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: cassava-megaparsec
Upstream-Contact: Mark Karpov <markkarpov@openmailbox.org>
Source: https://hackage.haskell.org/package/cassava-megaparsec

Files: *
Copyright: 2016-2017 Stack Builders
License: Expat

Files: debian/*
Copyright: held by the contributors mentioned in debian/changelog
License: Expat

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to
 deal in the Software without restriction, including without limitation the
 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 sell copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 IN THE SOFTWARE.
+20 −0
Original line number Diff line number Diff line
--- a/cassava-megaparsec.cabal
+++ b/cassava-megaparsec.cabal
@@ -27,7 +27,7 @@
 library
   build-depends:      base             >= 4.7   && < 5.0
                     , bytestring       >= 0.9   && < 0.11
-                    , cassava          >= 0.4.2 && < 0.5
+                    , cassava          >= 0.4.2 && < 0.6
                     , containers       >= 0.5   && < 0.6
                     , megaparsec       >= 6.0   && < 7.0
                     , unordered-containers >= 0.2.7 && < 0.3
@@ -45,7 +45,7 @@
   type:               exitcode-stdio-1.0
   build-depends:      base               >= 4.7  && < 5.0
                     , bytestring         >= 0.9  && < 0.11
-                    , cassava            >= 0.4.2 && < 0.5
+                    , cassava            >= 0.4.2 && < 0.6
                     , cassava-megaparsec
                     , hspec              >= 2.0  && < 3.0
                     , hspec-megaparsec   >= 1.0  && < 2.0
Loading