packages feed

azubi-0.2.0.3: azubi.cabal

-- Initial azubi.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                azubi

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.2.0.3

-- A short (one-line) description of the package.
synopsis:            A simple DevOps tool which will never "reach" enterprice level.

-- A longer description of the package.
description:         A simple DevOps tool which will never "reach" enterprice level.
                     It is basically a Haskell lib which you can use to create
                     nice scripts that setup you computer, via ssh bashscrip,
                     Dockerfile, etc

-- URL for the project homepage or repository.
homepage:            http://palovandalo.com/azubi

-- The license under which the package is released.
license:             GPL-3

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Ingolf Wagner

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          azubi@ingolf-wagner.de

-- A copyright notice.
-- copyright:

stability:           Unstable

category:            System

build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a 
-- README.
extra-source-files:  README.md

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.10

tested-With:         GHC == 7.10.3
                   , GHC == 7.10.2
                   , GHC == 7.10.1
                   , GHC == 8.0.1
                   , GHC == 8.0.2

source-repository head
  type:              git
  location:          git@github.com:mrVanDalo/azubi.git

-- executable azubi
--  main-is:             main.hs
library
  hs-source-dirs:      src

  exposed-modules:     Azubi
  other-modules:       Azubi.Core.Model
                       Azubi.Core.Boot
                       Azubi.Core.Interpreter
                       Azubi.Core.Interpreter.LocalUnixInterpreter
                       Azubi.Syntax
                       Azubi.Core.Interpreter.UnixUtils
                       Azubi.Module.Installable
                       Azubi.Module.Runable

  build-depends:       base >=4.7 && < 5
                     , filepath >=1 && < 2
                     , options >= 1.2 && < 2
                     , process >=1.4 && < 2
                     , directory >= 1.3.1.0  && < 2
                     , Diff >= 0.3 
                     , unix >= 2.7
  default-language:    Haskell2010
  ghc-options:        -fwarn-incomplete-patterns





test-suite test_unix
  build-depends:       base >=4.7 && < 5
                     , filepath >=1 && < 2
                     , options >= 1.2 && < 2
                     , process >=1.4 && < 2
                     , directory >= 1.3.1.0  && < 2
                     , Diff >= 0.3 
                     , unix >= 2.7
                     , hspec      >= 2.3

  type:                exitcode-stdio-1.0
  main-is:             TestUnixInterpreter.hs
  hs-source-dirs:      src test
  default-language:    Haskell2010
  ghc-options:        -Wall
  buildable:           True

test-suite test_core
  build-depends:       base >=4.7 && < 5
                     , filepath >=1 && < 2
                     , options >= 1.2 && < 2
                     , process >=1.4 && < 2
                     , directory >= 1.3.1.0  && < 2
                     , Diff >= 0.3 
                     , unix >= 2.7
                     , hspec      >= 2.3

  type:                exitcode-stdio-1.0
  main-is:             TestCore.hs
  hs-source-dirs:      src test
  default-language:    Haskell2010
  ghc-options:        -Wall
  buildable:           True