Change project name to lambda-infobot
This commit is contained in:
parent
ef7d182cef
commit
73dc426ba8
3 changed files with 82 additions and 8 deletions
|
|
@ -1 +1 @@
|
||||||
# euph-infobot
|
# lambda-infobot
|
||||||
|
|
|
||||||
74
lambda-infobot.cabal
Normal file
74
lambda-infobot.cabal
Normal file
|
|
@ -0,0 +1,74 @@
|
||||||
|
-- This file has been generated from package.yaml by hpack version 0.20.0.
|
||||||
|
--
|
||||||
|
-- see: https://github.com/sol/hpack
|
||||||
|
--
|
||||||
|
-- hash: dc4f6731306c0ffc26c20798dac3f2d2e97a6c80b8aab90bb4e8c080013ee627
|
||||||
|
|
||||||
|
name: lambda-infobot
|
||||||
|
version: 0.1.0.0
|
||||||
|
description: Please see the README on Github at <https://github.com/Garmelon/lambda-infobot#readme>
|
||||||
|
homepage: https://github.com/Garmelon/lambda-infobot#readme
|
||||||
|
bug-reports: https://github.com/Garmelon/lambda-infobot/issues
|
||||||
|
author: Joscha Mennicken
|
||||||
|
maintainer: joscha@migejolise.de
|
||||||
|
copyright: Joscha Mennicken
|
||||||
|
license: BSD3
|
||||||
|
license-file: LICENSE
|
||||||
|
build-type: Simple
|
||||||
|
cabal-version: >= 1.10
|
||||||
|
|
||||||
|
extra-source-files:
|
||||||
|
ChangeLog.md
|
||||||
|
README.md
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: https://github.com/Garmelon/lambda-infobot
|
||||||
|
|
||||||
|
library
|
||||||
|
hs-source-dirs:
|
||||||
|
src
|
||||||
|
build-depends:
|
||||||
|
base >=4.7 && <5
|
||||||
|
, euph-api
|
||||||
|
, hslogger
|
||||||
|
, stm
|
||||||
|
, text
|
||||||
|
exposed-modules:
|
||||||
|
InfoBot
|
||||||
|
other-modules:
|
||||||
|
Paths_lambda_infobot
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
executable lambda-infobot-exe
|
||||||
|
main-is: Main.hs
|
||||||
|
hs-source-dirs:
|
||||||
|
app
|
||||||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||||
|
build-depends:
|
||||||
|
base >=4.7 && <5
|
||||||
|
, euph-api
|
||||||
|
, hslogger
|
||||||
|
, lambda-infobot
|
||||||
|
, stm
|
||||||
|
, text
|
||||||
|
other-modules:
|
||||||
|
Paths_lambda_infobot
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
test-suite lambda-infobot-test
|
||||||
|
type: exitcode-stdio-1.0
|
||||||
|
main-is: Spec.hs
|
||||||
|
hs-source-dirs:
|
||||||
|
test
|
||||||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||||
|
build-depends:
|
||||||
|
base >=4.7 && <5
|
||||||
|
, euph-api
|
||||||
|
, hslogger
|
||||||
|
, lambda-infobot
|
||||||
|
, stm
|
||||||
|
, text
|
||||||
|
other-modules:
|
||||||
|
Paths_lambda_infobot
|
||||||
|
default-language: Haskell2010
|
||||||
14
package.yaml
14
package.yaml
|
|
@ -1,6 +1,6 @@
|
||||||
name: euph-infobot
|
name: lambda-infobot
|
||||||
version: 0.1.0.0
|
version: 0.1.0.0
|
||||||
github: "Garmelon/euph-infobot"
|
github: "Garmelon/lambda-infobot"
|
||||||
license: BSD3
|
license: BSD3
|
||||||
author: "Joscha Mennicken"
|
author: "Joscha Mennicken"
|
||||||
maintainer: "joscha@migejolise.de"
|
maintainer: "joscha@migejolise.de"
|
||||||
|
|
@ -17,7 +17,7 @@ extra-source-files:
|
||||||
# To avoid duplicated efforts in documentation and dealing with the
|
# To avoid duplicated efforts in documentation and dealing with the
|
||||||
# complications of embedding Haddock markup inside cabal files, it is
|
# complications of embedding Haddock markup inside cabal files, it is
|
||||||
# common to point users to the README.md file.
|
# common to point users to the README.md file.
|
||||||
description: Please see the README on Github at <https://github.com/Garmelon/euph-infobot#readme>
|
description: Please see the README on Github at <https://github.com/Garmelon/lambda-infobot#readme>
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- base >= 4.7 && < 5
|
- base >= 4.7 && < 5
|
||||||
|
|
@ -30,7 +30,7 @@ library:
|
||||||
source-dirs: src
|
source-dirs: src
|
||||||
|
|
||||||
executables:
|
executables:
|
||||||
euph-infobot-exe:
|
lambda-infobot-exe:
|
||||||
main: Main.hs
|
main: Main.hs
|
||||||
source-dirs: app
|
source-dirs: app
|
||||||
ghc-options:
|
ghc-options:
|
||||||
|
|
@ -38,10 +38,10 @@ executables:
|
||||||
- -rtsopts
|
- -rtsopts
|
||||||
- -with-rtsopts=-N
|
- -with-rtsopts=-N
|
||||||
dependencies:
|
dependencies:
|
||||||
- euph-infobot
|
- lambda-infobot
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
euph-infobot-test:
|
lambda-infobot-test:
|
||||||
main: Spec.hs
|
main: Spec.hs
|
||||||
source-dirs: test
|
source-dirs: test
|
||||||
ghc-options:
|
ghc-options:
|
||||||
|
|
@ -49,4 +49,4 @@ tests:
|
||||||
- -rtsopts
|
- -rtsopts
|
||||||
- -with-rtsopts=-N
|
- -with-rtsopts=-N
|
||||||
dependencies:
|
dependencies:
|
||||||
- euph-infobot
|
- lambda-infobot
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue