Skip to content

Commit 57b3ae0

Browse files
committed
Compatibility with Stackage lts-20.26 (GHC 9.2).
The main task here is to make `doc-images-opencv` work, which is this package's way to generate nice documentation images into the Haddocks, from code that's in the Haddocks. For that, this commit: * Deletes copy-pasted + modified module from `haskell-src-meta`, `Language.Haskell.Meta.Syntax.Translate`, since as per the commit mentioned in * bmillwood/haskell-src-meta#54 * haskell-party/haskell-src-meta#3 (comment) * haskell-party/haskell-src-meta@5c69c3a the necessary `DataKinds` changes were merged upstream. The commit suggests it's in >= 0.8.3, so that's what's added in the `.cabal` file. * Replaces all occurrences of `*` by `Type` from `Data.Kind` to fix all `-Wstar-is-type` warnings (see also https://ghc-proposals.readthedocs.io/en/latest/proposals/0143-remove-star-kind.html). This is necessary because the upstream `haskell-src-meta` above does not support `*` but does support `Type`; it would print: Language.Haskell.Meta.Syntax.Translate.toType: not implemented: TyStar ()
1 parent a3d96c9 commit 57b3ae0

29 files changed

+90
-730
lines changed

doc/ExampleExtractor.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import qualified "bytestring" Data.ByteString as B
3535
import qualified "bytestring" Data.ByteString.Lazy as BL
3636
import "template-haskell" Language.Haskell.TH
3737
import "template-haskell" Language.Haskell.TH.Syntax
38-
import "this" Language.Haskell.Meta.Syntax.Translate ( toDecs )
38+
import "haskell-src-meta" Language.Haskell.Meta.Syntax.Translate ( toDecs )
3939

4040
#if !MIN_VERSION_base(4,11,0)
4141
import "base" Data.Monoid
@@ -269,7 +269,7 @@ mkRenderExampleImages renderTargets = [d|
269269
where
270270
doRender :: Exp
271271
doRender =
272-
DoE $ do
272+
DoE Nothing $ do
273273
rt <- renderTargets
274274
let sym = VarE $ rtSymbolName rt
275275
fp = LitE $ StringL $ "examples/" <> rtDestination rt

0 commit comments

Comments
 (0)