keter/keter.cabal

120 lines
4.3 KiB
Plaintext
Raw Normal View History

2012-05-06 08:07:02 +04:00
Name: keter
2015-07-29 09:42:13 +03:00
Version: 1.4.3.1
2012-05-18 09:55:43 +04:00
Synopsis: Web application deployment manager, focusing on Haskell web frameworks
2014-12-17 11:03:58 +03:00
Description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/keter>.
2012-05-06 08:07:02 +04:00
Homepage: http://www.yesodweb.com/
License: MIT
License-file: LICENSE
Author: Michael Snoyman
Maintainer: michael@snoyman.com
2012-05-18 09:55:43 +04:00
Category: Web, Yesod
2012-05-06 08:07:02 +04:00
Build-type: Simple
2012-05-06 08:21:19 +04:00
Cabal-version: >=1.8
2014-12-17 11:03:58 +03:00
extra-source-files: ChangeLog.md
README.md
2012-05-06 08:07:02 +04:00
2013-09-08 18:16:07 +04:00
--Data-Files: incoming/foo/bundle.sh, incoming/foo/config/keter.yaml
flag system-filepath
description: Use system-filepath
default: False
2012-05-06 08:21:19 +04:00
Library
2012-05-06 08:07:02 +04:00
Build-depends: base >= 4 && < 5
2012-05-06 08:21:19 +04:00
, directory
, bytestring
2012-05-06 20:09:27 +04:00
, text
2012-05-06 08:21:19 +04:00
, containers
, transformers
, process
2012-05-06 20:09:27 +04:00
, random
2012-05-06 08:21:19 +04:00
, data-default
2012-05-11 08:38:05 +04:00
, filepath
, zlib
2012-05-11 11:40:01 +04:00
, network
2012-05-17 08:15:25 +04:00
, time
, tar >= 0.4
2012-05-17 10:32:11 +04:00
, template-haskell
2015-04-08 11:18:19 +03:00
, blaze-builder >= 0.3 && < 0.5
2013-07-10 10:57:38 +04:00
, yaml >= 0.8.4 && < 0.9
2012-10-04 20:18:00 +04:00
, unix-compat >= 0.3 && < 0.5
2014-04-03 11:39:26 +04:00
, conduit >= 1.1
, conduit-extra >= 1.1
2015-05-19 10:32:18 +03:00
, http-reverse-proxy >= 0.4.2 && < 0.5
2013-12-04 15:41:17 +04:00
, unix >= 2.5
2015-05-12 13:01:58 +03:00
, wai-app-static >= 3.1 && < 3.2
2015-12-30 09:40:56 +03:00
, wai >= 3.0 && < 3.3
, wai-extra >= 3.0.3 && < 3.1
2012-10-21 09:07:26 +04:00
, http-types
, regex-tdfa >= 1.1
, attoparsec >= 0.10
2014-06-09 14:22:06 +04:00
, http-client
2014-04-03 11:39:26 +04:00
, http-conduit >= 2.1
, case-insensitive
, array
, mtl
2013-06-03 15:15:13 +04:00
, warp
2015-03-10 10:10:43 +03:00
, warp-tls >= 3.0.3
2013-07-10 10:57:38 +04:00
, aeson
2013-07-10 14:26:37 +04:00
, unordered-containers
2013-07-25 15:10:09 +04:00
, vector
2014-07-24 10:42:28 +04:00
, stm >= 2.4
2013-07-26 11:27:06 +04:00
, async
2013-11-07 18:52:02 +04:00
, lifted-base
, tls
2015-01-13 00:41:42 +03:00
if impl(ghc < 7.6)
build-depends: ghc-prim
if flag(system-filepath)
build-depends: fsnotify >= 0.1 && < 0.2
, system-filepath
cpp-options: -DSYSTEM_FILEPATH
else
build-depends: fsnotify >= 0.2.0.2
2013-07-14 17:28:43 +04:00
Exposed-Modules: Keter.Plugin.Postgres
2013-07-10 14:26:37 +04:00
Keter.Types
2013-07-14 16:28:48 +04:00
Keter.Types.V04
2013-07-14 16:55:05 +04:00
Keter.Types.V10
Keter.Types.Common
2014-12-12 19:09:07 +03:00
Keter.Types.Middleware
2012-05-11 08:38:05 +04:00
Keter.App
2013-07-25 18:35:16 +04:00
Keter.AppManager
Keter.LabelMap
2012-05-11 12:29:25 +04:00
Keter.Main
Keter.PortPool
Keter.Proxy
2013-07-25 14:07:48 +04:00
Keter.HostManager
2013-07-25 15:18:32 +04:00
Network.HTTP.ReverseProxy.Rewrite
2013-07-10 10:57:38 +04:00
Data.Yaml.FilePath
2013-07-10 15:15:18 +04:00
Codec.Archive.TempTarball
2014-03-20 16:11:49 +04:00
Data.Conduit.LogFile
Data.Conduit.Process.Unix
2012-05-18 09:55:43 +04:00
ghc-options: -Wall
2014-03-20 16:11:49 +04:00
c-sources: cbits/process-tracker.c
2012-05-06 08:07:02 +04:00
2012-05-06 08:26:30 +04:00
Executable keter
2012-05-18 09:55:43 +04:00
Main-is: keter.hs
hs-source-dirs: main
Build-depends: base, keter, data-default, filepath
2012-05-18 09:55:43 +04:00
ghc-options: -threaded -Wall
2012-09-30 00:44:48 +04:00
other-modules: Paths_keter
2012-05-06 08:26:30 +04:00
2014-03-20 16:11:49 +04:00
test-suite test
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends: base
, transformers
, conduit
, bytestring
, hspec >= 1.3
, unix
, keter
, HUnit
2014-03-20 16:11:49 +04:00
ghc-options: -Wall -threaded
2012-05-06 08:07:02 +04:00
source-repository head
type: git
location: https://github.com/snoyberg/keter