Skip to content

Commit

Permalink
Update from Hackage at 2018-07-02T00:15:03Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Jul 2, 2018
1 parent e419afa commit 153e846
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 0 deletions.
133 changes: 133 additions & 0 deletions cmark-gfm/0.1.4/cmark-gfm.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
name: cmark-gfm
version: 0.1.4
synopsis: Fast, accurate GitHub Flavored Markdown parser and renderer
description:
This package provides Haskell bindings for
<https://github.com/github/cmark libcmark-gfm>, the reference
parser for <https://github.github.com/gfm/ GitHub Flavored Markdown>, a fully
specified variant of Markdown. It includes sources for
libcmark-gfm (0.28.0) and does not require prior installation of the
C library.

homepage: https://github.com/kivikakk/cmark-gfm-hs
license: BSD3
license-file: LICENSE
author: Ashe Connor
maintainer: kivikakk@github.com
copyright: (C) 2015--17 John MacFarlane, (C) 2017 Ashe Connor
category: Text
tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.2, GHC == 7.10.3
build-type: Simple
extra-source-files: README.md
changelog
cbits/chunk.h
cbits/cmark_export.h
cbits/debug.h
cbits/inlines.h
cbits/cmark.h
cbits/houdini.h
cbits/references.h
cbits/utf8.h
cbits/parser.h
cbits/cmark_version.h
cbits/html_unescape.h
cbits/iterator.h
cbits/node.h
cbits/buffer.h
cbits/render.h
cbits/cmark_ctype.h
cbits/config.h
cbits/scanners.h
cbits/case_fold_switch.inc
cbits/entities.inc
cbits/cmark_extension_api.h
cbits/html.h
cbits/plugin.h
cbits/registry.h
cbits/syntax_extension.h
cbits/autolink.h
cbits/core-extensions.h
cbits/ext_scanners.h
cbits/strikethrough.h
cbits/table.h
cbits/tagfilter.h
cbits/cmarkextensions_export.h
bench/sample.md
bench/full-sample.md
cabal-version: >=1.14

Source-repository head
type: git
location: git://github.com/kivikakk/cmark-gfm-hs.git

flag pkgconfig
default: False
description: Use system libcmark-gfm via pkgconfig

library
exposed-modules: CMarkGFM
build-depends: base >=4.5 && < 5.0,
text >= 1.0 && < 1.3,
bytestring
if impl(ghc < 7.6)
build-depends: ghc-prim >= 0.2
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind
if flag(pkgconfig)
pkgconfig-depends: libcmark-gfm
else
cc-options: -Wall -std=c99
Include-dirs: cbits
Includes: cmark.h
c-sources: cbits/houdini_html_u.c
cbits/references.c
cbits/utf8.c
cbits/inlines.c
cbits/blocks.c
cbits/cmark.c
cbits/iterator.c
cbits/node.c
cbits/buffer.c
cbits/cmark_ctype.c
cbits/houdini_html_e.c
cbits/houdini_href_e.c
cbits/scanners.c
cbits/html.c
cbits/man.c
cbits/commonmark.c
cbits/latex.c
cbits/xml.c
cbits/render.c
cbits/arena.c
cbits/linked_list.c
cbits/plaintext.c
cbits/plugin.c
cbits/registry.c
cbits/syntax_extension.c
cbits/autolink.c
cbits/core-extensions.c
cbits/ext_scanners.c
cbits/strikethrough.c
cbits/table.c
cbits/tagfilter.c

benchmark bench-cmark-gfm
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: bench-cmark.hs
build-depends: base, text, cmark-gfm, criterion,
sundown >= 0.6 && < 0.7,
cheapskate >= 0.1 && < 0.2,
markdown >= 0.1 && < 0.2,
discount >= 0.1 && < 0.2,
blaze-html >= 0.7 && < 0.10
ghc-options: -O2
default-language: Haskell2010

Test-Suite test-cmark-gfm
type: exitcode-stdio-1.0
main-is: test-cmark.hs
hs-source-dirs: test
build-depends: base, cmark-gfm, text, HUnit >= 1.2 && < 1.7
ghc-options: -Wall -fno-warn-unused-do-bind -threaded
default-language: Haskell98
1 change: 1 addition & 0 deletions cmark-gfm/0.1.4/cmark-gfm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"bea1762998e83821815fd3bc227a4c01","Skein512_512":"50bab1a466dbcedd8cceb1c5879911b99dc04c3639e3b1dbce452107a9cfb3a33a2be1b76c377b876e98ba490668096c383e5ea47d3719571ecb867d397b1ef8","SHA1":"87380ae773c28c7a4bfab2707090b6fbd644edc1","SHA512":"34e914039b385b66859b9438330619c9d0895ed8a71b4de38c66a3bbcc8bf1fafb663afb5e3c8d2ae897351c5fba204ddf44017644860578721946f1a184ecd3","SHA256":"15f02f37dd59e8d5cfb1ed7b17d412c6034a0172a192d1f5546832e5eea14c4a"},"package-locations":["https://hackage.haskell.org/package/cmark-gfm-0.1.4/cmark-gfm-0.1.4.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/cmark-gfm-0.1.4.tar.gz"],"package-size":198322}

0 comments on commit 153e846

Please sign in to comment.