Skip to content

Commit

Permalink
Update from Hackage at 2020-08-28T11:41:03Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Aug 28, 2020
1 parent d600db3 commit 7377a45
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 0 deletions.
148 changes: 148 additions & 0 deletions shakespeare/2.0.25/shakespeare.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
name: shakespeare
version: 2.0.25
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>
synopsis: A toolkit for making compile-time interpolated templates
description:
Shakespeare is a family of type-safe, efficient template languages. Shakespeare templates are expanded at compile-time, ensuring that all interpolated variables are in scope. Variables are interpolated according to their type through a typeclass.
.
Shakespeare templates can be used inline with a quasi-quoter or in an external file.
.
Note there is no dependency on haskell-src-extras. Instead Shakespeare believes logic should stay out of templates and has its own minimal Haskell parser.
.
Packages that use this: xml-hamlet
.
Please see the documentation at <http://www.yesodweb.com/book/shakespearean-templates> for more details.

category: Web, Yesod
stability: Stable
cabal-version: >= 1.10
build-type: Simple
homepage: http://www.yesodweb.com/book/shakespearean-templates
extra-source-files:
test/reload.txt
test/texts/*.text
test/juliuses/*.julius
test/juliuses/*.coffee
test-messages/*.msg
test/cassiuses/*.cassius
test/cassiuses/*.lucius
test/hamlets/*.hamlet
test/tmp.hs
ChangeLog.md

library
default-language: Haskell2010
build-depends: base >= 4.9 && < 5
, time >= 1
, containers
, template-haskell >= 2.7
, parsec >= 2 && < 4
, text >= 0.7
, process >= 1.0
, ghc-prim
, bytestring
, directory >= 1.2
, aeson
, blaze-markup
, blaze-html
, exceptions
, transformers
, vector
, unordered-containers
, scientific >= 0.3.0.0
, th-lift

exposed-modules: Text.Shakespeare.I18N
Text.Shakespeare.Text
Text.Roy
Text.Julius
Text.Coffee
Text.Hamlet
Text.Hamlet.RT
Text.Hamlet.Runtime
Text.Lucius
Text.Cassius
Text.Shakespeare.Base
Text.Shakespeare
Text.TypeScript
Text.Internal.Css
Text.Internal.CssCommon
other-modules: Text.Hamlet.Parse
Text.MkSizeType
Text.IndentToBrace

ghc-options: -Wall

if flag(test_export)
cpp-options: -DTEST_EXPORT

if os(windows)
CPP-Options: "-DWINDOWS"

if flag(test_coffee)
cpp-options: -DTEST_COFFEE

if flag(test_roy)
cpp-options: -DTEST_ROY

if flag(test_export)
cpp-options: -DTEST_EXPORT

Flag test_export
default: False

flag test_coffee
description: render tests through coffeescript render function
-- cabal configure --enable-tests -ftest_coffee && cabal build && dist/build/test/test
default: False

flag test_roy
description: render tests through roy render function
-- cabal configure --enable-tests -ftest_roy && cabal build && dist/build/test/test
default: False

test-suite test
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
other-modules: Text.Shakespeare.BaseSpec
Text.Shakespeare.I18NSpec
Text.Shakespeare.TextSpec
Text.Shakespeare.BuilderQQ
Text.CssSpec
Text.HamletSpec
Text.JuliusSpec
Quoter
HamletTestTypes

cpp-options: -DTEST_EXPORT

type: exitcode-stdio-1.0

ghc-options: -Wall
build-depends: base >= 4.9 && < 5
, shakespeare
, time >= 1
, containers
, parsec >= 2 && < 4
, hspec == 2.*
, text >= 0.7
, process
, template-haskell >= 2.7
, ghc-prim
, HUnit
, bytestring
, directory
, aeson
, transformers
, blaze-markup
, blaze-html
, exceptions


source-repository head
type: git
location: https://github.com/yesodweb/shakespeare.git
1 change: 1 addition & 0 deletions shakespeare/2.0.25/shakespeare.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"032e1cf99b2d69595ef2fcfe476bf36a","Skein512_512":"66217207523f14009169c0ca5f54dd0d2a6e8fc64c04ae0a95616b5847c67739b0d31eb38376a8a47455d31cd19d1b07b5b8e16d54cb8db831f9570cc78e8e7d","SHA1":"1f0611dca4543f8670c7f3f17a27ae40cf916c00","SHA512":"26805c070c712a7bd549a2923f7b39cf9eaf7c9a3451c0c672eeff3b22e4d3f696887f3846e39c73f1c0add6a21becae9e58bb2821c0158298e105e0a1bf8ac2","SHA256":"4427b923ee466525352ab5209eae2faabc929c1b14c0d8463ba815419e1f5bba"},"package-locations":["https://hackage.haskell.org/package/shakespeare-2.0.25/shakespeare-2.0.25.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/shakespeare-2.0.25.tar.gz"],"package-size":65816}

0 comments on commit 7377a45

Please sign in to comment.