aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hackage-metadata/cabal-helper-0.1.0.1.cabal71
-rw-r--r--hackage-metadata/cabal-helper-0.2.0.0.cabal71
-rw-r--r--hackage-metadata/cabal-helper-0.3.0.0.cabal72
-rw-r--r--hackage-metadata/cabal-helper-0.3.1.0.cabal74
-rw-r--r--hackage-metadata/cabal-helper-0.3.2.0.cabal74
-rw-r--r--hackage-metadata/cabal-helper-0.3.2.1.cabal75
-rw-r--r--hackage-metadata/cabal-helper-0.3.3.0.cabal75
-rw-r--r--hackage-metadata/cabal-helper-0.3.4.0.cabal85
-rw-r--r--hackage-metadata/cabal-helper-0.3.5.0.cabal87
-rw-r--r--hackage-metadata/cabal-helper-0.3.6.0.cabal88
-rw-r--r--hackage-metadata/cabal-helper-0.3.7.0.cabal88
-rw-r--r--hackage-metadata/cabal-helper-0.3.8.0.cabal88
-rw-r--r--hackage-metadata/cabal-helper-0.3.9.0.cabal90
-rw-r--r--hackage-metadata/cabal-helper-0.4.0.0.cabal92
-rw-r--r--hackage-metadata/cabal-helper-0.5.0.0.cabal93
-rw-r--r--hackage-metadata/cabal-helper-0.5.1.0.cabal93
-rw-r--r--hackage-metadata/cabal-helper-0.5.3.0.cabal106
-rw-r--r--hackage-metadata/cabal-helper-0.6.0.0.cabal105
-rw-r--r--hackage-metadata/cabal-helper-0.6.1.0.cabal105
-rw-r--r--hackage-metadata/cabal-helper-0.6.2.0.cabal105
-rw-r--r--hackage-metadata/cabal-helper-0.6.3.0.cabal106
-rw-r--r--hackage-metadata/cabal-helper-0.6.3.1.cabal115
-rw-r--r--hackage-metadata/cabal-helper-0.7.1.0.cabal145
23 files changed, 2103 insertions, 0 deletions
diff --git a/hackage-metadata/cabal-helper-0.1.0.1.cabal b/hackage-metadata/cabal-helper-0.1.0.1.cabal
new file mode 100644
index 0000000..62fedd5
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.1.0.1.cabal
@@ -0,0 +1,71 @@
+name: cabal-helper
+version: 0.1.0.1
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+
+ @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 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.
+
+ Currently @cabal-helper@ supports @Cabal >= 1.16@.
+
+license: AGPL-3
+license-file: LICENSE
+author: Daniel Gröber <dxld@darkboxed.org>
+maintainer: dxld@darkboxed.org
+category: Distribution
+build-type: Simple
+cabal-version: >=1.10
+extra-source-files: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ build-depends: base >= 4.5 && < 5
+ default-language: Haskell2010
+ Build-Depends: base
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+
+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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.2.0.0.cabal b/hackage-metadata/cabal-helper-0.2.0.0.cabal
new file mode 100644
index 0000000..fdb985e
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.2.0.0.cabal
@@ -0,0 +1,71 @@
+name: cabal-helper
+version: 0.2.0.0
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+
+ @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.
+
+ Currently @cabal-helper@ supports @Cabal >= 1.16@.
+
+license: AGPL-3
+license-file: LICENSE
+author: Daniel Gröber <dxld@darkboxed.org>
+maintainer: dxld@darkboxed.org
+category: Distribution
+build-type: Simple
+cabal-version: >=1.10
+extra-source-files: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ build-depends: base >= 4.5 && < 5
+ default-language: Haskell2010
+ Build-Depends: base
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+
+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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.3.0.0.cabal b/hackage-metadata/cabal-helper-0.3.0.0.cabal
new file mode 100644
index 0000000..2ac8739
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.0.0.cabal
@@ -0,0 +1,72 @@
+name: cabal-helper
+version: 0.3.0.0
+x-revision: 2
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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.
+
+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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.3.1.0.cabal b/hackage-metadata/cabal-helper-0.3.1.0.cabal
new file mode 100644
index 0000000..887a16d
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.1.0.cabal
@@ -0,0 +1,74 @@
+name: cabal-helper
+version: 0.3.1.0
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.3.2.0.cabal b/hackage-metadata/cabal-helper-0.3.2.0.cabal
new file mode 100644
index 0000000..56d85cb
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.2.0.cabal
@@ -0,0 +1,74 @@
+name: cabal-helper
+version: 0.3.2.0
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.3.2.1.cabal b/hackage-metadata/cabal-helper-0.3.2.1.cabal
new file mode 100644
index 0000000..1fd021e
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.2.1.cabal
@@ -0,0 +1,75 @@
+name: cabal-helper
+version: 0.3.2.1
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.3.3.0.cabal b/hackage-metadata/cabal-helper-0.3.3.0.cabal
new file mode 100644
index 0000000..730275c
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.3.0.cabal
@@ -0,0 +1,75 @@
+name: cabal-helper
+version: 0.3.3.0
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.3.4.0.cabal b/hackage-metadata/cabal-helper-0.3.4.0.cabal
new file mode 100644
index 0000000..9865c7a
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.4.0.cabal
@@ -0,0 +1,85 @@
+name: cabal-helper
+version: 0.3.4.0
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
diff --git a/hackage-metadata/cabal-helper-0.3.5.0.cabal b/hackage-metadata/cabal-helper-0.3.5.0.cabal
new file mode 100644
index 0000000..af68fc0
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.5.0.cabal
@@ -0,0 +1,87 @@
+name: cabal-helper
+version: 0.3.5.0
+synopsis: Simple interface to Cabal's configuration state used by ghc-mod
+description:
+ @cabal-helper@ provides a library which wraps the internal use of executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
diff --git a/hackage-metadata/cabal-helper-0.3.6.0.cabal b/hackage-metadata/cabal-helper-0.3.6.0.cabal
new file mode 100644
index 0000000..70c096b
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.6.0.cabal
@@ -0,0 +1,88 @@
+name: cabal-helper
+version: 0.3.6.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 executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
diff --git a/hackage-metadata/cabal-helper-0.3.7.0.cabal b/hackage-metadata/cabal-helper-0.3.7.0.cabal
new file mode 100644
index 0000000..bd68a5c
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.7.0.cabal
@@ -0,0 +1,88 @@
+name: cabal-helper
+version: 0.3.7.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 executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
diff --git a/hackage-metadata/cabal-helper-0.3.8.0.cabal b/hackage-metadata/cabal-helper-0.3.8.0.cabal
new file mode 100644
index 0000000..15710e3
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.8.0.cabal
@@ -0,0 +1,88 @@
+name: cabal-helper
+version: 0.3.8.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 executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ default-language: Haskell2010
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
diff --git a/hackage-metadata/cabal-helper-0.3.9.0.cabal b/hackage-metadata/cabal-helper-0.3.9.0.cabal
new file mode 100644
index 0000000..92a0bd9
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.3.9.0.cabal
@@ -0,0 +1,90 @@
+name: cabal-helper
+version: 0.3.9.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 executables
+ to lift the restrictions imposed by linking against versions of GHC before
+ @7.10@.
+ .
+ @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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
diff --git a/hackage-metadata/cabal-helper-0.4.0.0.cabal b/hackage-metadata/cabal-helper-0.4.0.0.cabal
new file mode 100644
index 0000000..c7fe730
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.4.0.0.cabal
@@ -0,0 +1,92 @@
+name: cabal-helper
+version: 0.4.0.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
+ anexecutable 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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
diff --git a/hackage-metadata/cabal-helper-0.5.0.0.cabal b/hackage-metadata/cabal-helper-0.5.0.0.cabal
new file mode 100644
index 0000000..7bf9b54
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.5.0.0.cabal
@@ -0,0 +1,93 @@
+name: cabal-helper
+version: 0.5.0.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
+ anexecutable 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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , process
diff --git a/hackage-metadata/cabal-helper-0.5.1.0.cabal b/hackage-metadata/cabal-helper-0.5.1.0.cabal
new file mode 100644
index 0000000..4627f64
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.5.1.0.cabal
@@ -0,0 +1,93 @@
+name: cabal-helper
+version: 0.5.1.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
+ anexecutable 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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , process
diff --git a/hackage-metadata/cabal-helper-0.5.3.0.cabal b/hackage-metadata/cabal-helper-0.5.3.0.cabal
new file mode 100644
index 0000000..87fafe1
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.5.3.0.cabal
@@ -0,0 +1,106 @@
+name: cabal-helper
+version: 0.5.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
+ anexecutable 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: CabalHelper/Main.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , ghc-prim
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests, .
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.23
+ , data-default
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary \ No newline at end of file
diff --git a/hackage-metadata/cabal-helper-0.6.0.0.cabal b/hackage-metadata/cabal-helper-0.6.0.0.cabal
new file mode 100644
index 0000000..a88f8da
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.6.0.0.cabal
@@ -0,0 +1,105 @@
+name: cabal-helper
+version: 0.6.0.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
+ anexecutable 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: CabalHelper/Main.hs
+ CabalHelper/Licenses.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , ghc-prim
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests, .
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary \ No newline at end of file
diff --git a/hackage-metadata/cabal-helper-0.6.1.0.cabal b/hackage-metadata/cabal-helper-0.6.1.0.cabal
new file mode 100644
index 0000000..ca55044
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.6.1.0.cabal
@@ -0,0 +1,105 @@
+name: cabal-helper
+version: 0.6.1.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
+ anexecutable 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: CabalHelper/Main.hs
+ CabalHelper/Licenses.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , ghc-prim
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests, .
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary \ No newline at end of file
diff --git a/hackage-metadata/cabal-helper-0.6.2.0.cabal b/hackage-metadata/cabal-helper-0.6.2.0.cabal
new file mode 100644
index 0000000..dfc81df
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.6.2.0.cabal
@@ -0,0 +1,105 @@
+name: cabal-helper
+version: 0.6.2.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
+ anexecutable 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: CabalHelper/Main.hs
+ CabalHelper/Licenses.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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
+ GHC-Options: -Wall
+ X-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , ghc-prim
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests, .
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.6.3.0.cabal b/hackage-metadata/cabal-helper-0.6.3.0.cabal
new file mode 100644
index 0000000..ac5f55d
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.6.3.0.cabal
@@ -0,0 +1,106 @@
+name: cabal-helper
+version: 0.6.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
+ anexecutable 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: CabalHelper/Main.hs
+ CabalHelper/Licenses.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , ghc-prim
+
+Test-Suite spec
+ Default-Language: Haskell2010
+ Type: exitcode-stdio-1.0
+ Main-Is: Spec.hs
+ Hs-Source-Dirs: tests, .
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.6.3.1.cabal b/hackage-metadata/cabal-helper-0.6.3.1.cabal
new file mode 100644
index 0000000..1a11add
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.6.3.1.cabal
@@ -0,0 +1,115 @@
+name: cabal-helper
+version: 0.6.3.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
+ anexecutable 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: CabalHelper/Main.hs
+ CabalHelper/Licenses.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , 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-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , 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 >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.23
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary
diff --git a/hackage-metadata/cabal-helper-0.7.1.0.cabal b/hackage-metadata/cabal-helper-0.7.1.0.cabal
new file mode 100644
index 0000000..40defed
--- /dev/null
+++ b/hackage-metadata/cabal-helper-0.7.1.0.cabal
@@ -0,0 +1,145 @@
+name: cabal-helper
+version: 0.7.1.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: CabalHelper/Main.hs
+ CabalHelper/Licenses.hs
+
+source-repository head
+ type: git
+ location: https://github.com/DanielG/cabal-helper.git
+
+library
+ exposed-modules: Distribution.Helper
+ Other-Modules: Paths_cabal_helper
+ , CabalHelper.Types
+ , CabalHelper.Sandbox
+ default-language: Haskell2010
+ GHC-Options: -Wall
+ Build-Depends: base >= 4.5 && < 5
+ , Cabal >= 1.14 && < 1.26
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+
+Executable cabal-helper-wrapper-v0.7
+ 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-Install-Target: $libexecdir
+ Build-Depends: base >= 4.5 && < 5
+ , bytestring
+ , Cabal >= 1.14 && < 1.26
+ , directory
+ , filepath
+ , process
+ , transformers
+ , template-haskell
+ , temporary
+ , utf8-string
+ , 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 >= 4.5 && < 5
+ , cabal-helper
+ , extra
+ , unix
+ , Cabal >= 1.14 && < 1.26
+ , directory
+ , filepath
+ , transformers
+ , mtl
+ , process
+ , ghc-prim
+ , bytestring
+ , utf8-string
+ , template-haskell
+ , temporary
+
+-- custom-setup
+-- setup-depends: base,
+-- Cabal,
+-- filepath
+
+-- 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