Resolving dependencies... Configuring ObjectName-1.1.0.0... Building ObjectName-1.1.0.0... Preprocessing library ObjectName-1.1.0.0... [1 of 1] Compiling Data.ObjectName ( src/Data/ObjectName.hs, dist/build/Data/ObjectName.o ) In-place registering ObjectName-1.1.0.0... Running Haddock for ObjectName-1.1.0.0... Running hscolour for ObjectName-1.1.0.0... Preprocessing library ObjectName-1.1.0.0... Preprocessing library ObjectName-1.1.0.0... Haddock coverage: 100% ( 3 / 3) in 'Data.ObjectName' Documentation created: dist/doc/html/ObjectName/index.html, dist/doc/html/ObjectName/ObjectName.txt Creating package registration file: /tmp/pkgConf-ObjectName-1.1.0278722862233665123.0 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/ObjectName-1.1.0.0-Ej1Cgp8vUjN6m1ytQ9jTTT Registering ObjectName-1.1.0.0... Installed ObjectName-1.1.0.0 Configuring half-0.2.2.1... Building half-0.2.2.1... Preprocessing library half-0.2.2.1... [1 of 1] Compiling Numeric.Half ( src/Numeric/Half.hs, dist/build/Numeric/Half.o ) In-place registering half-0.2.2.1... Running Haddock for half-0.2.2.1... Running hscolour for half-0.2.2.1... Preprocessing library half-0.2.2.1... Preprocessing library half-0.2.2.1... Haddock coverage: 81% ( 13 / 16) in 'Numeric.Half' Missing documentation for: Half (src/Numeric/Half.hs:61) HALF_MIN_10_EXP (src/Numeric/Half.hs:174) HALF_MAX_10_EXP (src/Numeric/Half.hs:177) Documentation created: dist/doc/html/half/index.html, dist/doc/html/half/half.txt Creating package registration file: /tmp/pkgConf-half-0.2.220539999321264095060.1 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/half-0.2.2.1-7lOIyJwAhBD6VpkcMgaFcH Registering half-0.2.2.1... Installed half-0.2.2.1 Configuring lojbanParser-0.1.9.2... Building lojbanParser-0.1.9.2... Preprocessing library lojbanParser-0.1.9.2... [1 of 6] Compiling Pos ( src/Pos.hs, dist/build/Pos.o ) src/Pos.hs:8:1: Warning: Tab character src/Pos.hs:8:24: Warning: Tab character src/Pos.hs:9:1: Warning: Tab character src/Pos.hs:9:24: Warning: Tab character src/Pos.hs:10:1: Warning: Tab character src/Pos.hs:10:23: Warning: Tab character src/Pos.hs:11:1: Warning: Tab character src/Pos.hs:17:1: Warning: Tab character src/Pos.hs:18:1: Warning: Tab character src/Pos.hs:19:1: Warning: Tab character src/Pos.hs:23:1: Warning: Tab character src/Pos.hs:24:1: Warning: Tab character src/Pos.hs:28:1: Warning: Tab character src/Pos.hs:29:1: Warning: Tab character src/Pos.hs:33:1: Warning: Tab character src/Pos.hs:41:1: Warning: Tab character src/Pos.hs:42:1: Warning: Tab character src/Pos.hs:42:13: Warning: Tab character src/Pos.hs:43:1: Warning: Tab character src/Pos.hs:44:1: Warning: Tab character src/Pos.hs:45:1: Warning: Tab character [2 of 6] Compiling Parse ( src/Parse.hs, dist/build/Parse.o ) src/Parse.hs:49:10: Could not deduce (Applicative (Parser d)) arising from the superclasses of an instance declaration from the context (Derivs d) bound by the instance declaration at src/Parse.hs:49:10-37 In the instance declaration for ‘Monad (Parser d)’ src/Parse.hs:123:18: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for optional :: Derivs d => Parser d v -> Parser d (Maybe v) at src/Parse.hs:122:13-56 In a stmt of a 'do' block: v <- p In the first argument of ‘()’, namely ‘(do { v <- p; return (Just v) })’ In the expression: (do { v <- p; return (Just v) }) return Nothing src/Parse.hs:135:16: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for many :: Derivs d => Parser d v -> Parser d [v] at src/Parse.hs:134:9-46 In a stmt of a 'do' block: v <- p In the first argument of ‘()’, namely ‘(do { v <- p; vs <- many p; return (v : vs) })’ In the expression: (do { v <- p; vs <- many p; return (v : vs) }) return [] src/Parse.hs:143:16: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for many1 :: Derivs d => Parser d v -> Parser d [v] at src/Parse.hs:142:10-47 In a stmt of a 'do' block: v <- p In the expression: do { v <- p; vs <- many p; return (v : vs) } In an equation for ‘many1’: many1 p = do { v <- p; vs <- many p; return (v : vs) } src/Parse.hs:150:20: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for sepBy1 :: Derivs d => Parser d v -> Parser d vsep -> Parser d [v] at src/Parse.hs:149:11-65 In a stmt of a 'do' block: v <- p In the expression: do { v <- p; vs <- many (do { psep; p }); return (v : vs) } In an equation for ‘sepBy1’: sepBy1 p psep = do { v <- p; vs <- many (do { psep; p }); return (v : vs) } src/Parse.hs:157:34: Could not deduce (Applicative (Parser d)) arising from a use of ‘return’ from the context (Derivs d) bound by the type signature for sepBy :: Derivs d => Parser d v -> Parser d vsep -> Parser d [v] at src/Parse.hs:156:10-64 In the second argument of ‘()’, namely ‘return []’ In the expression: sepBy1 p psep return [] In an equation for ‘sepBy’: sepBy p psep = sepBy1 p psep return [] src/Parse.hs:161:27: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for endBy :: Derivs d => Parser d v -> Parser d vend -> Parser d [v] at src/Parse.hs:160:10-64 In a stmt of a 'do' block: v <- p In the first argument of ‘many’, namely ‘(do { v <- p; pend; return v })’ In the expression: many (do { v <- p; pend; return v }) src/Parse.hs:165:29: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for endBy1 :: Derivs d => Parser d v -> Parser d vend -> Parser d [v] at src/Parse.hs:164:11-65 In a stmt of a 'do' block: v <- p In the first argument of ‘many1’, namely ‘(do { v <- p; pend; return v })’ In the expression: many1 (do { v <- p; pend; return v }) src/Parse.hs:173:23: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for sepEndBy1 :: Derivs d => Parser d v -> Parser d vsep -> Parser d [v] at src/Parse.hs:172:14-68 In a stmt of a 'do' block: v <- sepBy1 p psep In the expression: do { v <- sepBy1 p psep; optional psep; return v } In an equation for ‘sepEndBy1’: sepEndBy1 p psep = do { v <- sepBy1 p psep; optional psep; return v } src/Parse.hs:177:22: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for sepEndBy :: Derivs d => Parser d v -> Parser d vsep -> Parser d [v] at src/Parse.hs:176:13-67 In a stmt of a 'do' block: v <- sepBy p psep In the expression: do { v <- sepBy p psep; optional psep; return v } In an equation for ‘sepEndBy’: sepEndBy p psep = do { v <- sepBy p psep; optional psep; return v } src/Parse.hs:185:29: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for chainl1 :: Derivs d => Parser d v -> Parser d (v -> v -> v) -> Parser d v at src/Parse.hs:183:12-69 In a stmt of a 'do' block: f <- psep In the first argument of ‘()’, namely ‘(do { f <- psep; v <- p; psuffix (f z v) })’ In the expression: (do { f <- psep; v <- p; psuffix (f z v) }) return z src/Parse.hs:189:15: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for chainl1 :: Derivs d => Parser d v -> Parser d (v -> v -> v) -> Parser d v at src/Parse.hs:183:12-69 In a stmt of a 'do' block: v <- p In the expression: do { v <- p; psuffix v } In the expression: let psuffix z = (do { f <- psep; .... }) return z in do { v <- p; psuffix v } src/Parse.hs:194:38: Could not deduce (Applicative (Parser d)) arising from a use of ‘return’ from the context (Derivs d) bound by the type signature for chainl :: Derivs d => Parser d v -> Parser d (v -> v -> v) -> v -> Parser d v at src/Parse.hs:193:11-73 In the second argument of ‘()’, namely ‘return z’ In the expression: chainl1 p psep return z In an equation for ‘chainl’: chainl p psep z = chainl1 p psep return z src/Parse.hs:199:22: Could not deduce (Applicative (Parser d)) arising from a do statement from the context (Derivs d) bound by the type signature for chainr1 :: Derivs d => Parser d v -> Parser d (v -> v -> v) -> Parser d v at src/Parse.hs:198:12-69 In a stmt of a 'do' block: v <- p In the first argument of ‘()’, namely ‘(do { v <- p; f <- psep; w <- chainr1 p psep; return (f v w) })’ In the expression: (do { v <- p; f <- psep; w <- chainr1 p psep; return (f v w) }) p src/Parse.hs:207:38: Could not deduce (Applicative (Parser d)) arising from a use of ‘return’ from the context (Derivs d) bound by the type signature for chainr :: Derivs d => Parser d v -> Parser d (v -> v -> v) -> v -> Parser d v at src/Parse.hs:206:11-73 In the second argument of ‘()’, namely ‘return z’ In the expression: chainr1 p psep return z In an equation for ‘chainr’: chainr p psep z = chainr1 p psep return z src/Parse.hs:277:18: Could not deduce (Applicative (Parser d)) arising from a use of ‘fail’ from the context (Derivs d) bound by the type signature for unexpected :: Derivs d => String -> Parser d v at src/Parse.hs:276:15-46 In the expression: fail ("unexpected " ++ str) In an equation for ‘unexpected’: unexpected str = fail ("unexpected " ++ str) src/Parse.hs:345:15: Non type-variable argument in the constraint: Applicative (Parser d) (Use FlexibleContexts to permit this) When checking that ‘p’ has the inferred type p :: forall d. (Applicative (Parser d), Derivs d) => [Char] -> Parser d String In an equation for ‘string’: string str = p str show str where p [] = return str p (ch : chs) = do { char ch; .... } Failed to install lojbanParser-0.1.9.2 Configuring mtl-2.2.1... Building mtl-2.2.1... Preprocessing library mtl-2.2.1... [ 1 of 22] Compiling Control.Monad.Writer.Class ( Control/Monad/Writer/Class.hs, dist/build/Control/Monad/Writer/Class.o ) [ 2 of 22] Compiling Control.Monad.State.Class ( Control/Monad/State/Class.hs, dist/build/Control/Monad/State/Class.o ) [ 3 of 22] Compiling Control.Monad.Reader.Class ( Control/Monad/Reader/Class.hs, dist/build/Control/Monad/Reader/Class.o ) [ 4 of 22] Compiling Control.Monad.RWS.Class ( Control/Monad/RWS/Class.hs, dist/build/Control/Monad/RWS/Class.o ) [ 5 of 22] Compiling Control.Monad.Identity ( Control/Monad/Identity.hs, dist/build/Control/Monad/Identity.o ) [ 6 of 22] Compiling Control.Monad.Error.Class ( Control/Monad/Error/Class.hs, dist/build/Control/Monad/Error/Class.o ) [ 7 of 22] Compiling Control.Monad.Cont.Class ( Control/Monad/Cont/Class.hs, dist/build/Control/Monad/Cont/Class.o ) [ 8 of 22] Compiling Control.Monad.Trans ( Control/Monad/Trans.hs, dist/build/Control/Monad/Trans.o ) [ 9 of 22] Compiling Control.Monad.Error ( Control/Monad/Error.hs, dist/build/Control/Monad/Error.o ) [10 of 22] Compiling Control.Monad.Except ( Control/Monad/Except.hs, dist/build/Control/Monad/Except.o ) [11 of 22] Compiling Control.Monad.List ( Control/Monad/List.hs, dist/build/Control/Monad/List.o ) [12 of 22] Compiling Control.Monad.RWS.Lazy ( Control/Monad/RWS/Lazy.hs, dist/build/Control/Monad/RWS/Lazy.o ) [13 of 22] Compiling Control.Monad.RWS ( Control/Monad/RWS.hs, dist/build/Control/Monad/RWS.o ) [14 of 22] Compiling Control.Monad.Reader ( Control/Monad/Reader.hs, dist/build/Control/Monad/Reader.o ) [15 of 22] Compiling Control.Monad.RWS.Strict ( Control/Monad/RWS/Strict.hs, dist/build/Control/Monad/RWS/Strict.o ) [16 of 22] Compiling Control.Monad.State.Lazy ( Control/Monad/State/Lazy.hs, dist/build/Control/Monad/State/Lazy.o ) [17 of 22] Compiling Control.Monad.State ( Control/Monad/State.hs, dist/build/Control/Monad/State.o ) [18 of 22] Compiling Control.Monad.State.Strict ( Control/Monad/State/Strict.hs, dist/build/Control/Monad/State/Strict.o ) [19 of 22] Compiling Control.Monad.Writer.Lazy ( Control/Monad/Writer/Lazy.hs, dist/build/Control/Monad/Writer/Lazy.o ) [20 of 22] Compiling Control.Monad.Writer ( Control/Monad/Writer.hs, dist/build/Control/Monad/Writer.o ) [21 of 22] Compiling Control.Monad.Writer.Strict ( Control/Monad/Writer/Strict.hs, dist/build/Control/Monad/Writer/Strict.o ) [22 of 22] Compiling Control.Monad.Cont ( Control/Monad/Cont.hs, dist/build/Control/Monad/Cont.o ) In-place registering mtl-2.2.1... Running Haddock for mtl-2.2.1... Running hscolour for mtl-2.2.1... Preprocessing library mtl-2.2.1... Preprocessing library mtl-2.2.1... Haddock coverage: 75% ( 3 / 4) in 'Control.Monad.Writer.Class' Missing documentation for: MonadWriter (Control/Monad/Writer/Class.hs:62) 100% ( 5 / 5) in 'Control.Monad.State.Class' 100% ( 3 / 3) in 'Control.Monad.Reader.Class' 80% ( 4 / 5) in 'Control.Monad.RWS.Class' Missing documentation for: MonadRWS (Control/Monad/RWS/Class.hs:44) 100% ( 4 / 4) in 'Control.Monad.Identity' 100% ( 3 / 3) in 'Control.Monad.Error.Class' 50% ( 1 / 2) in 'Control.Monad.Cont.Class' Missing documentation for: MonadCont (Control/Monad/Cont/Class.hs:73) 100% ( 3 / 3) in 'Control.Monad.Trans' 93% ( 14 / 15) in 'Control.Monad.Error' Missing documentation for: runErrorT 100% ( 19 / 19) in 'Control.Monad.Except' 100% ( 5 / 5) in 'Control.Monad.List' 95% ( 21 / 22) in 'Control.Monad.RWS.Lazy' Missing documentation for: runRWST 100% ( 2 / 2) in 'Control.Monad.RWS' 96% ( 22 / 23) in 'Control.Monad.Reader' Missing documentation for: runReaderT 95% ( 21 / 22) in 'Control.Monad.RWS.Strict' Missing documentation for: runRWST 96% ( 24 / 25) in 'Control.Monad.State.Lazy' Missing documentation for: runStateT 100% ( 2 / 2) in 'Control.Monad.State' 96% ( 24 / 25) in 'Control.Monad.State.Strict' Missing documentation for: runStateT 89% ( 17 / 19) in 'Control.Monad.Writer.Lazy' Missing documentation for: MonadWriter (Control/Monad/Writer/Class.hs:62) runWriterT 100% ( 2 / 2) in 'Control.Monad.Writer' 94% ( 17 / 18) in 'Control.Monad.Writer.Strict' Missing documentation for: MonadWriter (Control/Monad/Writer/Class.hs:62) 91% ( 20 / 22) in 'Control.Monad.Cont' Missing documentation for: MonadCont (Control/Monad/Cont/Class.hs:73) runContT Documentation created: dist/doc/html/mtl/index.html, dist/doc/html/mtl/mtl.txt Creating package registration file: /tmp/pkgConf-mtl-2.289369871982275856.1 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/mtl-2.2.1-KMpng31YRYc5JfMWFZ3FCU Registering mtl-2.2.1... Installed mtl-2.2.1 Configuring old-locale-1.0.0.7... Building old-locale-1.0.0.7... Preprocessing library old-locale-1.0.0.7... [1 of 1] Compiling System.Locale ( System/Locale.hs, dist/build/System/Locale.o ) In-place registering old-locale-1.0.0.7... Running Haddock for old-locale-1.0.0.7... Running hscolour for old-locale-1.0.0.7... Preprocessing library old-locale-1.0.0.7... Preprocessing library old-locale-1.0.0.7... Haddock coverage: 60% ( 3 / 5) in 'System.Locale' Missing documentation for: TimeLocale (System/Locale.hs:36) defaultTimeLocale (System/Locale.hs:49) Documentation created: dist/doc/html/old-locale/index.html, dist/doc/html/old-locale/old-locale.txt Creating package registration file: /tmp/pkgConf-old-locale-1.0.014331028291887658390.7 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/old-locale-1.0.0.7-D6X1KPq5Sui5XjrHMwvFwK Registering old-locale-1.0.0.7... Installed old-locale-1.0.0.7 Configuring random-1.1... Building random-1.1... Preprocessing library random-1.1... [1 of 1] Compiling System.Random ( System/Random.hs, dist/build/System/Random.o ) System/Random.hs:43:1: Warning: Tab character System/Random.hs:45:1: Warning: Tab character System/Random.hs:47:1: Warning: Tab character System/Random.hs:53:1: Warning: Tab character System/Random.hs:55:1: Warning: Tab character System/Random.hs:56:1: Warning: Tab character System/Random.hs:57:1: Warning: Tab character System/Random.hs:59:1: Warning: Tab character System/Random.hs:61:1: Warning: Tab character System/Random.hs:63:1: Warning: Tab character System/Random.hs:64:1: Warning: Tab character System/Random.hs:65:1: Warning: Tab character System/Random.hs:66:1: Warning: Tab character System/Random.hs:68:1: Warning: Tab character System/Random.hs:69:1: Warning: Tab character System/Random.hs:70:1: Warning: Tab character System/Random.hs:71:1: Warning: Tab character System/Random.hs:73:1: Warning: Tab character System/Random.hs:74:1: Warning: Tab character System/Random.hs:76:1: Warning: Tab character System/Random.hs:90:22: Warning: Tab character System/Random.hs:91:17: Warning: Tab character System/Random.hs:94:17: Warning: Tab character System/Random.hs:102:15: Warning: Tab character System/Random.hs:240:1: Warning: Tab character System/Random.hs:241:1: Warning: Tab character System/Random.hs:249:1: Warning: Tab character System/Random.hs:269:1: Warning: Tab character System/Random.hs:270:1: Warning: Tab character System/Random.hs:271:1: Warning: Tab character System/Random.hs:272:1: Warning: Tab character System/Random.hs:273:1: Warning: Tab character System/Random.hs:326:11: Warning: Tab character System/Random.hs:343:11: Warning: Tab character System/Random.hs:384:11: Warning: Tab character System/Random.hs:395:1: Warning: Tab character System/Random.hs:396:1: Warning: Tab character System/Random.hs:396:20: Warning: Tab character System/Random.hs:397:1: Warning: Tab character System/Random.hs:397:20: Warning: Tab character System/Random.hs:399:11: Warning: Tab character System/Random.hs:406:1: Warning: Tab character System/Random.hs:415:1: Warning: Tab character System/Random.hs:428:1: Warning: Tab character System/Random.hs:429:1: Warning: Tab character System/Random.hs:430:1: Warning: Tab character System/Random.hs:440:3: Warning: Tab character System/Random.hs:502:1: Warning: Tab character System/Random.hs:503:1: Warning: Tab character System/Random.hs:504:1: Warning: Tab character System/Random.hs:506:1: Warning: Tab character System/Random.hs:507:1: Warning: Tab character System/Random.hs:508:1: Warning: Tab character System/Random.hs:519:1: Warning: Tab character System/Random.hs:519:14: Warning: Tab character System/Random.hs:520:1: Warning: Tab character System/Random.hs:522:1: Warning: Tab character System/Random.hs:523:1: Warning: Tab character System/Random.hs:524:1: Warning: Tab character System/Random.hs:526:1: Warning: Tab character System/Random.hs:527:1: Warning: Tab character System/Random.hs:528:1: Warning: Tab character In-place registering random-1.1... Running Haddock for random-1.1... Running hscolour for random-1.1... Preprocessing library random-1.1... Preprocessing library random-1.1... System/Random.hs:43:1: Warning: Tab character System/Random.hs:45:1: Warning: Tab character System/Random.hs:47:1: Warning: Tab character System/Random.hs:53:1: Warning: Tab character System/Random.hs:55:1: Warning: Tab character System/Random.hs:56:1: Warning: Tab character System/Random.hs:57:1: Warning: Tab character System/Random.hs:59:1: Warning: Tab character System/Random.hs:61:1: Warning: Tab character System/Random.hs:63:1: Warning: Tab character System/Random.hs:64:1: Warning: Tab character System/Random.hs:65:1: Warning: Tab character System/Random.hs:66:1: Warning: Tab character System/Random.hs:68:1: Warning: Tab character System/Random.hs:69:1: Warning: Tab character System/Random.hs:70:1: Warning: Tab character System/Random.hs:71:1: Warning: Tab character System/Random.hs:73:1: Warning: Tab character System/Random.hs:74:1: Warning: Tab character System/Random.hs:76:1: Warning: Tab character System/Random.hs:90:22: Warning: Tab character System/Random.hs:91:17: Warning: Tab character System/Random.hs:94:17: Warning: Tab character System/Random.hs:102:15: Warning: Tab character System/Random.hs:240:1: Warning: Tab character System/Random.hs:241:1: Warning: Tab character System/Random.hs:249:1: Warning: Tab character System/Random.hs:269:1: Warning: Tab character System/Random.hs:270:1: Warning: Tab character System/Random.hs:271:1: Warning: Tab character System/Random.hs:272:1: Warning: Tab character System/Random.hs:273:1: Warning: Tab character System/Random.hs:326:11: Warning: Tab character System/Random.hs:343:11: Warning: Tab character System/Random.hs:384:11: Warning: Tab character System/Random.hs:395:1: Warning: Tab character System/Random.hs:396:1: Warning: Tab character System/Random.hs:396:20: Warning: Tab character System/Random.hs:397:1: Warning: Tab character System/Random.hs:397:20: Warning: Tab character System/Random.hs:399:11: Warning: Tab character System/Random.hs:406:1: Warning: Tab character System/Random.hs:415:1: Warning: Tab character System/Random.hs:428:1: Warning: Tab character System/Random.hs:429:1: Warning: Tab character System/Random.hs:430:1: Warning: Tab character System/Random.hs:440:3: Warning: Tab character System/Random.hs:502:1: Warning: Tab character System/Random.hs:503:1: Warning: Tab character System/Random.hs:504:1: Warning: Tab character System/Random.hs:506:1: Warning: Tab character System/Random.hs:507:1: Warning: Tab character System/Random.hs:508:1: Warning: Tab character System/Random.hs:519:1: Warning: Tab character System/Random.hs:519:14: Warning: Tab character System/Random.hs:520:1: Warning: Tab character System/Random.hs:522:1: Warning: Tab character System/Random.hs:523:1: Warning: Tab character System/Random.hs:524:1: Warning: Tab character System/Random.hs:526:1: Warning: Tab character System/Random.hs:527:1: Warning: Tab character System/Random.hs:528:1: Warning: Tab character Haddock coverage: Cannot find documentation for: $intro 100% ( 16 / 16) in 'System.Random' Documentation created: dist/doc/html/random/index.html, dist/doc/html/random/random.txt Creating package registration file: /tmp/pkgConf-random-11369356620970925433.1 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/random-1.1-1z8Ujelqc6aKgvPnbRUKkP Registering random-1.1... Installed random-1.1 Configuring stm-2.4.4... Building stm-2.4.4... Preprocessing library stm-2.4.4... [ 1 of 10] Compiling Control.Sequential.STM ( Control/Sequential/STM.hs, dist/build/Control/Sequential/STM.o ) [ 2 of 10] Compiling Control.Concurrent.STM.TBQueue ( Control/Concurrent/STM/TBQueue.hs, dist/build/Control/Concurrent/STM/TBQueue.o ) [ 3 of 10] Compiling Control.Concurrent.STM.TQueue ( Control/Concurrent/STM/TQueue.hs, dist/build/Control/Concurrent/STM/TQueue.o ) [ 4 of 10] Compiling Control.Concurrent.STM.TChan ( Control/Concurrent/STM/TChan.hs, dist/build/Control/Concurrent/STM/TChan.o ) [ 5 of 10] Compiling Control.Concurrent.STM.TMVar ( Control/Concurrent/STM/TMVar.hs, dist/build/Control/Concurrent/STM/TMVar.o ) [ 6 of 10] Compiling Control.Concurrent.STM.TVar ( Control/Concurrent/STM/TVar.hs, dist/build/Control/Concurrent/STM/TVar.o ) [ 7 of 10] Compiling Control.Concurrent.STM.TArray ( Control/Concurrent/STM/TArray.hs, dist/build/Control/Concurrent/STM/TArray.o ) [ 8 of 10] Compiling Control.Monad.STM ( Control/Monad/STM.hs, dist/build/Control/Monad/STM.o ) [ 9 of 10] Compiling Control.Concurrent.STM ( Control/Concurrent/STM.hs, dist/build/Control/Concurrent/STM.o ) [10 of 10] Compiling Control.Concurrent.STM.TSem ( Control/Concurrent/STM/TSem.hs, dist/build/Control/Concurrent/STM/TSem.o ) In-place registering stm-2.4.4... Running Haddock for stm-2.4.4... Running hscolour for stm-2.4.4... Preprocessing library stm-2.4.4... Preprocessing library stm-2.4.4... Haddock coverage: 0% ( 0 / 11) in 'Control.Sequential.STM' Missing documentation for: Module header STM (Control/Sequential/STM.hs:29) atomically (Control/Sequential/STM.hs:47) throwSTM (Control/Sequential/STM.hs:54) catchSTM (Control/Sequential/STM.hs:57) TVar (Control/Sequential/STM.hs:72) newTVar (Control/Sequential/STM.hs:75) newTVarIO (Control/Sequential/STM.hs:78) readTVar (Control/Sequential/STM.hs:83) readTVarIO (Control/Sequential/STM.hs:86) writeTVar (Control/Sequential/STM.hs:89) 100% ( 13 / 13) in 'Control.Concurrent.STM.TBQueue' 100% ( 12 / 12) in 'Control.Concurrent.STM.TQueue' 100% ( 18 / 18) in 'Control.Concurrent.STM.TChan' 100% ( 16 / 16) in 'Control.Concurrent.STM.TMVar' 100% ( 13 / 13) in 'Control.Concurrent.STM.TVar' 100% ( 2 / 2) in 'Control.Concurrent.STM.TArray' 90% ( 9 / 10) in 'Control.Monad.STM' Missing documentation for: check (Control/Monad/STM.hs:81) 100% ( 8 / 8) in 'Control.Concurrent.STM' 40% ( 2 / 5) in 'Control.Concurrent.STM.TSem' Missing documentation for: newTSem (Control/Concurrent/STM/TSem.hs:42) waitTSem (Control/Concurrent/STM/TSem.hs:45) signalTSem (Control/Concurrent/STM/TSem.hs:51) Documentation created: dist/doc/html/stm/index.html, dist/doc/html/stm/stm.txt Creating package registration file: /tmp/pkgConf-stm-2.414528885741280631491.4 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/stm-2.4.4-C1kFMnPqFjvDhFjgMZGUpr Registering stm-2.4.4... Installed stm-2.4.4 Configuring text-1.2.1.3... Building text-1.2.1.3... Preprocessing library text-1.2.1.3... [ 1 of 44] Compiling Data.Text.Internal.Read ( Data/Text/Internal/Read.hs, dist/build/Data/Text/Internal/Read.o ) Data/Text/Internal/Read.hs:21:1: Warning: The import of ‘Control.Applicative’ is redundant except perhaps to import instances from ‘Control.Applicative’ To import instances alone, use: import Control.Applicative() [ 2 of 44] Compiling Data.Text.Internal.Encoding.Utf32 ( Data/Text/Internal/Encoding/Utf32.hs, dist/build/Data/Text/Internal/Encoding/Utf32.o ) [ 3 of 44] Compiling Data.Text.Internal.Builder.RealFloat.Functions ( Data/Text/Internal/Builder/RealFloat/Functions.hs, dist/build/Data/Text/Internal/Builder/RealFloat/Functions.o ) [ 4 of 44] Compiling Data.Text.Internal.Builder.Int.Digits ( Data/Text/Internal/Builder/Int/Digits.hs, dist/build/Data/Text/Internal/Builder/Int/Digits.o ) [ 5 of 44] Compiling Data.Text.Encoding.Error ( Data/Text/Encoding/Error.hs, dist/build/Data/Text/Encoding/Error.o ) Data/Text/Encoding/Error.hs:3:14: Warning: ‘Data.Text.Encoding.Error’ is marked as Trustworthy but has been inferred as safe! [ 6 of 44] Compiling Data.Text.Internal.Unsafe.Shift ( Data/Text/Internal/Unsafe/Shift.hs, dist/build/Data/Text/Internal/Unsafe/Shift.o ) [ 7 of 44] Compiling Data.Text.Internal.Encoding.Utf16 ( Data/Text/Internal/Encoding/Utf16.hs, dist/build/Data/Text/Internal/Encoding/Utf16.o ) [ 8 of 44] Compiling Data.Text.Internal.Functions ( Data/Text/Internal/Functions.hs, dist/build/Data/Text/Internal/Functions.o ) [ 9 of 44] Compiling Data.Text.Internal.Unsafe ( Data/Text/Internal/Unsafe.hs, dist/build/Data/Text/Internal/Unsafe.o ) [10 of 44] Compiling Data.Text.Array ( Data/Text/Array.hs, dist/build/Data/Text/Array.o ) [11 of 44] Compiling Data.Text.Internal.Unsafe.Char ( Data/Text/Internal/Unsafe/Char.hs, dist/build/Data/Text/Internal/Unsafe/Char.o ) [12 of 44] Compiling Data.Text.Internal ( Data/Text/Internal.hs, dist/build/Data/Text/Internal.o ) [13 of 44] Compiling Data.Text.Internal.Fusion.Size ( Data/Text/Internal/Fusion/Size.hs, dist/build/Data/Text/Internal/Fusion/Size.o ) [14 of 44] Compiling Data.Text.Internal.Fusion.Types ( Data/Text/Internal/Fusion/Types.hs, dist/build/Data/Text/Internal/Fusion/Types.o ) [15 of 44] Compiling Data.Text.Internal.Fusion.CaseMapping ( Data/Text/Internal/Fusion/CaseMapping.hs, dist/build/Data/Text/Internal/Fusion/CaseMapping.o ) [16 of 44] Compiling Data.Text.Internal.Fusion.Common ( Data/Text/Internal/Fusion/Common.hs, dist/build/Data/Text/Internal/Fusion/Common.o ) [17 of 44] Compiling Data.Text.Unsafe ( Data/Text/Unsafe.hs, dist/build/Data/Text/Unsafe.o ) [18 of 44] Compiling Data.Text.Internal.Private ( Data/Text/Internal/Private.hs, dist/build/Data/Text/Internal/Private.o ) [19 of 44] Compiling Data.Text.Internal.Fusion ( Data/Text/Internal/Fusion.hs, dist/build/Data/Text/Internal/Fusion.o ) [20 of 44] Compiling Data.Text.Show ( Data/Text/Show.hs, dist/build/Data/Text/Show.o ) [21 of 44] Compiling Data.Text.Internal.Encoding.Fusion.Common ( Data/Text/Internal/Encoding/Fusion/Common.hs, dist/build/Data/Text/Internal/Encoding/Fusion/Common.o ) [22 of 44] Compiling Data.Text.Internal.Encoding.Utf8 ( Data/Text/Internal/Encoding/Utf8.hs, dist/build/Data/Text/Internal/Encoding/Utf8.o ) [23 of 44] Compiling Data.Text.Internal.Encoding.Fusion ( Data/Text/Internal/Encoding/Fusion.hs, dist/build/Data/Text/Internal/Encoding/Fusion.o ) [24 of 44] Compiling Data.Text.Encoding ( Data/Text/Encoding.hs, dist/build/Data/Text/Encoding.o ) [25 of 44] Compiling Data.Text.Internal.Lazy.Encoding.Fusion ( Data/Text/Internal/Lazy/Encoding/Fusion.hs, dist/build/Data/Text/Internal/Lazy/Encoding/Fusion.o ) [26 of 44] Compiling Data.Text.Internal.Search ( Data/Text/Internal/Search.hs, dist/build/Data/Text/Internal/Search.o ) [27 of 44] Compiling Data.Text.Foreign ( Data/Text/Foreign.hs, dist/build/Data/Text/Foreign.o ) [28 of 44] Compiling Data.Text ( Data/Text.hs, dist/build/Data/Text.o ) [29 of 44] Compiling Data.Text.Internal.IO ( Data/Text/Internal/IO.hs, dist/build/Data/Text/Internal/IO.o ) [30 of 44] Compiling Data.Text.IO ( Data/Text/IO.hs, dist/build/Data/Text/IO.o ) [31 of 44] Compiling Data.Text.Internal.Lazy ( Data/Text/Internal/Lazy.hs, dist/build/Data/Text/Internal/Lazy.o ) [32 of 44] Compiling Data.Text.Internal.Lazy.Fusion ( Data/Text/Internal/Lazy/Fusion.hs, dist/build/Data/Text/Internal/Lazy/Fusion.o ) [33 of 44] Compiling Data.Text.Internal.Lazy.Search ( Data/Text/Internal/Lazy/Search.hs, dist/build/Data/Text/Internal/Lazy/Search.o ) [34 of 44] Compiling Data.Text.Lazy.Internal ( Data/Text/Lazy/Internal.hs, dist/build/Data/Text/Lazy/Internal.o ) [35 of 44] Compiling Data.Text.Lazy.Encoding ( Data/Text/Lazy/Encoding.hs, dist/build/Data/Text/Lazy/Encoding.o ) Data/Text/Lazy/Encoding.hs:65:1: Warning: The import of ‘Data.Monoid’ is redundant except perhaps to import instances from ‘Data.Monoid’ To import instances alone, use: import Data.Monoid() [36 of 44] Compiling Data.Text.Lazy ( Data/Text/Lazy.hs, dist/build/Data/Text/Lazy.o ) [37 of 44] Compiling Data.Text.Internal.Builder ( Data/Text/Internal/Builder.hs, dist/build/Data/Text/Internal/Builder.o ) Data/Text/Internal/Builder.hs:61:1: Warning: The import of ‘Data.Monoid’ is redundant except perhaps to import instances from ‘Data.Monoid’ To import instances alone, use: import Data.Monoid() [38 of 44] Compiling Data.Text.Lazy.Builder ( Data/Text/Lazy/Builder.hs, dist/build/Data/Text/Lazy/Builder.o ) [39 of 44] Compiling Data.Text.Internal.Builder.Functions ( Data/Text/Internal/Builder/Functions.hs, dist/build/Data/Text/Internal/Builder/Functions.o ) Data/Text/Internal/Builder/Functions.hs:24:1: Warning: The import of ‘Data.Monoid’ is redundant except perhaps to import instances from ‘Data.Monoid’ To import instances alone, use: import Data.Monoid() [40 of 44] Compiling Data.Text.Lazy.Builder.Int ( Data/Text/Lazy/Builder/Int.hs, dist/build/Data/Text/Lazy/Builder/Int.o ) Data/Text/Lazy/Builder/Int.hs:24:1: Warning: The import of ‘Data.Monoid’ is redundant except perhaps to import instances from ‘Data.Monoid’ To import instances alone, use: import Data.Monoid() Data/Text/Lazy/Builder/Int.hs:30:1: Warning: The import of ‘Word’ from module ‘Data.Word’ is redundant Data/Text/Lazy/Builder/Int.hs:32:1: Warning: The import of ‘GHC.Num’ is redundant except perhaps to import instances from ‘GHC.Num’ To import instances alone, use: import GHC.Num() [41 of 44] Compiling Data.Text.Lazy.IO ( Data/Text/Lazy/IO.hs, dist/build/Data/Text/Lazy/IO.o ) [42 of 44] Compiling Data.Text.Lazy.Read ( Data/Text/Lazy/Read.hs, dist/build/Data/Text/Lazy/Read.o ) Data/Text/Lazy/Read.hs:3:14: Warning: ‘Data.Text.Lazy.Read’ is marked as Trustworthy but has been inferred as safe! Data/Text/Lazy/Read.hs:32:1: Warning: The import of ‘Word’ from module ‘Data.Word’ is redundant [43 of 44] Compiling Data.Text.Lazy.Builder.RealFloat ( Data/Text/Lazy/Builder/RealFloat.hs, dist/build/Data/Text/Lazy/Builder/RealFloat.o ) [44 of 44] Compiling Data.Text.Read ( Data/Text/Read.hs, dist/build/Data/Text/Read.o ) Data/Text/Read.hs:33:1: Warning: The import of ‘Word’ from module ‘Data.Word’ is redundant ghc: can't find a package database at /home/builder/hackage-server/build-cache/tmp-install/packages.db Failed to install text-1.2.1.3 Configuring yjtools-0.9.18... Building yjtools-0.9.18... Preprocessing library yjtools-0.9.18... [1 of 7] Compiling Data.Tuple.Tools ( Data/Tuple/Tools.hs, dist/build/Data/Tuple/Tools.o ) Data/Tuple/Tools.hs:2:1: Warning: Tab character Data/Tuple/Tools.hs:3:1: Warning: Tab character Data/Tuple/Tools.hs:4:1: Warning: Tab character [2 of 7] Compiling Data.IORef.Tools ( Data/IORef/Tools.hs, dist/build/Data/IORef/Tools.o ) Data/IORef/Tools.hs:2:1: Warning: Tab character [3 of 7] Compiling Data.Bool.Tools ( Data/Bool/Tools.hs, dist/build/Data/Bool/Tools.o ) Data/Bool/Tools.hs:10:1: Warning: Tab character Data/Bool/Tools.hs:13:1: Warning: Tab character [4 of 7] Compiling Data.Function.Tools ( Data/Function/Tools.hs, dist/build/Data/Function/Tools.o ) [5 of 7] Compiling Data.List.Tools ( Data/List/Tools.hs, dist/build/Data/List/Tools.o ) [6 of 7] Compiling Control.Applicative.Tools ( Control/Applicative/Tools.hs, dist/build/Control/Applicative/Tools.o ) [7 of 7] Compiling Control.Monad.Tools ( Control/Monad/Tools.hs, dist/build/Control/Monad/Tools.o ) Control/Monad/Tools.hs:36:1: Warning: Tab character Control/Monad/Tools.hs:39:1: Warning: Tab character In-place registering yjtools-0.9.18... Running Haddock for yjtools-0.9.18... Running hscolour for yjtools-0.9.18... Preprocessing library yjtools-0.9.18... Preprocessing library yjtools-0.9.18... Data/Tuple/Tools.hs:2:1: Warning: Tab character Data/Tuple/Tools.hs:3:1: Warning: Tab character Data/Tuple/Tools.hs:4:1: Warning: Tab character Data/IORef/Tools.hs:2:1: Warning: Tab character Data/Bool/Tools.hs:10:1: Warning: Tab character Data/Bool/Tools.hs:13:1: Warning: Tab character Control/Monad/Tools.hs:36:1: Warning: Tab character Control/Monad/Tools.hs:39:1: Warning: Tab character Haddock coverage: 0% ( 0 / 4) in 'Data.Tuple.Tools' Missing documentation for: Module header curry3 (Data/Tuple/Tools.hs:7) uncurry3 (Data/Tuple/Tools.hs:10) rotate (Data/Tuple/Tools.hs:13) 0% ( 0 / 2) in 'Data.IORef.Tools' Missing documentation for: Module header atomicModifyIORef_ (Data/IORef/Tools.hs:7) 0% ( 0 / 4) in 'Data.Bool.Tools' Missing documentation for: Module header &&& (Data/Bool/Tools.hs:7) ||| (Data/Bool/Tools.hs:7) whether (Data/Bool/Tools.hs:15) 0% ( 0 / 6) in 'Data.Function.Tools' Missing documentation for: Module header const2 (Data/Function/Tools.hs:13) const3 (Data/Function/Tools.hs:16) applyWhen (Data/Function/Tools.hs:19) applyUnless (Data/Function/Tools.hs:22) apply2way (Data/Function/Tools.hs:25) 0% ( 0 / 8) in 'Data.List.Tools' Missing documentation for: Module header takeUntil (Data/List/Tools.hs:12) dropUntil (Data/List/Tools.hs:13) mulLists (Data/List/Tools.hs:23) defaultElem (Data/List/Tools.hs:27) isIncludedElem (Data/List/Tools.hs:31) setAt (Data/List/Tools.hs:34) modifyAt (Data/List/Tools.hs:37) 0% ( 0 / 2) in 'Control.Applicative.Tools' Missing documentation for: Module header <.> (Control/Applicative/Tools.hs:6) 0% ( 0 / 14) in 'Control.Monad.Tools' Missing documentation for: Module header ifM (Control/Monad/Tools.hs:19) whenM (Control/Monad/Tools.hs:23) unlessM (Control/Monad/Tools.hs:23) doWhile_ (Control/Monad/Tools.hs:27) doWhile (Control/Monad/Tools.hs:33) doUntil_ (Control/Monad/Tools.hs:27) doUntil (Control/Monad/Tools.hs:33) for_ (Control/Monad/Tools.hs:41) for (Control/Monad/Tools.hs:46) filterM (Control/Monad/Tools.hs:51) repeatM (Control/Monad/Tools.hs:59) repeatM_ (Control/Monad/Tools.hs:62) skipRet (Control/Monad/Tools.hs:65) Documentation created: dist/doc/html/yjtools/index.html, dist/doc/html/yjtools/yjtools.txt Creating package registration file: /tmp/pkgConf-yjtools-0.91994118982064945486.18 Installing library in /home/builder/hackage-server/build-cache/tmp-install/lib/x86_64-linux-ghc-7.10.2/yjtools-0.9.18-DCDBdNeBkiI51TGHEiAy8k Registering yjtools-0.9.18... Installed yjtools-0.9.18 Configuring old-time-1.1.0.3... cabal: The following package dependencies were requested --dependency='old-locale=old-locale-1.0.0.7-dc15dd805edac3bd819285f8edb51d07' however the given installed package instance does not exist. Failed to install old-time-1.1.0.3 Configuring StateVar-1.1.0.1... cabal: The following package dependencies were requested --dependency='stm=stm-2.4.4-70007269a30de6ec60a981b188ba0f29' however the given installed package instance does not exist. Failed to install StateVar-1.1.0.1 cabal: Error: some packages failed to install: GLURaw-1.5.0.2 depends on text-1.2.1.3 which failed to install. GLUT-2.7.0.3 depends on StateVar-1.1.0.1 which failed to install. HaXml-1.24.1 depends on text-1.2.1.3 which failed to install. OpenGL-2.13.1.0 depends on StateVar-1.1.0.1 which failed to install. OpenGLRaw-2.6.0.0 depends on text-1.2.1.3 which failed to install. StateVar-1.1.0.1 failed during the configure step. The exception was: ExitFailure 1 cakyrespa-0.0.29 depends on StateVar-1.1.0.1 which failed to install. convertible-1.1.1.0 depends on old-time-1.1.0.3 which failed to install. gluturtle-0.0.58.1 depends on StateVar-1.1.0.1 which failed to install. lojbanParser-0.1.9.2 failed during the building phase. The exception was: ExitFailure 1 old-time-1.1.0.3 failed during the configure step. The exception was: ExitFailure 1 polyparse-1.11 depends on text-1.2.1.3 which failed to install. text-1.2.1.3 failed during the building phase. The exception was: ExitFailure 1 yjsvg-0.2.0.0 depends on text-1.2.1.3 which failed to install.