Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add example to show off cabal-helper's functionality | Daniel Gröber | 2019-01-22 | 1 | -0/+65 | |
| | ||||||
* | Comments | Daniel Gröber | 2019-01-22 | 1 | -1/+0 | |
| | | | | [ci skip] | |||||
* | compile-test: Don't `cabal update` before tests | Daniel Gröber | 2019-01-22 | 1 | -2/+0 | |
| | | | | The CI script does that anyways | |||||
* | compile-test: Only override HOME when it doesn't exist | Daniel Gröber | 2019-01-22 | 1 | -1/+10 | |
| | ||||||
* | Refactor Compile (for v2-install) | Daniel Gröber | 2019-01-22 | 1 | -44/+44 | |
| | ||||||
* | compilation-test: Let Cabal constraint fall through to latest GHC ver | Daniel Gröber | 2019-01-22 | 1 | -2/+2 | |
| | ||||||
* | Sync with Cabal HEAD | Daniel Gröber | 2019-01-22 | 1 | -10/+4 | |
| | ||||||
* | Add descriptions to the tests | Daniel Gröber | 2019-01-22 | 2 | -0/+10 | |
| | ||||||
* | ghc-session: Refactor in preparation for Stack tests | Daniel Gröber | 2019-01-22 | 1 | -43/+54 | |
| | ||||||
* | Allow v2-build projects to not have a cabal.project file | Daniel Gröber | 2019-01-22 | 1 | -4/+0 | |
| | ||||||
* | Run tests against both old and new build configurations | Alan Zimmerman | 2019-01-22 | 1 | -16/+83 | |
| | ||||||
* | Split up Compile.hs into multiple modules | Daniel Gröber | 2018-10-27 | 1 | -1/+4 | |
| | ||||||
* | Add some comments | Daniel Gröber | 2018-10-27 | 1 | -2/+3 | |
| | ||||||
* | Suport using Stack's built-in GHC to build the helper | Daniel Gröber | 2018-10-27 | 1 | -0/+1 | |
| | ||||||
* | Refactor Unit handling | Daniel Gröber | 2018-10-27 | 1 | -14/+18 | |
| | ||||||
* | Add 'allUnits' convenience query | Daniel Gröber | 2018-10-27 | 1 | -5/+1 | |
| | ||||||
* | compile-test: Add new Cabal versions | Daniel Gröber | 2018-10-27 | 1 | -0/+2 | |
| | ||||||
* | tests: Ignore `cabal sdist` warnings | Daniel Gröber | 2018-10-27 | 1 | -1/+1 | |
| | ||||||
* | Start refactoring to support cabal v2-build | Daniel Gröber | 2018-10-27 | 2 | -10/+15 | |
| | ||||||
* | Drop GHC 7.8 support | Daniel Gröber | 2018-10-27 | 1 | -20/+21 | |
| | | | | | | | | | Unfortunately we need process-1.2.3.0 for 'readCreateProcess' replacing it for 7.8 is just too much effort. For testing's sake GHC 7.10 can still build Cabal-1.18.* but not 1.20, seems to just need a hackage revision though. Just disable 1.20 for now. I don't think anyone really still uses that. | |||||
* | Drop GHC<7.8 support | Daniel Gröber | 2018-10-26 | 1 | -9/+2 | |
| | ||||||
* | Remove wrapper, integrate functionality into the library | Daniel Gröber | 2018-08-26 | 1 | -9/+14 | |
| | | | | | | | | | | | | The use of a wrapper executable to compile the real helper was a design mistake originally intended to isolate the calling application from a dependency on the Cabal library completely. This isolation turned out to be rather tedious and thus was ignored soon, the wrapper remained though. Due to the way cabal-install installs components of a package into seperate install trees when using new-install finding the wrapper exe reliably has become pretty much impossible without huge effort. Hence we remove it and integrate the functionality into the library instead. | |||||
* | ghc-session: Fix `cabal sdist` warning | Daniel Gröber | 2018-06-17 | 1 | -1/+1 | |
| | ||||||
* | compile-test: Add list-version command to list Cabal versions | Daniel Gröber | 2018-06-17 | 1 | -72/+80 | |
| | ||||||
* | Drop Cabal<2.0 compiletime support | Daniel Gröber | 2018-06-16 | 1 | -27/+20 | |
| | | | | | We still support <2.0 at runtime this only concerns the Cabal version used at cabal-install time. | |||||
* | compile-test: Add Cabal versions for GHC 8.4 | Daniel Gröber | 2018-04-16 | 1 | -0/+3 | |
| | ||||||
* | Revert hsSourceDirs hackery (#43) | Alan Zimmerman | 2018-01-29 | 1 | -1/+13 | |
| | | | Move hack to GhcSession test for now, the corresponding logic should be moved into c-h instead of living in ghc-mod instead. | |||||
* | Refactor 'compileHelper' to cache helper in all cases | Daniel Gröber | 2018-01-18 | 1 | -5/+8 | |
| | ||||||
* | Fix and refactor CH.C.Compile | Daniel Gröber | 2018-01-18 | 1 | -9/+39 | |
| | | | | ..compilation outputs were landing in CWD | |||||
* | compile-test: Add Cabal-2.0.{1.0,1.1} | Daniel Gröber | 2018-01-18 | 1 | -0/+2 | |
| | ||||||
* | Refactor to introduce Cabal version type | Daniel Gröber | 2018-01-18 | 1 | -10/+10 | |
| | ||||||
* | ghc-session: Factor out CPP | Daniel Gröber | 2018-01-18 | 1 | -5/+7 | |
| | ||||||
* | When a component uses an internal backpack module, use cabal opts | Alan Zimmerman | 2018-01-18 | 1 | -6/+2 | |
| | | | | Which includes inserting the inplace directory for package includes | |||||
* | WIP on addressing review issues | Alan Zimmerman | 2018-01-18 | 1 | -4/+2 | |
| | | | | | Still need clarity on best way of adding the local package db when it is needed and exists. | |||||
* | Clean up | Alan Zimmerman | 2018-01-18 | 1 | -10/+5 | |
| | ||||||
* | Remove extraneous imports | Alan Zimmerman | 2018-01-18 | 1 | -10/+0 | |
| | ||||||
* | Tests pass for backpack | Alan Zimmerman | 2018-01-18 | 1 | -0/+11 | |
| | ||||||
* | Progress on when to build and when not | Alan Zimmerman | 2018-01-18 | 1 | -28/+37 | |
| | ||||||
* | Bring in needsBuildOuput query, for indefinite modules | Alan Zimmerman | 2018-01-18 | 1 | -23/+30 | |
| | ||||||
* | WIP on backpack support | Alan Zimmerman | 2018-01-18 | 1 | -9/+23 | |
| | ||||||
* | Saner way to merge entrypoints | Alan Zimmerman | 2018-01-18 | 1 | -1/+1 | |
| | ||||||
* | ghc-session: Add backpack test project | Daniel Gröber | 2018-01-18 | 9 | -0/+112 | |
| | ||||||
* | ghc-session: Make tests fail on warnings | Daniel Gröber | 2018-01-18 | 1 | -2/+5 | |
| | ||||||
* | ghc-session: Add flib test | Daniel Gröber | 2018-01-18 | 5 | -0/+35 | |
| | ||||||
* | ghc-session: Add test-suite and benchmark tests | Daniel Gröber | 2018-01-18 | 2 | -2/+22 | |
| | ||||||
* | Revert indentation | Alan Zimmerman | 2018-01-18 | 1 | -30/+30 | |
| | ||||||
* | Remove commented out code | Alan Zimmerman | 2018-01-18 | 1 | -5/+0 | |
| | ||||||
* | Update as per @DanielG comments | Alan Zimmerman | 2018-01-18 | 1 | -28/+28 | |
| | ||||||
* | Try to fix GHC 7.4 build | Alan Zimmerman | 2018-01-18 | 1 | -2/+4 | |
| | ||||||
* | Use defaultLogAction for GHC 7.4 | Alan Zimmerman | 2018-01-18 | 1 | -0/+4 | |
| |