packages feed

BlogLiterately-0.5: BlogLiterately.cabal

Name:           BlogLiterately
Version:        0.5
Synopsis:       A tool for posting Haskelly articles to blogs
Description:    Write blog posts in Markdown format, then use BlogLiterately
                to do syntax highlighting, format ghci sessions, and upload
                to any blog supporting the metaWeblog API (such as Wordpress).
                .
                To get started, use the provided executable
                @BlogLiterately@; see
                <http://byorgey.wordpress.com/blogliterately/> for
                complete documentation.
                .
                To make further customization possible, the internals
                of the executable are made available as a library.  In
                particular, it is easy to create your own executable
                which adds extra custom transformations; see
                "Text.BlogLiterately.Run".
                .
                Note that BlogLiterately depends on blaze-html-0.5.
                Pandoc 1.9.3 and later can depend on either
                blaze-html-0.4 or blaze-html-0.5, but the latter only
                in case the blaze_html_0_5 flag is set.  If pandoc is
                installed as a dependency of BlogLiterately,
                everything should work out fine, since cabal's
                constraint solver will figure out to set that flag.
                But if pandoc is already installed against
                blaze-html-0.4 you may need to reinstall it with the
                blaze_html_0_5 flag explicitly set.
Cabal-Version:  >= 1.8
Homepage:       http://byorgey.wordpress.com/blogliterately/
License:        GPL
License-file:   LICENSE
Category:       Web
Copyright:      Copyright (c) Robert Greayer 2008-2010, Brent Yorgey 2012
Author:         Robert Greayer <robgreayer@yahoo.com>
Maintainer:     Brent Yorgey <byorgey@cis.upenn.edu>
Stability:      experimental
Build-Type:     Simple
Tested-With:    GHC ==7.4.1
Extra-Source-Files: CHANGES
                    doc/BlogLiteratelyDoc.lhs
                    style/*.css
                    style/hs-style
Source-repository head
  type:     darcs
  location: http://patch-tag.com/r/byorgey/BlogLiterately

Library
  Build-Depends:   base >= 4.0 && < 4.6,
                   process,
                   filepath,
                   directory,
                   bytestring,
                   split >= 0.1.4 && < 0.2,
                   utf8-string >= 0.3 && < 0.4,
                   transformers >= 0.3 && < 0.4,
                   parsec >= 3 && < 3.2,
                   HaXml >= 1.22 && < 1.24,
                   hscolour >= 1.20 && < 1.21,
                   blaze-html >= 0.5 && < 0.6,
                   cmdargs >= 0.9.5 && < 0.10,
                   haxr >= 3000.9 && < 3000.10,
                   pandoc >= 1.9.3 && < 1.10
  Exposed-modules: Text.BlogLiterately
                   Text.BlogLiterately.Block
                   Text.BlogLiterately.Ghci
                   Text.BlogLiterately.Highlight
                   Text.BlogLiterately.Image
                   Text.BlogLiterately.LaTeX
                   Text.BlogLiterately.Options
                   Text.BlogLiterately.Post
                   Text.BlogLiterately.Run
                   Text.BlogLiterately.Transform
  hs-source-dirs:  src

Executable BlogLiterately
  Build-Depends:   base,
                   BlogLiterately,
                   cmdargs >= 0.9.5 && < 0.10,
                   utf8-string >= 0.3 && < 0.4
  Main-Is:        BlogLiterately.hs
  hs-source-dirs: main
  Ghc-Options:    -fwarn-unused-imports