packages feed

Cabal revisions of git-vogue-0.2.1.1

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-name:                git-vogue-version:             0.2.1.1-synopsis:            A framework for pre-commit checks.-description:         Make your Haskell git repositories fashionable.-homepage:            https://github.com/oswynb/git-vogue-license:             BSD3-license-file:        LICENSE-author:              Anchor Engineering <engineering@anchor.com.au>-maintainer:          Oswyn Brent <oztastic703@gmail.com>-copyright:           (c) 2015 Anchor Systems, Pty Ltd and Others-category:            Development-build-type:          Custom-extra-source-files:  README.md, changelog.txt-cabal-version:       >=1.10-data-files:          templates/pre-commit--source-repository HEAD-  type: git-  location: https://github.com/oswynb/git-vogue--flag gpl-    default: True-    description: Use GPL libraries, specifically hscolour--library-  default-language:    Haskell2010-  hs-source-dirs:      lib-  exposed-modules:     Git.Vogue-                       Git.Vogue.Types-                       Git.Vogue.VCS.Git-                       Git.Vogue.PluginDiscoverer.Libexec-                       Git.Vogue.PluginCommon-  other-modules:       Paths_git_vogue-  build-depends:       base >=4.6 && <5-                     , containers-                     , directory-                     , filepath-                     , formatting-                     , optparse-applicative >= 0.11-                     , process-                     , split-                     , text-                     , transformers-                     , unix--executable git-vogue-  default-language:    Haskell2010-  hs-source-dirs:      src-  main-is:             git-vogue.hs-  build-depends:       base-                     , git-vogue-                     , optparse-applicative-                     , text--executable git-vogue-cabal-  default-language:    Haskell2010-  hs-source-dirs:      src-  main-is:             git-vogue-cabal.hs-  build-depends:       base-                     , Cabal-                     , git-vogue--executable git-vogue-hlint-  default-language:    Haskell2010-  hs-source-dirs:      src-  main-is:             git-vogue-hlint.hs-  build-depends:       base-                     , bifunctors-                     , cpphs-                     , directory-                     , git-vogue-                     , haskell-src-exts-                     , hlint           >= 1.9.27 && < 1.10-                     , hscolour-  if !flag(gpl)-        cpp-options: -DGPL_SCARES_ME--executable git-vogue-stylish-  default-language:    Haskell2010-  hs-source-dirs:      src-  main-is:             git-vogue-stylish.hs-  build-depends:       base-                     , Diff-                     , git-vogue-                     , strict-                     , stylish-haskell >= 0.5.16 && < 0.6--executable git-vogue-ghc-mod-  default-language:    Haskell2010-  hs-source-dirs:      src-  main-is:             git-vogue-ghc-mod.hs-  build-depends:       base-                     , ghc-mod         >= 5.2    && < 5.6-                     , git-vogue--test-suite unit-  type:                exitcode-stdio-1.0-  default-language:    Haskell2010-  hs-source-dirs:      tests-  main-is:             unit.hs-  build-depends:       base-                     , containers-                     , directory-                     , filepath-                     , git-vogue-                     , hspec-                     , process-                     , temporary-  build-tools:         git--- vim: set tabstop=21 expandtab:+name:                git-vogue
+version:             0.2.1.1
+x-revision: 1
+synopsis:            A framework for pre-commit checks.
+description:         Make your Haskell git repositories fashionable.
+homepage:            https://github.com/christian-marie/git-vogue
+license:             BSD3
+license-file:        LICENSE
+author:              Anchor Engineering <engineering@anchor.com.au>
+maintainer:          Oswyn Brent <oztastic703@gmail.com>, Christian Marie <christian@ponies.io>
+copyright:           (c) 2016 Anchor Systems, Pty Ltd and Others
+category:            Development
+build-type:          Custom
+extra-source-files:  README.md, changelog.txt
+cabal-version:       >=1.10
+data-files:          templates/pre-commit
+
+source-repository HEAD
+  type: git
+  location: https://github.com/christian-marie/git-vogue
+
+flag gpl
+    default: True
+    description: Use GPL libraries, specifically hscolour
+
+library
+  default-language:    Haskell2010
+  hs-source-dirs:      lib
+  exposed-modules:     Git.Vogue
+                       Git.Vogue.Types
+                       Git.Vogue.VCS.Git
+                       Git.Vogue.PluginDiscoverer.Libexec
+                       Git.Vogue.PluginCommon
+  other-modules:       Paths_git_vogue
+  build-depends:       base >=4.6 && <5
+                     , containers
+                     , directory
+                     , filepath
+                     , formatting
+                     , optparse-applicative >= 0.11
+                     , process
+                     , split
+                     , text
+                     , transformers
+                     , unix
+
+executable git-vogue
+  default-language:    Haskell2010
+  hs-source-dirs:      src
+  main-is:             git-vogue.hs
+  build-depends:       base
+                     , git-vogue
+                     , optparse-applicative
+                     , text
+
+executable git-vogue-cabal
+  default-language:    Haskell2010
+  hs-source-dirs:      src
+  main-is:             git-vogue-cabal.hs
+  build-depends:       base
+                     , Cabal
+                     , git-vogue
+
+executable git-vogue-hlint
+  default-language:    Haskell2010
+  hs-source-dirs:      src
+  main-is:             git-vogue-hlint.hs
+  build-depends:       base
+                     , bifunctors
+                     , cpphs
+                     , directory
+                     , git-vogue
+                     , haskell-src-exts
+                     , hlint           >= 1.9.27 && < 1.10
+                     , hscolour
+  if !flag(gpl)
+        cpp-options: -DGPL_SCARES_ME
+
+executable git-vogue-stylish
+  default-language:    Haskell2010
+  hs-source-dirs:      src
+  main-is:             git-vogue-stylish.hs
+  build-depends:       base
+                     , Diff
+                     , git-vogue
+                     , strict
+                     , stylish-haskell >= 0.5.16 && < 0.6
+
+executable git-vogue-ghc-mod
+  default-language:    Haskell2010
+  hs-source-dirs:      src
+  main-is:             git-vogue-ghc-mod.hs
+  build-depends:       base
+                     , ghc-mod         >= 5.2    && < 5.6
+                     , git-vogue
+
+test-suite unit
+  type:                exitcode-stdio-1.0
+  default-language:    Haskell2010
+  hs-source-dirs:      tests
+  main-is:             unit.hs
+  build-depends:       base
+                     , containers
+                     , directory
+                     , filepath
+                     , git-vogue
+                     , hspec
+                     , process
+                     , temporary
+  build-tools:         git
+-- vim: set tabstop=21 expandtab: