Cabal revisions of cabal-helper-0.7.3.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-name: cabal-helper-version: 0.7.3.0-synopsis: Simple interface to some of Cabal's configuration state used by ghc-mod-description:- @cabal-helper@ provides a library which wraps the internal use of an- executable to lift the restrictions imposed by linking against versions of- GHC before @7.10@. This has the pleasant side effect of isolating the user- from having to deal with Cabal version changes manually as @cabal-helper@- can simply recompile it's helper program automatically as needed.- .- @cabal-helper@ uses a wrapper executable to compile the actual cabal-helper- executable at runtime while linking against an arbitrary version of- Cabal. This runtime-compiled helper executable is then used to extract- various bits and peices from Cabal\'s on disk state (dist/setup-config)- written by it's configure command.- .- In addition to this the wrapper executable also supports installing any- version of Cabal from hackage in case it cannot be found in any available- package database. The wrapper installs these instances of the Cabal library- into a private package database so as to not interfere with the user's- packages.- .- Furthermore the wrapper supports one special case namely reading a state- file for Cabal itself. This is needed as Cabal compiles it's Setup.hs using- itself and not using any version of Cabal installed in any package database.- .- @cabal-helper@ can compile with @Cabal >= 1.14@ but requires @Cabal >= 1.16@- at runtime.--license: AGPL-3-license-file: LICENSE-author: Daniel Gröber <dxld@darkboxed.org>-maintainer: dxld@darkboxed.org-category: Distribution-build-type: Custom-cabal-version: >=1.10-extra-source-files: README.md- CabalHelper/Main.hs- CabalHelper/Licenses.hs--source-repository head- type: git- location: https://github.com/DanielG/cabal-helper.git--Custom-Setup- Setup-Depends: base- , Cabal >= 1.14 && < 1.25- , containers- , filepath- , directory- , process- , template-haskell- , transformers--library- exposed-modules: Distribution.Helper- other-modules: Paths_cabal_helper- , CabalHelper.Types- , CabalHelper.Sandbox- default-language: Haskell2010- ghc-options: -Wall- build-depends: base < 5 && >= 4.5- , Cabal < 1.25 && >= 1.14- , directory < 1.4 && >= 1.1.0.2- , filepath < 1.5 && >= 1.3.0.0- , transformers < 0.6 && >= 0.3.0.0- , mtl < 2.3 && >= 2.0- , process < 1.5 && >= 1.1.0.1- , ghc-prim--executable cabal-helper-wrapper- default-language: Haskell2010- other-extensions: TemplateHaskell- main-is: CabalHelper/Wrapper.hs- other-modules: Paths_cabal_helper- CabalHelper.Types- CabalHelper.Common- CabalHelper.GuessGhc- CabalHelper.Data- CabalHelper.Compile- CabalHelper.Log- CabalHelper.Sandbox- ghc-options: -Wall- x-internal: True- build-depends: base < 5 && >= 4.5- , Cabal < 1.25 && >= 1.14- , bytestring < 0.11 && >= 0.9.2.1- , directory < 1.4 && >= 1.1.0.2- , filepath < 1.5 && >= 1.3.0.0- , transformers < 0.6 && >= 0.3.0.0- , mtl < 2.3 && >= 2.0- , process < 1.5 && >= 1.1.0.1- , temporary < 1.3 && >= 1.2.0.4- , utf8-string < 1.1 && >= 1.0.1.1-- , template-haskell- , ghc-prim--test-suite spec- default-language: Haskell2010- type: exitcode-stdio-1.0- main-is: Spec.hs- other-modules: CabalHelper.Common- CabalHelper.Compile- CabalHelper.Data- CabalHelper.Log- CabalHelper.Sandbox- CabalHelper.Types- Distribution.Helper- Paths_cabal_helper- hs-source-dirs: tests, .- ghc-options: -Wall- build-tools: cabal- build-depends: base < 5 && >= 4.5- , Cabal < 1.26 && >= 1.14- , bytestring < 0.11 && >= 0.9.2.1- , directory < 1.4 && >= 1.1.0.2- , filepath < 1.5 && >= 1.3.0.0- , transformers < 0.6 && >= 0.3.0.0- , mtl < 2.3 && >= 2.0- , process < 1.5 && >= 1.1.0.1- , temporary < 1.3 && >= 1.2.0.4- , utf8-string < 1.1 && >= 1.0.1.1-- -- additional test deps- , extra < 1.5 && >= 1.4.10- , unix < 2.8 && >= 2.5.1.0-- , template-haskell- , ghc-prim- , cabal-helper---- TODO: Use cabal_macros.h to replace -D flags by including it in--- CabalHelper.Data------ executable cabal-helper-main--- if flag(dev)--- buildable: True--- else--- buildable: False--- default-language: Haskell2010--- default-extensions: NondecreasingIndentation--- main-is: CabalHelper/Main.hs--- other-modules:--- ghc-options: -Wall -fno-warn-unused-imports -optP-DCABAL_MAJOR=1 -optP-DCABAL_MINOR=25 -optP-DCABAL_HELPER=1 -optP-DCABAL_HELPER_DEV=1--- build-depends: base--- , Cabal--- , containers--- , bytestring--- , filepath--- , directory------ flag dev--- description: Build development components--- default: False--- manual: True+name: cabal-helper +version: 0.7.3.0 +x-revision: 1 +synopsis: Simple interface to some of Cabal's configuration state used by ghc-mod +description: + @cabal-helper@ provides a library which wraps the internal use of an + executable to lift the restrictions imposed by linking against versions of + GHC before @7.10@. This has the pleasant side effect of isolating the user + from having to deal with Cabal version changes manually as @cabal-helper@ + can simply recompile it's helper program automatically as needed. + . + @cabal-helper@ uses a wrapper executable to compile the actual cabal-helper + executable at runtime while linking against an arbitrary version of + Cabal. This runtime-compiled helper executable is then used to extract + various bits and peices from Cabal\'s on disk state (dist/setup-config) + written by it's configure command. + . + In addition to this the wrapper executable also supports installing any + version of Cabal from hackage in case it cannot be found in any available + package database. The wrapper installs these instances of the Cabal library + into a private package database so as to not interfere with the user's + packages. + . + Furthermore the wrapper supports one special case namely reading a state + file for Cabal itself. This is needed as Cabal compiles it's Setup.hs using + itself and not using any version of Cabal installed in any package database. + . + @cabal-helper@ can compile with @Cabal >= 1.14@ but requires @Cabal >= 1.16@ + at runtime. + +license: AGPL-3 +license-file: LICENSE +author: Daniel Gröber <dxld@darkboxed.org> +maintainer: dxld@darkboxed.org +category: Distribution +build-type: Custom +cabal-version: >=1.10 +extra-source-files: README.md + CabalHelper/Main.hs + CabalHelper/Licenses.hs + +source-repository head + type: git + location: https://github.com/DanielG/cabal-helper.git + +Custom-Setup + Setup-Depends: base + , Cabal >= 1.14 && < 1.25 + , containers + , filepath + , directory + , process + , template-haskell + , transformers + +library + exposed-modules: Distribution.Helper + other-modules: Paths_cabal_helper + , CabalHelper.Types + , CabalHelper.Sandbox + default-language: Haskell2010 + ghc-options: -Wall + build-depends: base < 5 && >= 4.5 + , Cabal < 1.25 && >= 1.14 + , directory < 1.4 && >= 1.1.0.2 + , filepath < 1.5 && >= 1.3.0.0 + , transformers < 0.6 && >= 0.3.0.0 + , mtl < 2.3 && >= 2.0 + , process < 1.5 && >= 1.1.0.1 + , ghc-prim + +executable cabal-helper-wrapper + default-language: Haskell2010 + other-extensions: TemplateHaskell + main-is: CabalHelper/Wrapper.hs + other-modules: Paths_cabal_helper + CabalHelper.Types + CabalHelper.Common + CabalHelper.GuessGhc + CabalHelper.Data + CabalHelper.Compile + CabalHelper.Log + CabalHelper.Sandbox + ghc-options: -Wall + x-internal: True + build-depends: base < 5 && >= 4.5 + , Cabal < 1.25 && >= 1.14 + , bytestring < 0.11 && >= 0.9.2.1 + , directory < 1.4 && >= 1.1.0.2 + , filepath < 1.5 && >= 1.3.0.0 + , transformers < 0.6 && >= 0.3.0.0 + , mtl < 2.3 && >= 2.0 + , process < 1.5 && >= 1.1.0.1 + , temporary < 1.3 && >= 1.2.0.4 + , utf8-string < 1.1 && >= 1.0.1.1 + + , template-haskell + , ghc-prim + +test-suite spec + default-language: Haskell2010 + type: exitcode-stdio-1.0 + main-is: Spec.hs + other-modules: CabalHelper.Common + CabalHelper.Compile + CabalHelper.Data + CabalHelper.Log + CabalHelper.Sandbox + CabalHelper.Types + Distribution.Helper + Paths_cabal_helper + hs-source-dirs: tests, . + ghc-options: -Wall + build-tools: cabal + build-depends: base < 5 && >= 4.5 + , Cabal < 1.26 && >= 1.14 + , bytestring < 0.11 && >= 0.9.2.1 + , directory < 1.4 && >= 1.1.0.2 + , filepath < 1.5 && >= 1.3.0.0 + , transformers < 0.6 && >= 0.3.0.0 + , mtl < 2.3 && >= 2.0 + , process < 1.5 && >= 1.1.0.1 + , temporary < 1.3 && >= 1.2.0.4 + , utf8-string < 1.1 && >= 1.0.1.1 + + -- additional test deps + , extra < 1.6 && >= 1.4.10 + , unix < 2.8 && >= 2.5.1.0 + + , template-haskell + , ghc-prim + , cabal-helper + +-- TODO: Use cabal_macros.h to replace -D flags by including it in +-- CabalHelper.Data +-- +-- executable cabal-helper-main +-- if flag(dev) +-- buildable: True +-- else +-- buildable: False +-- default-language: Haskell2010 +-- default-extensions: NondecreasingIndentation +-- main-is: CabalHelper/Main.hs +-- other-modules: +-- ghc-options: -Wall -fno-warn-unused-imports -optP-DCABAL_MAJOR=1 -optP-DCABAL_MINOR=25 -optP-DCABAL_HELPER=1 -optP-DCABAL_HELPER_DEV=1 +-- build-depends: base +-- , Cabal +-- , containers +-- , bytestring +-- , filepath +-- , directory +-- +-- flag dev +-- description: Build development components +-- default: False +-- manual: True