svndump-0.4.5: svndump.cabal
name: svndump
category: Subversion
version: 0.4.5
license: BSD3
cabal-version: >= 1.8
license-file: LICENSE
author: John Wiegley
maintainer: John Wiegley <johnw@newartisans.com>
stability: provisional
homepage: http://github.com/jwiegley/svndump/
bug-reports: http://github.com/jwiegley/svndump/issues
copyright: Copyright (C) 2012 John Wiegley
synopsis: Library for reading Subversion dump files
description:
A library for parsing Subversion dump files. The objective is to convert a
dump file into a series of data structures representing that same
information. It uses `Data.ByteString.Lazy` to reading the file, and
`Data.Text` to represent text fields which may contain Unicode characters.
build-type: Simple
tested-with: GHC == 7.4.2
extra-source-files:
.gitignore
LICENSE
README.md
source-repository head
type: git
location: git://github.com/jwiegley/svndump.git
library
build-depends:
base >= 4.3 && < 5,
attoparsec >= 0.10.2,
filepath >= 1.3,
bytestring >= 0.9,
containers >= 0.4.2,
text >= 0.11,
old-locale >= 1.0.0.4,
time >= 1.4
exposed-modules:
Subversion
Subversion.Dump
Subversion.Dump.Raw
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: src
-- Verify the results of the examples
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
build-depends:
base == 4.*,
directory >= 1.0.2,
doctest >= 0.8,
filepath >= 1.3
ghc-options: -Wall -Werror
hs-source-dirs: test
-- Test the raw dump file parser
test-suite test-raw
type: exitcode-stdio-1.0
main-is: test-raw.hs
build-depends:
base >= 4.3 && < 5,
attoparsec >= 0.10.2,
bytestring >= 0.9,
zlib >= 0.5,
svndump
ghc-options: -Wall -Werror
hs-source-dirs: test
-- Test the raw dump file parser
test-suite test-cooked
type: exitcode-stdio-1.0
main-is: test-cooked.hs
build-depends:
base >= 4.3 && < 5,
bytestring >= 0.9,
zlib >= 0.5,
svndump
ghc-options: -Wall -Werror
hs-source-dirs: test