aboutsummaryrefslogtreecommitdiff
path: root/src/CabalHelper/Compiletime/Compile.hs
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2017-10-04 16:56:44 +0200
committerDaniel Gröber <dxld@darkboxed.org>2017-10-04 16:56:44 +0200
commit1b202dee82a63e9d4d148d171b596767df90ce33 (patch)
treed830ea46d5ce2f38ec323f90eb6a78fa35b87197 /src/CabalHelper/Compiletime/Compile.hs
parent1e36bd795f2045271d0f413db60de184b20dfc39 (diff)
Support using act-as-setup with c-i >=1.24
Diffstat (limited to 'src/CabalHelper/Compiletime/Compile.hs')
-rw-r--r--src/CabalHelper/Compiletime/Compile.hs43
1 files changed, 27 insertions, 16 deletions
diff --git a/src/CabalHelper/Compiletime/Compile.hs b/src/CabalHelper/Compiletime/Compile.hs
index 77cb037..06b27f0 100644
--- a/src/CabalHelper/Compiletime/Compile.hs
+++ b/src/CabalHelper/Compiletime/Compile.hs
@@ -316,7 +316,7 @@ Otherwise we might be able to use the shipped Setup.hs
runCabalInstall
:: Options -> PackageDbDir -> CabalSourceDir -> Either HEAD Version-> IO ()
runCabalInstall opts (PackageDbDir db) (CabalSourceDir srcdir) ever = do
- cabalInstallVer <- cabalInstallVersion opts
+ civ@CabalInstallVersion {..} <- cabalInstallVersion opts
cabal_opts <- return $ concat
[
[ "--package-db=clear"
@@ -337,8 +337,7 @@ runCabalInstall opts (PackageDbDir db) (CabalSourceDir srcdir) ever = do
callProcessStderr opts (Just "/") (cabalProgram opts) cabal_opts
- setupProgram <- compileSetupHs opts db srcdir
- runSetupHs opts setupProgram db srcdir ever
+ runSetupHs opts db srcdir ever civ
hPutStrLn stderr "done"
@@ -352,21 +351,32 @@ cabalOptions opts =
runSetupHs
:: Options
- -> SetupProgram
-> FilePath
-> FilePath
-> Either HEAD Version
+ -> CabalInstallVersion
-> IO ()
-runSetupHs opts SetupProgram {..} db srcdir ever = do
- let run = callProcessStderr opts (Just srcdir) setupProgram
- parmake_opt
- | Right ver <- ever, ver >= Version [1,20] [] = ["-j"]
- | otherwise = []
+runSetupHs opts@Options {..} db srcdir ever CabalInstallVersion {..}
+ | cabalInstallVer >= parseVer "1.24" = do
+ go $ \args -> callProcessStderr opts (Just srcdir) cabalProgram $
+ [ "act-as-setup", "--" ] ++ args
+ | otherwise = do
+ SetupProgram {..} <- compileSetupHs opts db srcdir
+ go $ callProcessStderr opts (Just srcdir) setupProgram
+ where
+ parmake_opt
+ | Right ver <- ever, ver >= Version [1,20] [] = ["-j"]
+ | otherwise = []
+
+ go :: ([String] -> IO ()) -> IO ()
+ go run = do
+ run $ [ "configure", "--package-db", db, "--prefix", db </> "prefix" ] ++ cabalOptions opts
+ run $ [ "build" ] ++ parmake_opt
+ run [ "copy" ]
+ run [ "register" ]
+
+
- run $ [ "configure", "--package-db", db, "--prefix", db </> "prefix" ] ++ cabalOptions opts
- run $ [ "build" ] ++ parmake_opt
- run [ "copy" ]
- run [ "register" ]
newtype SetupProgram = SetupProgram { setupProgram :: FilePath }
compileSetupHs :: Options -> FilePath -> FilePath -> IO SetupProgram
@@ -552,7 +562,6 @@ cabalVersionExistsInPkgDb opts cabalVer = do
vers <- listCabalVersions' opts (Just db)
return $ cabalVer `elem` vers
-
ghcVersion :: Options -> IO Version
ghcVersion Options {..} = do
parseVer . trim <$> readProcess ghcProgram ["--numeric-version"] ""
@@ -561,9 +570,11 @@ ghcPkgVersion :: Options -> IO Version
ghcPkgVersion Options {..} = do
parseVer . trim . dropWhile (not . isDigit) <$> readProcess ghcPkgProgram ["--version"] ""
-cabalInstallVersion :: Options -> IO Version
+newtype CabalInstallVersion = CabalInstallVersion { cabalInstallVer :: Version }
+cabalInstallVersion :: Options -> IO CabalInstallVersion
cabalInstallVersion Options {..} = do
- parseVer . trim <$> readProcess cabalProgram ["--numeric-version"] ""
+ CabalInstallVersion . parseVer . trim
+ <$> readProcess cabalProgram ["--numeric-version"] ""
createPkgDb :: Options -> Either String Version -> IO PackageDbDir
createPkgDb opts@Options {..} cabalVer = do