hapistrano/hapistrano.cabal

93 lines
2.9 KiB
Plaintext
Raw Normal View History

2014-05-21 03:28:58 +04:00
name: hapistrano
2015-05-12 17:56:22 +03:00
version: 0.2.0.2
synopsis: A deployment library for Haskell applications
2015-03-12 00:02:52 +03:00
description:
.
2015-03-13 06:11:21 +03:00
Hapistrano makes it easy to reliably deploy Haskell applications
to a server.
2015-03-12 00:02:52 +03:00
.
2015-03-13 06:11:21 +03:00
Following popular libraries like Ruby's <http://capistranorb.com/
Capistrano>, Hapistrano does the work of building the application
with dependencies into a distinct folder, and then atomically moves
a symlink to the latest complete build.
.
This allows for atomic switchovers to new application code after the
build is complete. Rollback is even simpler, since Hapistrano can
just point the `current` symlink to the previous release.
.
See <https://github.com/stackbuilders/hapistrano the project readme on GitHub>
for more information.
2015-03-12 00:02:52 +03:00
.
2014-05-21 03:28:58 +04:00
license: MIT
license-file: LICENSE
author: Justin Leitgeb
maintainer: justin@stackbuilders.com
2015-03-12 00:23:28 +03:00
copyright: 2015 Stack Builders Inc.
2014-05-21 03:28:58 +04:00
category: System
2015-03-13 06:11:21 +03:00
Homepage: https://github.com/stackbuilders/hapistrano
Bug-reports: https://github.com/stackbuilders/hapistrano/issues
2014-05-21 03:28:58 +04:00
build-type: Simple
cabal-version: >=1.10
2014-06-04 01:15:39 +04:00
executable hap
main-is: Main.hs
hs-source-dirs: src
2015-05-08 18:08:37 +03:00
build-depends: base >=4.5 && <4.9
2015-05-11 16:05:15 +03:00
, time-locale-compat
, time
2014-06-04 01:15:39 +04:00
, old-locale
, process
, either
, transformers
2015-03-12 00:02:52 +03:00
, mtl
2014-06-04 01:15:39 +04:00
, filepath
, base-compat
2014-06-04 15:29:37 +04:00
default-language: Haskell2010
2015-03-12 00:02:52 +03:00
ghc-options: -Wall
2014-06-04 01:15:39 +04:00
library
2015-03-12 00:02:52 +03:00
exposed-modules: System.Hapistrano
other-modules: System.Hapistrano.Types
2015-05-08 18:08:37 +03:00
build-depends: base >=4.5 && <4.9
2015-05-11 16:05:15 +03:00
, time-locale-compat
, time
2014-05-21 03:28:58 +04:00
, old-locale
, process
, either
, transformers
2015-03-12 00:02:52 +03:00
, mtl
, filepath
, base-compat
2014-05-21 03:28:58 +04:00
hs-source-dirs: src
default-language: Haskell2010
2015-03-12 00:02:52 +03:00
ghc-options: -Wall
test-suite hapistrano-test
type: exitcode-stdio-1.0
hs-source-dirs: spec, src
main-is: Spec.hs
other-modules: System.HapistranoSpec
2015-05-08 18:08:37 +03:00
build-depends: base >=4.5 && <4.9
2015-05-11 16:05:15 +03:00
, time-locale-compat
, time
2015-03-12 00:02:52 +03:00
, old-locale
, process
, either
, transformers
, mtl
, filepath
, base-compat
2015-05-10 19:34:21 +03:00
, hspec
, temporary
, directory
2015-03-12 00:02:52 +03:00
default-language: Haskell2010
ghc-options: -Wall
2014-06-04 15:40:08 +04:00
source-repository head
type: git
2015-05-08 18:08:37 +03:00
location: https://github.com/stackbuilders/hapistrano