Skip to content
Commits on Source (5)
Index: b/src/Text/BlogLiterately/Transform.hs
===================================================================
--- a/src/Text/BlogLiterately/Transform.hs
+++ b/src/Text/BlogLiterately/Transform.hs
@@ -562,7 +562,7 @@ xformDoc bl xforms =
}
mathOption opt
| opt `isPrefixOf` "latexmathml" ||
- opt `isPrefixOf` "asciimathml" = LaTeXMathML (mathUrlMaybe opt)
+ opt `isPrefixOf` "asciimathml" = LaTeXMathML (mathUrl latexmathmlURL opt)
| opt `isPrefixOf` "mathml" = MathML (mathUrlMaybe opt)
| opt `isPrefixOf` "mimetex" =
WebTeX (mathUrl "/cgi-bin/mimetex.cgi?" opt)
@@ -575,6 +575,7 @@ xformDoc bl xforms =
webTeXURL = "http://chart.apis.google.com/chart?cht=tx&chl="
mathJaxURL = "http://cdn.mathjax.org/mathjax/latest/MathJax.js"
++ "?config=TeX-AMS-MML_HTMLorMML"
+ latexmathmlURL = "http://math.etsu.edu/LaTeXMathML/LaTeXMathML.js"
urlPart = drop 1 . dropWhile (/='=')
Description: Newer dependencies from hackage
Origin: upstream, https://hackage.haskell.org/package/BlogLiterately-0.8.4.3/revisions/
---
Index: b/BlogLiterately.cabal
===================================================================
--- a/BlogLiterately.cabal
+++ b/BlogLiterately.cabal
@@ -54,7 +54,7 @@ Library
parsec >= 3 && < 3.2,
HaXml >= 1.22 && < 1.26,
hscolour >= 1.20 && < 1.25,
- blaze-html >= 0.5 && < 0.9,
+ blaze-html >= 0.5 && < 0.10,
cmdargs >= 0.9.5 && < 0.11,
haxr >= 3000.11 && < 3000.12,
pandoc >= 1.19 && < 1.20,
LaTeXMathML-type-change
newer-blaze-html
--- a/cabal-install.cabal
+++ b/cabal-install.cabal
@@ -267,7 +267,7 @@
bytestring >= 0.9 && < 1,
Cabal >= 1.24.2 && < 1.25,
containers >= 0.4 && < 0.6,
- cryptohash-sha256 >= 0.11 && < 0.12,
+ cryptohash,
filepath >= 1.3 && < 1.5,
hashable >= 1.0 && < 2,
HTTP >= 4000.1.5 && < 4000.4,
......@@ -16,9 +16,6 @@ Build-Depends:
libghc-attoparsec-dev (>= 0.11.3.0),
libghc-attoparsec-dev (<< 0.14),
libghc-attoparsec-prof,
libghc-bytestring-builder-dev (>= 0.10.8),
libghc-bytestring-builder-dev (<< 0.11),
libghc-bytestring-builder-prof,
libghc-hashable-dev (<< 1.3),
libghc-hashable-prof,
libghc-scientific-dev (>= 0.3.4.7),
......@@ -55,7 +52,6 @@ Build-Depends:
Build-Depends-Indep: ghc-doc,
libghc-only-doc,
libghc-attoparsec-doc,
libghc-bytestring-builder-doc,
libghc-hashable-doc,
libghc-scientific-doc,
libghc-text-doc,
......
--- a/cassava.cabal
+++ b/cassava.cabal
@@ -70,7 +70,7 @@ Library
hashable < 1.3,
text < 1.3,
unordered-containers < 0.3,
- vector < 0.12
+ vector < 0.13
-- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 only
if impl(ghc < 7.6)
--- a/chell-quickcheck.cabal
+++ b/chell-quickcheck.cabal
@@ -28,7 +28,7 @@
build-depends:
base >= 4.0 && < 5.0
, chell >= 0.3 && < 0.5
- , QuickCheck >= 2.3 && < 2.9
+ , QuickCheck >= 2.3 && < 2.10
, random
exposed-modules:
--- a/lib/Test/Chell/QuickCheck.hs
+++ b/lib/Test/Chell/QuickCheck.hs
@@ -100,10 +100,4 @@
roundTo n m = (n `div` m) * m
maxDiscardedTests :: QuickCheck.Testable prop => QuickCheck.Args -> prop -> Int
-#if MIN_VERSION_QuickCheck(2,5,0)
-maxDiscardedTests args p = if QuickCheck.exhaustive p
- then QuickCheck.maxDiscardRatio args
- else QuickCheck.maxDiscardRatio args * QuickCheck.maxSuccess args
-#else
-maxDiscardedTests args _ = QuickCheck.maxDiscard args
-#endif
+maxDiscardedTests args _ = QuickCheck.maxDiscardRatio args
......@@ -35,7 +35,6 @@ Build-Depends:
libghc-unliftio-core-prof,
libghc-quickcheck2-dev,
libghc-attoparsec-dev,
libghc-bytestring-builder-dev,
libghc-conduit-dev,
libghc-exceptions-dev,
libghc-hspec-dev (>= 1.3),
......
......@@ -4,17 +4,17 @@ Author: Joachim Breitner <nomeata@debian.org>
Forwarded: not-needed, debian specific
--- a/conduit-extra.cabal
+++ b/conduit-extra.cabal
@@ -78,7 +78,6 @@
@@ -73,7 +73,6 @@
, async
, attoparsec
, blaze-builder
- , bytestring-builder
, bytestring
, exceptions
, process
@@ -113,7 +112,6 @@
@@ -108,7 +107,6 @@
, conduit-extra
, criterion
, gauge
, bytestring
- , bytestring-builder
, transformers
......