aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal40
1 files changed, 16 insertions, 24 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index dedeaaeca..b20b51842 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -1,5 +1,5 @@
name: pandoc
-version: 2.1
+version: 2.1.1
cabal-version: >= 1.10
build-type: Custom
license: GPL
@@ -11,7 +11,7 @@ bug-reports: https://github.com/jgm/pandoc/issues
stability: alpha
homepage: http://pandoc.org
category: Text
-tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2
+tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2
synopsis: Conversion between markup formats
description: Pandoc is a Haskell library for converting from one markup
format to another, and a command-line tool that uses
@@ -302,6 +302,8 @@ extra-source-files:
test/docx/*.native
test/epub/*.epub
test/epub/*.native
+ test/pptx/*.pptx
+ test/pptx/*.native
test/txt2tags.t2t
test/twiki-reader.twiki
test/tikiwiki-reader.tikiwiki
@@ -347,6 +349,7 @@ library
unordered-containers >= 0.2 && < 0.3,
parsec >= 3.1 && < 3.2,
mtl >= 2.2 && < 2.3,
+ exceptions >= 0.8 && < 0.9,
filepath >= 1.1 && < 1.5,
process >= 1.2.3 && < 1.7,
directory >= 1 && < 1.4,
@@ -362,10 +365,10 @@ library
pandoc-types >= 1.17.3 && < 1.18,
aeson >= 0.7 && < 1.3,
aeson-pretty >= 0.8 && < 0.9,
- tagsoup >= 0.14.2 && < 0.15,
+ tagsoup >= 0.14.3 && < 0.15,
base64-bytestring >= 0.1 && < 1.1,
zlib >= 0.5 && < 0.7,
- skylighting >= 0.5.1 && < 0.6,
+ skylighting >= 0.5.1 && < 0.7,
data-default >= 0.4 && < 0.8,
temporary >= 1.1 && < 1.3,
blaze-html >= 0.5 && < 0.10,
@@ -414,9 +417,6 @@ library
RelaxedPolyRec, DeriveDataTypeable, TypeSynonymInstances,
FlexibleInstances
hs-source-dirs: src
- if impl(ghc < 7.10)
- hs-source-dirs: prelude
- other-modules: Prelude
exposed-modules: Text.Pandoc,
Text.Pandoc.App,
@@ -501,11 +501,16 @@ library
Text.Pandoc.ImageSize,
Text.Pandoc.BCP47,
Text.Pandoc.Class
- other-modules: Text.Pandoc.Readers.Docx.Lists,
+ other-modules: Text.Pandoc.Filter,
+ Text.Pandoc.Filter.JSON,
+ Text.Pandoc.Filter.Lua,
+ Text.Pandoc.Filter.Path,
+ Text.Pandoc.Readers.Docx.Lists,
Text.Pandoc.Readers.Docx.Combine,
Text.Pandoc.Readers.Docx.Parse,
Text.Pandoc.Readers.Docx.Util,
Text.Pandoc.Readers.Docx.StyleMap,
+ Text.Pandoc.Readers.Docx.Fields,
Text.Pandoc.Readers.Odt.Base,
Text.Pandoc.Readers.Odt.Namespaces,
Text.Pandoc.Readers.Odt.StyleReader,
@@ -526,6 +531,8 @@ library
Text.Pandoc.Readers.Org.ParserState,
Text.Pandoc.Readers.Org.Parsing,
Text.Pandoc.Readers.Org.Shared,
+ Text.Pandoc.Writers.Powerpoint.Presentation,
+ Text.Pandoc.Writers.Powerpoint.Output,
Text.Pandoc.Lua.Filter,
Text.Pandoc.Lua.Init,
Text.Pandoc.Lua.Module.MediaBag,
@@ -556,9 +563,6 @@ executable pandoc
RelaxedPolyRec, DeriveDataTypeable, TypeSynonymInstances,
FlexibleInstances
hs-source-dirs: .
- if impl(ghc < 7.10)
- hs-source-dirs: prelude
- other-modules: Prelude
main-is: pandoc.hs
buildable: True
other-modules: Paths_pandoc
@@ -566,9 +570,6 @@ executable pandoc
executable trypandoc
main-is: trypandoc.hs
hs-source-dirs: trypandoc
- if impl(ghc < 7.10)
- hs-source-dirs: prelude
- other-modules: Prelude
default-language: Haskell2010
if flag(trypandoc)
build-depends: base, aeson, pandoc,
@@ -580,9 +581,6 @@ executable trypandoc
executable weigh-pandoc
main-is: weigh-pandoc.hs
hs-source-dirs: benchmark
- if impl(ghc < 7.10)
- hs-source-dirs: prelude
- other-modules: Prelude
if flag(weigh-pandoc)
build-depends: pandoc,
base >= 4.2 && < 5,
@@ -599,9 +597,6 @@ test-suite test-pandoc
type: exitcode-stdio-1.0
main-is: test-pandoc.hs
hs-source-dirs: test
- if impl(ghc < 7.10)
- hs-source-dirs: prelude
- other-modules: Prelude
build-depends: base >= 4.2 && < 5,
pandoc,
pandoc-types >= 1.17.3 && < 1.18,
@@ -619,7 +614,7 @@ test-suite test-pandoc
tasty-hunit >= 0.9 && < 0.11,
tasty-quickcheck >= 0.8 && < 0.10,
tasty-golden >= 2.3 && < 2.4,
- QuickCheck >= 2.4 && < 2.11,
+ QuickCheck >= 2.4 && < 2.12,
containers >= 0.4.2.1 && < 0.6,
executable-path >= 0.0 && < 0.1,
zip-archive >= 0.2.3.4 && < 0.4,
@@ -681,9 +676,6 @@ benchmark benchmark-pandoc
type: exitcode-stdio-1.0
main-is: benchmark-pandoc.hs
hs-source-dirs: benchmark
- if impl(ghc < 7.10)
- hs-source-dirs: prelude
- other-modules: Prelude
build-depends: pandoc,
time, bytestring, containers,
base >= 4.2 && < 5,