Skip to content

Commit

Permalink
Update from Hackage at 2020-12-04T23:04:55Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Dec 4, 2020
1 parent 0d31ce6 commit 236097f
Show file tree
Hide file tree
Showing 2 changed files with 222 additions and 0 deletions.
221 changes: 221 additions & 0 deletions kempe/0.1.0.2/kempe.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
cabal-version: 3.0
name: kempe
version: 0.1.0.2
license: BSD-3-Clause
license-file: LICENSE
copyright: Copyright: (c) 2020 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: Kempe compiler
description: Kempe is a stack-based language
category: Language, Compilers
build-type: Simple
data-files:
test/data/*.kmp
prelude/*.kmp
lib/*.kmp
docs/manual.pdf

extra-doc-files:
README.md
CHANGELOG.md

source-repository head
type: git
location: https://github.com/vmchale/kempe

flag cross
description: Enable to ease cross-compiling
default: False
manual: True

library kempe-modules
exposed-modules:
Kempe.Lexer
Kempe.Parser
Kempe.AST
Kempe.TyAssign
Kempe.File
Kempe.Monomorphize
Kempe.Pipeline
Kempe.Shuttle
Kempe.Inline
Kempe.Check.Pattern
Kempe.IR
Kempe.IR.Opt
Kempe.Asm.X86
Kempe.Asm.X86.ControlFlow
Kempe.Asm.X86.Liveness
Kempe.Asm.X86.Linear

hs-source-dirs: src
other-modules:
Kempe.Check.Restrict
Kempe.Unique
Kempe.Name
Kempe.Error
Kempe.Asm.X86.Type
Kempe.Proc.Nasm
Prettyprinter.Ext
Data.Foldable.Ext

default-language: Haskell2010
other-extensions:
DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable
FlexibleContexts GeneralizedNewtypeDeriving OverloadedStrings
StandaloneDeriving TupleSections DeriveAnyClass

ghc-options: -Wall -O2
build-depends:
base >=4.11 && <5,
array -any,
bytestring -any,
containers >=0.6.0.0,
deepseq -any,
text -any,
mtl -any,
microlens -any,
transformers -any,
extra -any,
prettyprinter >=1.7.0,
composition-prelude >=1.1.0.1,
microlens-mtl -any,
process >=1.2.3.0,
temporary -any

if !flag(cross)
build-tool-depends: alex:alex -any, happy:happy -any

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages

executable kc
main-is: Main.hs
hs-source-dirs: run
other-modules: Paths_kempe
autogen-modules: Paths_kempe
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base -any,
optparse-applicative -any,
kempe-modules -any,
prettyprinter >=1.7.0

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages

test-suite kempe-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
other-modules:
Parser
Type
Backend

default-language: Haskell2010
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -K1K" -Wall
build-depends:
base -any,
kempe-modules -any,
tasty -any,
tasty-hunit -any,
bytestring -any,
prettyprinter >=1.7.0,
deepseq -any

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages

test-suite kempe-golden
type: exitcode-stdio-1.0
main-is: Golden.hs
hs-source-dirs: test
other-modules: Harness
default-language: Haskell2010
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -K1K" -Wall
build-depends:
base -any,
kempe-modules -any,
tasty -any,
bytestring -any,
process -any,
temporary -any,
filepath -any,
tasty-golden -any

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages

benchmark kempe-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -O3 -Wall
build-depends:
base -any,
kempe-modules -any,
bytestring -any,
criterion -any,
prettyprinter -any,
text -any

if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities

if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists

if impl(ghc >=8.2)
ghc-options: -Wcpp-undef

if impl(ghc >=8.10)
ghc-options: -Wunused-packages
1 change: 1 addition & 0 deletions kempe/0.1.0.2/kempe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"7c7d9172c50f2b860800ff9bab763068","Skein512_512":"e7e6482bb845ddd2f83aeab5e28c6aaecbdb3f8af88986263cdf815a8d7c9e8601e739cbdbea7229e0d181276651043b3af14e79ddb898bda79043569eb1c7ff","SHA1":"4c0ad246a9df18e439ac6f6c6f88393728745063","SHA512":"4d508df57ce2657ffec4d2a325ea9af1e2e1fd7b7cad9df29f6d0668401f1d8b0c893cec27bf92066e82047aadd1fc13355cbe37784e3f91723d905bf3900313","SHA256":"313d5a722be9721de13306981672af034a0f3333a9e94f58ebb9a39cfd164a68"},"package-locations":["https://hackage.haskell.org/package/kempe-0.1.0.2/kempe-0.1.0.2.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/kempe-0.1.0.2.tar.gz"],"package-size":262497}

0 comments on commit 236097f

Please sign in to comment.