2014-05-21 03:28:58 +04:00
|
|
|
name: hapistrano
|
2016-05-30 21:31:55 +03:00
|
|
|
version: 0.2.1.2
|
2014-06-01 18:54:30 +04:00
|
|
|
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
|
2017-01-29 17:25:02 +03:00
|
|
|
copyright: 2015-2017 Stack Builders Inc.
|
2014-05-21 03:28:58 +04:00
|
|
|
category: System
|
2015-09-09 21:17:59 +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
|
2017-01-29 17:54:22 +03:00
|
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
, README.md
|
2014-05-21 03:28:58 +04:00
|
|
|
|
2017-01-29 17:25:02 +03:00
|
|
|
flag dev
|
|
|
|
description: Turn on development settings.
|
|
|
|
manual: True
|
|
|
|
default: False
|
|
|
|
|
2014-06-01 18:54:30 +04:00
|
|
|
library
|
2015-09-09 21:17:59 +03:00
|
|
|
hs-source-dirs: src
|
2015-03-12 00:02:52 +03:00
|
|
|
exposed-modules: System.Hapistrano
|
|
|
|
other-modules: System.Hapistrano.Types
|
2017-01-29 17:25:02 +03:00
|
|
|
build-depends: base >= 4.6 && < 5.0
|
|
|
|
, either >= 4.0 && < 4.6
|
|
|
|
, filepath >= 1.2 && < 1.5
|
|
|
|
, mtl >= 2.0 && < 3.0
|
|
|
|
, process >= 1.4 && < 1.5
|
|
|
|
, time >= 1.5 && < 1.8
|
|
|
|
, transformers >= 0.4 && < 0.6
|
|
|
|
if flag(dev)
|
|
|
|
ghc-options: -Wall -Werror
|
|
|
|
else
|
|
|
|
ghc-options: -O2 -Wall
|
2015-09-09 21:17:59 +03:00
|
|
|
default-language: Haskell2010
|
2015-03-12 00:02:52 +03:00
|
|
|
|
2015-09-09 21:17:59 +03:00
|
|
|
executable hap
|
|
|
|
hs-source-dirs: app
|
|
|
|
main-is: Main.hs
|
2017-01-28 16:05:37 +03:00
|
|
|
other-modules: Options
|
|
|
|
, Command
|
|
|
|
, Flag
|
2017-01-29 17:25:02 +03:00
|
|
|
build-depends: base >= 4.6 && < 5.0
|
|
|
|
, base-compat >= 0.6 && < 1.0
|
2015-09-09 21:17:59 +03:00
|
|
|
, hapistrano
|
2017-01-28 16:05:37 +03:00
|
|
|
, optparse-applicative >= 0.11 && < 0.14
|
2017-01-29 17:25:02 +03:00
|
|
|
if flag(dev)
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
|
|
|
|
else
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
|
2014-06-02 01:33:46 +04:00
|
|
|
default-language: Haskell2010
|
2015-03-12 00:02:52 +03:00
|
|
|
|
|
|
|
test-suite hapistrano-test
|
2015-09-09 21:17:59 +03:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: spec
|
|
|
|
main-is: Spec.hs
|
|
|
|
other-modules: System.HapistranoSpec
|
2017-01-29 17:25:02 +03:00
|
|
|
build-depends: base >= 4.5 && < 5.0
|
|
|
|
, directory >= 1.2.2 && < 1.4
|
|
|
|
, either >= 4.0 && < 4.6
|
|
|
|
, filepath >= 1.2 && < 1.5
|
2015-09-09 21:17:59 +03:00
|
|
|
, hapistrano
|
2017-01-29 17:25:02 +03:00
|
|
|
, hspec >= 2.0 && < 3.0
|
|
|
|
, mtl >= 2.0 && < 3.0
|
|
|
|
, process >= 1.4 && < 1.5
|
|
|
|
, temporary >= 1.1 && < 1.3
|
|
|
|
if flag(dev)
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Werror
|
|
|
|
else
|
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
|
2015-03-12 00:02:52 +03:00
|
|
|
default-language: Haskell2010
|
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
|