Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. ~/downloads/shakespeare-2.0.0.1 $ runhaskell Setup configure
  2. Configuring shakespeare-2.0.0.1...
  3. Warning: This package indirectly depends on multiple versions of the same
  4. package. This is highly likely to cause a compile failure.
  5. package system-filepath-0.4.10 requires text-1.0.0.1
  6. package system-fileio-0.3.12 requires text-1.0.0.1
  7. package scientific-0.2.0.2 requires text-1.0.0.1
  8. package parsec-3.1.5 requires text-1.0.0.1
  9. package hashable-1.2.1.0 requires text-1.0.0.1
  10. package blaze-markup-0.6.0.0 requires text-1.0.0.1
  11. package blaze-html-0.7.0.1 requires text-1.0.0.1
  12. package blaze-builder-0.3.3.2 requires text-1.0.0.1
  13. package attoparsec-0.11.2.1 requires text-1.0.0.1
  14. package aeson-0.7.0.3 requires text-1.0.0.1
  15. package shakespeare-2.0.0.1 requires text-1.1.0.1
  16. ~/downloads/shakespeare-2.0.0.1 $ runhaskell Setup build
  17. Building shakespeare-2.0.0.1...
  18. Preprocessing library shakespeare-2.0.0.1...
  19. [ 1 of 16] Compiling Text.MkSizeType ( Text/MkSizeType.hs, dist/build/Text/MkSizeType.o )
  20. [ 2 of 16] Compiling Text.IndentToBrace ( Text/IndentToBrace.hs, dist/build/Text/IndentToBrace.o )
  21. [ 3 of 16] Compiling Text.Shakespeare.Base ( Text/Shakespeare/Base.hs, dist/build/Text/Shakespeare/Base.o )
  22. [ 4 of 16] Compiling Text.Hamlet.Parse ( Text/Hamlet/Parse.hs, dist/build/Text/Hamlet/Parse.o )
  23. [ 5 of 16] Compiling Text.Hamlet ( Text/Hamlet.hs, dist/build/Text/Hamlet.o )
  24.  
  25. Text/Hamlet.hs:99:35:
  26. Couldn't match expected type `text-1.0.0.1:Data.Text.Internal.Text'
  27. with actual type `Text'
  28. In the return type of a call of `pack'
  29. In the first argument of `preEscapedText', namely `(pack "=\"")'
  30. In the second argument of `mappend', namely
  31. `preEscapedText (pack "=\"")'
  32.  
  33. Text/Hamlet.hs:101:35:
  34. Couldn't match expected type `text-1.0.0.1:Data.Text.Internal.Text'
  35. with actual type `Text'
  36. In the return type of a call of `pack'
  37. In the first argument of `preEscapedText', namely `(pack "\"")'
  38. In the second argument of `mappend', namely
  39. `preEscapedText (pack "\"")'
  40.  
  41. Text/Hamlet.hs:256:30:
  42. Couldn't match type `Text'
  43. with `text-1.0.0.1:Data.Text.Internal.Text'
  44. Expected type: String -> text-1.0.0.1:Data.Text.Internal.Text
  45. Actual type: String -> Text
  46. In the second argument of `(.)', namely `pack'
  47. In the Template Haskell quotation [| preEscapedText . pack |]
  48. In a stmt of a 'do' block: os <- [| preEscapedText . pack |]
  49.  
  50. Text/Hamlet.hs:577:30:
  51. No instance for (Text.Blaze.ToMarkup Text)
  52. arising from a use of `toHtml'
  53. Possible fix:
  54. add an instance declaration for (Text.Blaze.ToMarkup Text)
  55. In the expression: toHtml
  56. In the expression: toHtml $ render u []
  57. In a case alternative: Just (EUrl u) -> toHtml $ render u []
  58. ~/downloads/shakespeare-2.0.0.1 $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement