-- 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.0 -- 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 test-suite test build-depends: base >= 4.7 && < 5 , filepath >=1 && < 2 , hspec >= 2.3 type: exitcode-stdio-1.0 main-is: Test.hs hs-source-dirs: src test default-language: Haskell2010 ghc-options: -Wall buildable: True -- executable azubi -- main-is: main.hs library hs-source-dirs: src exposed-modules: Azubi other-modules: Azubi.Core.Model Azubi.Core.Boot Azubi.Core.StateExecutor Azubi.Core.StateExecutors.LocalUnixStateExecutor Azubi.Syntax 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 && < 2 , Diff >= 0.3 , unix >= 2.7 default-language: Haskell2010 ghc-options: -fwarn-incomplete-patterns -- library -- exposed-modules: Azubi -- other-modules: Azubi.Commands.File -- , Azubi.Commands.Install -- , Azubi.Commands.Git -- , Azubi.Commands.Run -- , Azubi.Commands.Existance -- , Azubi.Core.Command -- , Azubi.Core.Context -- , Azubi.Core.Provision -- , Azubi.Core.Revertable -- , Azubi.Core.Syntax -- , Azubi.Render.BashScript -- , Azubi.Render.Warez -- , Azubi.Systems.Gentoo -- hs-source-dirs: oldsrc -- build-depends: base >=4.7 && < 5 -- , filepath >=1 && < 2 -- , options >= 1.2 && < 2 -- default-language: Haskell2010 source-repository head type: git location: git@github.com:mrVanDalo/azubi.git