summaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorMark Wright <gienah@gentoo.org>2012-04-23 19:53:04 +1000
committerMark Wright <gienah@gentoo.org>2012-04-23 19:53:04 +1000
commit471d4dc5022599edfaf234682c6e8dfe0b87f7c0 (patch)
treeb8a5a5940e2399e5dce070cee51cf0ee984786b1 /pandoc.cabal
parent869ff4344202e29ae852067c8caebb8bc2abb3ae (diff)
changes for blaze-html 0.5
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal27
1 files changed, 24 insertions, 3 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 160f864ad..e6e3a48cd 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -185,6 +185,9 @@ Flag library
Flag tests
Description: Build test-pandoc.
Default: False
+Flag blaze_html_0_5
+ Description: Use blaze-html 0.5 and blaze-markup 0.5
+ Default: False
Library
-- Note: the following is duplicated in all stanzas.
@@ -192,7 +195,6 @@ Library
-- BEGIN DUPLICATED SECTION
Build-Depends: containers >= 0.1 && < 0.5,
parsec >= 3.1 && < 3.2,
- blaze-html >= 0.4.3.0 && < 0.5,
mtl >= 1.1 && < 2.2,
network >= 2 && < 2.4,
filepath >= 1.1 && < 1.4,
@@ -216,6 +218,13 @@ Library
zlib >= 0.5 && < 0.6,
highlighting-kate >= 0.5.0.2 && < 0.6,
temporary >= 1.1 && < 1.2
+ if flag(blaze_html_0_5)
+ build-depends:
+ blaze-html >= 0.5 && < 0.6,
+ blaze-markup >= 0.5.1 && < 0.6
+ else
+ build-depends:
+ blaze-html >= 0.4.3.0 && < 0.5
if impl(ghc >= 6.10)
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
else
@@ -291,7 +300,6 @@ Executable pandoc
-- BEGIN DUPLICATED SECTION
Build-Depends: containers >= 0.1 && < 0.5,
parsec >= 3.1 && < 3.2,
- blaze-html >= 0.4.3.0 && < 0.5,
mtl >= 1.1 && < 2.2,
network >= 2 && < 2.4,
filepath >= 1.1 && < 1.4,
@@ -315,6 +323,13 @@ Executable pandoc
zlib >= 0.5 && < 0.6,
highlighting-kate >= 0.5.0.2 && < 0.6,
temporary >= 1.1 && < 1.2
+ if flag(blaze_html_0_5)
+ build-depends:
+ blaze-html >= 0.5 && < 0.6,
+ blaze-markup >= 0.5.1 && < 0.6
+ else
+ build-depends:
+ blaze-html >= 0.4.3.0 && < 0.5
if impl(ghc >= 6.10)
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
else
@@ -349,7 +364,6 @@ Executable test-pandoc
-- BEGIN DUPLICATED SECTION
Build-Depends: containers >= 0.1 && < 0.5,
parsec >= 3.1 && < 3.2,
- blaze-html >= 0.4.3.0 && < 0.5,
mtl >= 1.1 && < 2.2,
network >= 2 && < 2.4,
filepath >= 1.1 && < 1.4,
@@ -373,6 +387,13 @@ Executable test-pandoc
zlib >= 0.5 && < 0.6,
highlighting-kate >= 0.5.0.2 && < 0.6,
temporary >= 1.1 && < 1.2
+ if flag(blaze_html_0_5)
+ build-depends:
+ blaze-html >= 0.5 && < 0.6,
+ blaze-markup >= 0.5.1 && < 0.6
+ else
+ build-depends:
+ blaze-html >= 0.4.3.0 && < 0.5
if impl(ghc >= 6.10)
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
else