athanclark / markup

Generic interface to markup languages
MIT License
1 stars 1 forks source link

Build failure #5

Closed snoyberg closed 9 years ago

snoyberg commented 9 years ago

Not quite sure what happened, as this seemed to build for me yesterday:

Unpacking to markup-1.0.0/
Resolving dependencies...
Configuring markup-1.0.0...
Building markup-1.0.0...
Preprocessing library markup-1.0.0...
[1 of 4] Compiling Data.Markup.Types ( src/Data/Markup/Types.hs, dist/build/Data/Markup/Types.o )

src/Data/Markup/Types.hs:12: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()

src/Data/Markup/Types.hs:15: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()
[2 of 4] Compiling Data.Markup.Class ( src/Data/Markup/Class.hs, dist/build/Data/Markup/Class.o )

src/Data/Markup/Class.hs:11:1: Warning:
    The import of ‘Data.Markup.Types’ is redundant
      except perhaps to import instances from ‘Data.Markup.Types’
    To import instances alone, use: import Data.Markup.Types()
[3 of 4] Compiling Data.Markup.Library ( src/Data/Markup/Library.hs, dist/build/Data/Markup/Library.o )

src/Data/Markup/Library.hs:56:26:
    Not in scope: type constructor or class ‘UrlString’

src/Data/Markup/Library.hs:58:20:
    Not in scope: ‘url’
    Perhaps you meant ‘H.ul’ (imported from Text.Blaze.Html5)

src/Data/Markup/Library.hs:77:28:
    Not in scope: type constructor or class ‘UrlString’

src/Data/Markup/Library.hs:79:20:
    Not in scope: ‘url’
    Perhaps you meant ‘H.ul’ (imported from Text.Blaze.Html5)
athanclark commented 9 years ago

I'm going through a few changes, sorry about that. I'll get it running correctly immediately.

On Wed, May 13, 2015 at 9:23 PM, Michael Snoyman notifications@github.com wrote:

Not quite sure what happened, as this seemed to build for me yesterday:

Unpacking to markup-1.0.0/ Resolving dependencies... Configuring markup-1.0.0... Building markup-1.0.0... Preprocessing library markup-1.0.0... [1 of 4] Compiling Data.Markup.Types ( src/Data/Markup/Types.hs, dist/build/Data/Markup/Types.o )

src/Data/Markup/Types.hs:12: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()

src/Data/Markup/Types.hs:15: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() [2 of 4] Compiling Data.Markup.Class ( src/Data/Markup/Class.hs, dist/build/Data/Markup/Class.o )

src/Data/Markup/Class.hs:11:1: Warning: The import of ‘Data.Markup.Types’ is redundant except perhaps to import instances from ‘Data.Markup.Types’ To import instances alone, use: import Data.Markup.Types() [3 of 4] Compiling Data.Markup.Library ( src/Data/Markup/Library.hs, dist/build/Data/Markup/Library.o )

src/Data/Markup/Library.hs:56:26: Not in scope: type constructor or class ‘UrlString’

src/Data/Markup/Library.hs:58:20: Not in scope: ‘url’ Perhaps you meant ‘H.ul’ (imported from Text.Blaze.Html5)

src/Data/Markup/Library.hs:77:28: Not in scope: type constructor or class ‘UrlString’

src/Data/Markup/Library.hs:79:20: Not in scope: ‘url’ Perhaps you meant ‘H.ul’ (imported from Text.Blaze.Html5)

— Reply to this email directly or view it on GitHub https://github.com/athanclark/markup/issues/5.

athanclark commented 9 years ago

(it was mainly renaming that caused this - I needed more descriptive names)

On Wed, May 13, 2015 at 9:31 PM, athan.clark@gmail.com < athan.clark@gmail.com> wrote:

I'm going through a few changes, sorry about that. I'll get it running correctly immediately.

On Wed, May 13, 2015 at 9:23 PM, Michael Snoyman <notifications@github.com

wrote:

Not quite sure what happened, as this seemed to build for me yesterday:

Unpacking to markup-1.0.0/ Resolving dependencies... Configuring markup-1.0.0... Building markup-1.0.0... Preprocessing library markup-1.0.0... [1 of 4] Compiling Data.Markup.Types ( src/Data/Markup/Types.hs, dist/build/Data/Markup/Types.o )

src/Data/Markup/Types.hs:12: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()

src/Data/Markup/Types.hs:15: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() [2 of 4] Compiling Data.Markup.Class ( src/Data/Markup/Class.hs, dist/build/Data/Markup/Class.o )

src/Data/Markup/Class.hs:11:1: Warning: The import of ‘Data.Markup.Types’ is redundant except perhaps to import instances from ‘Data.Markup.Types’ To import instances alone, use: import Data.Markup.Types() [3 of 4] Compiling Data.Markup.Library ( src/Data/Markup/Library.hs, dist/build/Data/Markup/Library.o )

src/Data/Markup/Library.hs:56:26: Not in scope: type constructor or class ‘UrlString’

src/Data/Markup/Library.hs:58:20: Not in scope: ‘url’ Perhaps you meant ‘H.ul’ (imported from Text.Blaze.Html5)

src/Data/Markup/Library.hs:77:28: Not in scope: type constructor or class ‘UrlString’

src/Data/Markup/Library.hs:79:20: Not in scope: ‘url’ Perhaps you meant ‘H.ul’ (imported from Text.Blaze.Html5)

— Reply to this email directly or view it on GitHub https://github.com/athanclark/markup/issues/5.

athanclark commented 9 years ago

One of it's dependencies, urlpath, is going through some overhaul. urlpath >= 2 should be the right constraint for this now, sorry about that.