{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE FlexibleInstances #-}
#if MIN_VERSION_Cabal(3,14,0)
{-# LANGUAGE DataKinds #-}
#endif
{-# LANGUAGE MultiParamTypeClasses #-}
module Distribution.Extra.Doctest (
defaultMainWithDoctests,
defaultMainAutoconfWithDoctests,
addDoctestsUserHook,
doctestsUserHooks,
generateBuildModule,
) where
import Control.Monad
(when)
import Data.IORef
(modifyIORef, newIORef, readIORef)
import Data.List
(nub)
import Data.Maybe
(mapMaybe, maybeToList)
import Data.String
(fromString)
import Distribution.Package
(UnitId, Package (..))
import Distribution.PackageDescription
(BuildInfo (..), Executable (..), GenericPackageDescription,
Library (..), PackageDescription, TestSuite (..))
import Distribution.Simple
(UserHooks (..), autoconfUserHooks, defaultMainWithHooks,
simpleUserHooks)
import Distribution.Simple.Compiler
(CompilerFlavor (GHC), CompilerId (..), compilerId)
import Distribution.Simple.LocalBuildInfo
(ComponentLocalBuildInfo (componentPackageDeps), LocalBuildInfo,
compiler, withExeLBI, withLibLBI, withPackageDB, withTestLBI)
import Distribution.Simple.Setup
(BuildFlags (..),
emptyBuildFlags,
fromFlag)
import Distribution.Simple.Utils
(createDirectoryIfMissingVerbose, info)
import Distribution.Text
(display)
import qualified Data.Foldable as F
(for_)
import qualified Data.Traversable as T
(traverse)
import qualified System.FilePath ((</>))
#if MIN_VERSION_base(4,11,0)
import Data.Functor ((<&>))
#endif
#if MIN_VERSION_Cabal(1,25,0)
import Distribution.Simple.BuildPaths
(autogenComponentModulesDir)
#else
import Distribution.Simple.BuildPaths
(autogenModulesDir)
#endif
#if MIN_VERSION_Cabal(2,0,0)
import Distribution.Types.MungedPackageId
(MungedPackageId)
import Distribution.Types.UnqualComponentName
(unUnqualComponentName)
import Distribution.PackageDescription
(CondTree (..))
import Distribution.Types.GenericPackageDescription
(GenericPackageDescription (condTestSuites))
import Distribution.Version
(mkVersion)
#else
import Data.Version
(Version (..))
import Distribution.Package
(PackageId)
#endif
#if MIN_VERSION_Cabal(3,0,0)
import Distribution.Simple.Utils
(findFileEx)
#else
import Distribution.Simple.Utils
(findFile)
#endif
#if MIN_VERSION_Cabal(3,0,0)
import Distribution.Types.LibraryName
(libraryNameString)
#endif
#if MIN_VERSION_Cabal(3,5,0)
import Distribution.Utils.Path
(getSymbolicPath)
#endif
#if MIN_VERSION_Cabal(3,14,0)
import Distribution.Simple.Compiler
(PackageDB, PackageDBX (GlobalPackageDB, UserPackageDB, SpecificPackageDB))
import Distribution.Simple.LocalBuildInfo
(absoluteWorkingDirLBI, interpretSymbolicPathLBI)
import Distribution.Simple.Setup
(HaddockFlags, haddockCommonFlags)
import Distribution.Utils.Path
(FileOrDir(..), SymbolicPath, interpretSymbolicPathAbsolute, makeRelativePathEx, makeSymbolicPath)
import qualified Distribution.Utils.Path as SymPath ((</>))
#else
import Distribution.Simple.Compiler
(PackageDB (GlobalPackageDB, UserPackageDB, SpecificPackageDB))
import Distribution.Simple.Setup
(HaddockFlags (haddockDistPref, haddockVerbosity))
#endif
#if MIN_VERSION_directory(1,2,2)
import System.Directory
(makeAbsolute)
#else
import System.Directory
(getCurrentDirectory)
import System.FilePath
(isAbsolute)
#endif
#if !MIN_VERSION_base(4,11,0)
(<&>) :: Functor f => f a -> (a -> b) -> f b
(<&>) = flip fmap
infixl 1 <&>
#endif
class CompatSymPath p q where
(</>) :: p -> FilePath -> q
infixr 5 </>
instance CompatSymPath FilePath FilePath where
</> :: String -> String -> String
(</>) = String -> String -> String
(System.FilePath.</>)
#if MIN_VERSION_Cabal(3,14,0)
instance CompatSymPath (SymbolicPath allowAbs ('Dir loc1))
(SymbolicPath allowAbs ('Dir loc2)) where
SymbolicPath allowAbs ('Dir loc1)
dir </> :: SymbolicPath allowAbs ('Dir loc1)
-> String -> SymbolicPath allowAbs ('Dir loc2)
</> String
name = SymbolicPath allowAbs ('Dir loc1)
dir SymbolicPath allowAbs ('Dir loc1)
-> RelativePath loc1 ('Dir loc2)
-> SymbolicPath allowAbs ('Dir loc2)
forall p q r. PathLike p q r => p -> q -> r
SymPath.</> String -> RelativePath loc1 ('Dir loc2)
forall from (to :: FileOrDir).
HasCallStack =>
String -> RelativePath from to
makeRelativePathEx String
name
#endif
#if MIN_VERSION_Cabal(3,14,0)
unsymbolizePath :: SymbolicPathX allowAbsolute from to -> String
unsymbolizePath = SymbolicPathX allowAbsolute from to -> String
forall (allowAbsolute :: AllowAbsolute) from (to :: FileOrDir).
SymbolicPathX allowAbsolute from to -> String
getSymbolicPath
#else
makeSymbolicPath :: FilePath -> FilePath
makeSymbolicPath = id
unsymbolizePath :: FilePath -> FilePath
unsymbolizePath = id
#endif
#if !MIN_VERSION_directory(1,2,2)
makeAbsolute :: FilePath -> IO FilePath
makeAbsolute p | isAbsolute p = return p
| otherwise = do
cwd <- getCurrentDirectory
return $ cwd </> p
#endif
#if !MIN_VERSION_Cabal(3,0,0)
findFileEx :: verbosity -> [FilePath] -> FilePath -> IO FilePath
findFileEx _ = findFile
#endif
#if !MIN_VERSION_Cabal(2,0,0)
mkVersion :: [Int] -> Version
mkVersion ds = Version ds []
#endif
defaultMainWithDoctests
:: String
-> IO ()
defaultMainWithDoctests :: String -> IO ()
defaultMainWithDoctests = UserHooks -> IO ()
defaultMainWithHooks (UserHooks -> IO ()) -> (String -> UserHooks) -> String -> IO ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> UserHooks
doctestsUserHooks
defaultMainAutoconfWithDoctests
:: String
-> IO ()
defaultMainAutoconfWithDoctests :: String -> IO ()
defaultMainAutoconfWithDoctests String
n =
UserHooks -> IO ()
defaultMainWithHooks (String -> UserHooks -> UserHooks
addDoctestsUserHook String
n UserHooks
autoconfUserHooks)
doctestsUserHooks
:: String
-> UserHooks
doctestsUserHooks :: String -> UserHooks
doctestsUserHooks String
testsuiteName =
String -> UserHooks -> UserHooks
addDoctestsUserHook String
testsuiteName UserHooks
simpleUserHooks
addDoctestsUserHook :: String -> UserHooks -> UserHooks
addDoctestsUserHook :: String -> UserHooks -> UserHooks
addDoctestsUserHook String
testsuiteName UserHooks
uh = UserHooks
uh
{ buildHook = \PackageDescription
pkg LocalBuildInfo
lbi UserHooks
hooks BuildFlags
flags -> do
String
-> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO ()
generateBuildModule String
testsuiteName BuildFlags
flags PackageDescription
pkg LocalBuildInfo
lbi
UserHooks
-> PackageDescription
-> LocalBuildInfo
-> UserHooks
-> BuildFlags
-> IO ()
buildHook UserHooks
uh PackageDescription
pkg LocalBuildInfo
lbi UserHooks
hooks BuildFlags
flags
, confHook = \(GenericPackageDescription
gpd, HookedBuildInfo
hbi) ConfigFlags
flags ->
UserHooks
-> (GenericPackageDescription, HookedBuildInfo)
-> ConfigFlags
-> IO LocalBuildInfo
confHook UserHooks
uh (String -> GenericPackageDescription -> GenericPackageDescription
amendGPD String
testsuiteName GenericPackageDescription
gpd, HookedBuildInfo
hbi) ConfigFlags
flags
, haddockHook = \PackageDescription
pkg LocalBuildInfo
lbi UserHooks
hooks HaddockFlags
flags -> do
String
-> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO ()
generateBuildModule String
testsuiteName (HaddockFlags -> BuildFlags
haddockToBuildFlags HaddockFlags
flags) PackageDescription
pkg LocalBuildInfo
lbi
UserHooks
-> PackageDescription
-> LocalBuildInfo
-> UserHooks
-> HaddockFlags
-> IO ()
haddockHook UserHooks
uh PackageDescription
pkg LocalBuildInfo
lbi UserHooks
hooks HaddockFlags
flags
}
haddockToBuildFlags :: HaddockFlags -> BuildFlags
haddockToBuildFlags :: HaddockFlags -> BuildFlags
haddockToBuildFlags HaddockFlags
f =
#if MIN_VERSION_Cabal(3,14,0)
BuildFlags
emptyBuildFlags
{ buildCommonFlags = haddockCommonFlags f }
#else
emptyBuildFlags
{ buildVerbosity = haddockVerbosity f
, buildDistPref = haddockDistPref f
}
#endif
data Name = NameLib (Maybe String) | NameExe String deriving (Name -> Name -> Bool
(Name -> Name -> Bool) -> (Name -> Name -> Bool) -> Eq Name
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Name -> Name -> Bool
== :: Name -> Name -> Bool
$c/= :: Name -> Name -> Bool
/= :: Name -> Name -> Bool
Eq, Int -> Name -> String -> String
[Name] -> String -> String
Name -> String
(Int -> Name -> String -> String)
-> (Name -> String) -> ([Name] -> String -> String) -> Show Name
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
$cshowsPrec :: Int -> Name -> String -> String
showsPrec :: Int -> Name -> String -> String
$cshow :: Name -> String
show :: Name -> String
$cshowList :: [Name] -> String -> String
showList :: [Name] -> String -> String
Show)
nameToString :: Name -> String
nameToString :: Name -> String
nameToString Name
n = case Name
n of
NameLib Maybe String
x -> String -> (String -> String) -> Maybe String -> String
forall b a. b -> (a -> b) -> Maybe a -> b
maybe String
"" ((String
"_lib_" String -> String -> String
forall a. [a] -> [a] -> [a]
++) (String -> String) -> (String -> String) -> String -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (Char -> Char) -> String -> String
forall a b. (a -> b) -> [a] -> [b]
map Char -> Char
fixchar) Maybe String
x
NameExe String
x -> String
"_exe_" String -> String -> String
forall a. [a] -> [a] -> [a]
++ (Char -> Char) -> String -> String
forall a b. (a -> b) -> [a] -> [b]
map Char -> Char
fixchar String
x
where
fixchar :: Char -> Char
fixchar :: Char -> Char
fixchar Char
'-' = Char
'_'
fixchar Char
c = Char
c
data Component = Component Name [String] [String] [String]
deriving Int -> Component -> String -> String
[Component] -> String -> String
Component -> String
(Int -> Component -> String -> String)
-> (Component -> String)
-> ([Component] -> String -> String)
-> Show Component
forall a.
(Int -> a -> String -> String)
-> (a -> String) -> ([a] -> String -> String) -> Show a
$cshowsPrec :: Int -> Component -> String -> String
showsPrec :: Int -> Component -> String -> String
$cshow :: Component -> String
show :: Component -> String
$cshowList :: [Component] -> String -> String
showList :: [Component] -> String -> String
Show
generateBuildModule
:: String
-> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO ()
generateBuildModule :: String
-> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO ()
generateBuildModule String
testSuiteName BuildFlags
flags PackageDescription
pkg LocalBuildInfo
lbi = do
let verbosity :: Verbosity
verbosity = Flag Verbosity -> Verbosity
forall a. WithCallStack (Flag a -> a)
fromFlag (BuildFlags -> Flag Verbosity
buildVerbosity BuildFlags
flags)
let distPref :: SymbolicPath Pkg ('Dir Dist)
distPref = Flag (SymbolicPath Pkg ('Dir Dist)) -> SymbolicPath Pkg ('Dir Dist)
forall a. WithCallStack (Flag a -> a)
fromFlag (BuildFlags -> Flag (SymbolicPath Pkg ('Dir Dist))
buildDistPref BuildFlags
flags)
let dbStack :: [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbStack = LocalBuildInfo -> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
withPackageDB LocalBuildInfo
lbi [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
forall a. [a] -> [a] -> [a]
++ [ SymbolicPath Pkg ('Dir PkgDB)
-> PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
forall fp. fp -> PackageDBX fp
SpecificPackageDB (SymbolicPath Pkg ('Dir PkgDB)
-> PackageDBX (SymbolicPath Pkg ('Dir PkgDB)))
-> SymbolicPath Pkg ('Dir PkgDB)
-> PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
forall a b. (a -> b) -> a -> b
$ SymbolicPath Pkg ('Dir Dist)
distPref SymbolicPath Pkg ('Dir Dist)
-> String -> SymbolicPath Pkg ('Dir PkgDB)
forall p q. CompatSymPath p q => p -> String -> q
</> String
"package.conf.inplace" ]
let dbFlags :: [String]
dbFlags = String
"-hide-all-packages" String -> [String] -> [String]
forall a. a -> [a] -> [a]
: [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
packageDbArgs [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbStack
let envFlags :: [String]
envFlags
| Bool
ghcCanBeToldToIgnorePkgEnvs = [ String
"-package-env=-" ]
| Bool
otherwise = []
PackageDescription
-> LocalBuildInfo
-> (TestSuite -> ComponentLocalBuildInfo -> IO ())
-> IO ()
withTestLBI PackageDescription
pkg LocalBuildInfo
lbi ((TestSuite -> ComponentLocalBuildInfo -> IO ()) -> IO ())
-> (TestSuite -> ComponentLocalBuildInfo -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \TestSuite
suite ComponentLocalBuildInfo
suitecfg -> Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (TestSuite -> UnqualComponentName
testName TestSuite
suite UnqualComponentName -> UnqualComponentName -> Bool
forall a. Eq a => a -> a -> Bool
== String -> UnqualComponentName
forall a. IsString a => String -> a
fromString String
testSuiteName) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$ do
#if MIN_VERSION_Cabal(3,14,0)
let testAutogenDir :: String
testAutogenDir = LocalBuildInfo
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String
forall (allowAbsolute :: AllowAbsolute) (to :: FileOrDir).
LocalBuildInfo -> SymbolicPathX allowAbsolute Pkg to -> String
interpretSymbolicPathLBI LocalBuildInfo
lbi
(SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String)
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String
forall a b. (a -> b) -> a -> b
$ LocalBuildInfo
-> ComponentLocalBuildInfo
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)
autogenComponentModulesDir LocalBuildInfo
lbi ComponentLocalBuildInfo
suitecfg
#elif MIN_VERSION_Cabal(1,25,0)
let testAutogenDir = autogenComponentModulesDir lbi suitecfg
#else
let testAutogenDir = autogenModulesDir lbi
#endif
Verbosity -> Bool -> String -> IO ()
createDirectoryIfMissingVerbose Verbosity
verbosity Bool
True String
testAutogenDir
let buildDoctestsFile :: String
buildDoctestsFile = String
testAutogenDir String -> String -> String
forall p q. CompatSymPath p q => p -> String -> q
</> String
"Build_doctests.hs"
Verbosity -> String -> IO ()
info Verbosity
verbosity (String -> IO ()) -> String -> IO ()
forall a b. (a -> b) -> a -> b
$ String
"cabal-doctest: writing Build_doctests to " String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
buildDoctestsFile
String -> String -> IO ()
writeFile String
buildDoctestsFile (String -> IO ()) -> String -> IO ()
forall a b. (a -> b) -> a -> b
$ [String] -> String
unlines
[ String
"module Build_doctests where"
, String
""
, String
"import Prelude"
, String
""
, String
"data Name = NameLib (Maybe String) | NameExe String deriving (Eq, Show)"
, String
"data Component = Component Name [String] [String] [String] deriving (Eq, Show)"
, String
""
]
componentsRef <- [Component] -> IO (IORef [Component])
forall a. a -> IO (IORef a)
newIORef []
let testBI = TestSuite -> BuildInfo
testBuildInfo TestSuite
suite
let additionalFlags = [String] -> (String -> [String]) -> Maybe String -> [String]
forall b a. b -> (a -> b) -> Maybe a -> b
maybe [] String -> [String]
words
(Maybe String -> [String]) -> Maybe String -> [String]
forall a b. (a -> b) -> a -> b
$ String -> [(String, String)] -> Maybe String
forall a b. Eq a => a -> [(a, b)] -> Maybe b
lookup String
"x-doctest-options"
([(String, String)] -> Maybe String)
-> [(String, String)] -> Maybe String
forall a b. (a -> b) -> a -> b
$ BuildInfo -> [(String, String)]
customFieldsBI BuildInfo
testBI
let additionalModules = [String] -> (String -> [String]) -> Maybe String -> [String]
forall b a. b -> (a -> b) -> Maybe a -> b
maybe [] String -> [String]
words
(Maybe String -> [String]) -> Maybe String -> [String]
forall a b. (a -> b) -> a -> b
$ String -> [(String, String)] -> Maybe String
forall a b. Eq a => a -> [(a, b)] -> Maybe b
lookup String
"x-doctest-modules"
([(String, String)] -> Maybe String)
-> [(String, String)] -> Maybe String
forall a b. (a -> b) -> a -> b
$ BuildInfo -> [(String, String)]
customFieldsBI BuildInfo
testBI
let additionalDirs' = [String] -> (String -> [String]) -> Maybe String -> [String]
forall b a. b -> (a -> b) -> Maybe a -> b
maybe [] String -> [String]
words
(Maybe String -> [String]) -> Maybe String -> [String]
forall a b. (a -> b) -> a -> b
$ String -> [(String, String)] -> Maybe String
forall a b. Eq a => a -> [(a, b)] -> Maybe b
lookup String
"x-doctest-source-dirs"
([(String, String)] -> Maybe String)
-> [(String, String)] -> Maybe String
forall a b. (a -> b) -> a -> b
$ BuildInfo -> [(String, String)]
customFieldsBI BuildInfo
testBI
additionalDirs <- mapM (fmap ("-i" ++) . makeAbsolute) additionalDirs'
let getBuildDoctests PackageDescription
-> LocalBuildInfo -> (t -> ComponentLocalBuildInfo -> IO ()) -> b
withCompLBI t -> Name
mbCompName t -> [ModuleName]
compExposedModules t -> Maybe (RelativePath Source 'File)
compMainIs t -> BuildInfo
compBuildInfo =
PackageDescription
-> LocalBuildInfo -> (t -> ComponentLocalBuildInfo -> IO ()) -> b
withCompLBI PackageDescription
pkg LocalBuildInfo
lbi ((t -> ComponentLocalBuildInfo -> IO ()) -> b)
-> (t -> ComponentLocalBuildInfo -> IO ()) -> b
forall a b. (a -> b) -> a -> b
$ \t
comp ComponentLocalBuildInfo
compCfg -> do
let compBI :: BuildInfo
compBI = t -> BuildInfo
compBuildInfo t
comp
let modules :: [ModuleName]
modules = t -> [ModuleName]
compExposedModules t
comp [ModuleName] -> [ModuleName] -> [ModuleName]
forall a. [a] -> [a] -> [a]
++ BuildInfo -> [ModuleName]
otherModules BuildInfo
compBI
let module_sources :: [ModuleName]
module_sources = [ModuleName]
modules
#if MIN_VERSION_Cabal(3,14,0)
let compAutogenDir :: String
compAutogenDir = LocalBuildInfo
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String
forall (allowAbsolute :: AllowAbsolute) (to :: FileOrDir).
LocalBuildInfo -> SymbolicPathX allowAbsolute Pkg to -> String
interpretSymbolicPathLBI LocalBuildInfo
lbi
(SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String)
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String
forall a b. (a -> b) -> a -> b
$ LocalBuildInfo
-> ComponentLocalBuildInfo
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)
autogenComponentModulesDir LocalBuildInfo
lbi ComponentLocalBuildInfo
compCfg
#elif MIN_VERSION_Cabal(1,25,0)
let compAutogenDir = autogenComponentModulesDir lbi compCfg
#else
let compAutogenDir = autogenModulesDir lbi
#endif
let iArgsSymbolic :: [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
iArgsSymbolic =
String -> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)
forall from (to :: FileOrDir). String -> SymbolicPath from to
makeSymbolicPath String
compAutogenDir
SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)
-> [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
-> [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
forall a. a -> [a] -> [a]
: (SymbolicPath Pkg ('Dir Dist)
distPref SymbolicPath Pkg ('Dir Dist)
-> String -> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)
forall p q. CompatSymPath p q => p -> String -> q
</> String
"build")
#if MIN_VERSION_Cabal(3,14,0)
SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)
-> [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
-> [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
forall a. a -> [a] -> [a]
: BuildInfo -> [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
hsSourceDirs BuildInfo
compBI
#elif MIN_VERSION_Cabal(3,5,0)
: (hsSourceDirs compBI <&> getSymbolicPath)
#else
: hsSourceDirs compBI
#endif
#if MIN_VERSION_Cabal(3,14,0)
pkgWorkdir <- LocalBuildInfo -> IO (AbsolutePath ('Dir Pkg))
absoluteWorkingDirLBI LocalBuildInfo
lbi
let iArgsNoPrefix = [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
iArgsSymbolic [SymbolicPathX 'AllowAbsolute Pkg ('Dir Source)]
-> (SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String)
-> [String]
forall (f :: * -> *) a b. Functor f => f a -> (a -> b) -> f b
<&> AbsolutePath ('Dir Pkg)
-> SymbolicPathX 'AllowAbsolute Pkg ('Dir Source) -> String
forall (allowAbsolute :: AllowAbsolute) (to :: FileOrDir).
AbsolutePath ('Dir Pkg)
-> SymbolicPathX allowAbsolute Pkg to -> String
interpretSymbolicPathAbsolute AbsolutePath ('Dir Pkg)
pkgWorkdir
let includeArgs = BuildInfo -> [SymbolicPath Pkg ('Dir Include)]
includeDirs BuildInfo
compBI [SymbolicPath Pkg ('Dir Include)]
-> (SymbolicPath Pkg ('Dir Include) -> String) -> [String]
forall (f :: * -> *) a b. Functor f => f a -> (a -> b) -> f b
<&> (String
"-I"String -> String -> String
forall a. [a] -> [a] -> [a]
++) (String -> String)
-> (SymbolicPath Pkg ('Dir Include) -> String)
-> SymbolicPath Pkg ('Dir Include)
-> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. AbsolutePath ('Dir Pkg)
-> SymbolicPath Pkg ('Dir Include) -> String
forall (allowAbsolute :: AllowAbsolute) (to :: FileOrDir).
AbsolutePath ('Dir Pkg)
-> SymbolicPathX allowAbsolute Pkg to -> String
interpretSymbolicPathAbsolute AbsolutePath ('Dir Pkg)
pkgWorkdir
#else
iArgsNoPrefix <- mapM makeAbsolute iArgsSymbolic
includeArgs <- mapM (fmap ("-I"++) . makeAbsolute) $ includeDirs compBI
#endif
let iArgs' = (String -> String) -> [String] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map (String
"-i"String -> String -> String
forall a. [a] -> [a] -> [a]
++) [String]
iArgsNoPrefix
iArgs = String
"-i" String -> [String] -> [String]
forall a. a -> [a] -> [a]
: [String]
iArgs'
let extensionArgs = (Extension -> String) -> [Extension] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map ((String
"-X"String -> String -> String
forall a. [a] -> [a] -> [a]
++) (String -> String) -> (Extension -> String) -> Extension -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Extension -> String
forall a. Pretty a => a -> String
display) ([Extension] -> [String]) -> [Extension] -> [String]
forall a b. (a -> b) -> a -> b
$ BuildInfo -> [Extension]
defaultExtensions BuildInfo
compBI
let cppFlags = (String -> String) -> [String] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map (String
"-optP"String -> String -> String
forall a. [a] -> [a] -> [a]
++) ([String] -> [String]) -> [String] -> [String]
forall a b. (a -> b) -> a -> b
$
[ String
"-include", String
compAutogenDir String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
"/cabal_macros.h" ]
[String] -> [String] -> [String]
forall a. [a] -> [a] -> [a]
++ BuildInfo -> [String]
cppOptions BuildInfo
compBI
mainIsPath <- T.traverse (findFileEx verbosity iArgsSymbolic) (compMainIs comp)
let all_sources = (ModuleName -> String) -> [ModuleName] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map ModuleName -> String
forall a. Pretty a => a -> String
display [ModuleName]
module_sources
[String] -> [String] -> [String]
forall a. [a] -> [a] -> [a]
++ [String]
additionalModules
[String] -> [String] -> [String]
forall a. [a] -> [a] -> [a]
++ Maybe String -> [String]
forall a. Maybe a -> [a]
maybeToList (Maybe (SymbolicPathX 'AllowAbsolute Pkg 'File)
mainIsPath Maybe (SymbolicPathX 'AllowAbsolute Pkg 'File)
-> (SymbolicPathX 'AllowAbsolute Pkg 'File -> String)
-> Maybe String
forall (f :: * -> *) a b. Functor f => f a -> (a -> b) -> f b
<&> SymbolicPathX 'AllowAbsolute Pkg 'File -> String
forall (allowAbsolute :: AllowAbsolute) from (to :: FileOrDir).
SymbolicPathX allowAbsolute from to -> String
unsymbolizePath)
let component = Name -> [String] -> [String] -> [String] -> Component
Component
(t -> Name
mbCompName t
comp)
([(UnitId, MungedPackageId)] -> [String]
formatDeps ([(UnitId, MungedPackageId)] -> [String])
-> [(UnitId, MungedPackageId)] -> [String]
forall a b. (a -> b) -> a -> b
$ ComponentLocalBuildInfo
-> ComponentLocalBuildInfo -> [(UnitId, MungedPackageId)]
testDeps ComponentLocalBuildInfo
compCfg ComponentLocalBuildInfo
suitecfg)
([[String]] -> [String]
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat
[ [String]
iArgs
, [String]
additionalDirs
, [String]
includeArgs
, [String]
envFlags
, [String]
dbFlags
, [String]
cppFlags
, [String]
extensionArgs
, [String]
additionalFlags
])
[String]
all_sources
modifyIORef componentsRef (\[Component]
cs -> [Component]
cs [Component] -> [Component] -> [Component]
forall a. [a] -> [a] -> [a]
++ [Component
component])
getBuildDoctests withLibLBI mbLibraryName exposedModules (const Nothing) libBuildInfo
getBuildDoctests withExeLBI (NameExe . executableName) (const []) (Just . modulePath) buildInfo
components <- readIORef componentsRef
F.for_ components $ \(Component Name
cmpName [String]
cmpPkgs [String]
cmpFlags [String]
cmpSources) -> do
let compSuffix :: String
compSuffix = Name -> String
nameToString Name
cmpName
pkgs_comp :: String
pkgs_comp = String
"pkgs" String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
compSuffix
flags_comp :: String
flags_comp = String
"flags" String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
compSuffix
module_sources_comp :: String
module_sources_comp = String
"module_sources" String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
compSuffix
String -> String -> IO ()
appendFile String
buildDoctestsFile (String -> IO ()) -> String -> IO ()
forall a b. (a -> b) -> a -> b
$ [String] -> String
unlines
[
String
pkgs_comp String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
" :: [String]"
, String
pkgs_comp String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
" = " String -> String -> String
forall a. [a] -> [a] -> [a]
++ [String] -> String
forall a. Show a => a -> String
show [String]
cmpPkgs
, String
""
, String
flags_comp String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
" :: [String]"
, String
flags_comp String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
" = " String -> String -> String
forall a. [a] -> [a] -> [a]
++ [String] -> String
forall a. Show a => a -> String
show [String]
cmpFlags
, String
""
, String
module_sources_comp String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
" :: [String]"
, String
module_sources_comp String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
" = " String -> String -> String
forall a. [a] -> [a] -> [a]
++ [String] -> String
forall a. Show a => a -> String
show [String]
cmpSources
, String
""
]
let enabledComponents = [Name] -> (String -> [Name]) -> Maybe String -> [Name]
forall b a. b -> (a -> b) -> Maybe a -> b
maybe [Maybe String -> Name
NameLib Maybe String
forall a. Maybe a
Nothing] ((String -> Maybe Name) -> [String] -> [Name]
forall a b. (a -> Maybe b) -> [a] -> [b]
mapMaybe String -> Maybe Name
parseComponentName ([String] -> [Name]) -> (String -> [String]) -> String -> [Name]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. String -> [String]
words)
(Maybe String -> [Name]) -> Maybe String -> [Name]
forall a b. (a -> b) -> a -> b
$ String -> [(String, String)] -> Maybe String
forall a b. Eq a => a -> [(a, b)] -> Maybe b
lookup String
"x-doctest-components"
([(String, String)] -> Maybe String)
-> [(String, String)] -> Maybe String
forall a b. (a -> b) -> a -> b
$ BuildInfo -> [(String, String)]
customFieldsBI BuildInfo
testBI
let components' =
(Component -> Bool) -> [Component] -> [Component]
forall a. (a -> Bool) -> [a] -> [a]
filter (\(Component Name
n [String]
_ [String]
_ [String]
_) -> Name
n Name -> [Name] -> Bool
forall a. Eq a => a -> [a] -> Bool
forall (t :: * -> *) a. (Foldable t, Eq a) => a -> t a -> Bool
`elem` [Name]
enabledComponents) [Component]
components
appendFile buildDoctestsFile $ unlines
[ "-- " ++ show enabledComponents
, "components :: [Component]"
, "components = " ++ show components'
]
where
parseComponentName :: String -> Maybe Name
parseComponentName :: String -> Maybe Name
parseComponentName String
"lib" = Name -> Maybe Name
forall a. a -> Maybe a
Just (Maybe String -> Name
NameLib Maybe String
forall a. Maybe a
Nothing)
parseComponentName (Char
'l' : Char
'i' : Char
'b' : Char
':' : String
x) = Name -> Maybe Name
forall a. a -> Maybe a
Just (Maybe String -> Name
NameLib (String -> Maybe String
forall a. a -> Maybe a
Just String
x))
parseComponentName (Char
'e' : Char
'x' : Char
'e' : Char
':' : String
x) = Name -> Maybe Name
forall a. a -> Maybe a
Just (String -> Name
NameExe String
x)
parseComponentName String
_ = Maybe Name
forall a. Maybe a
Nothing
isNewCompiler :: Bool
isNewCompiler = case Compiler -> CompilerId
compilerId (Compiler -> CompilerId) -> Compiler -> CompilerId
forall a b. (a -> b) -> a -> b
$ LocalBuildInfo -> Compiler
compiler LocalBuildInfo
lbi of
CompilerId CompilerFlavor
GHC Version
v -> Version
v Version -> Version -> Bool
forall a. Ord a => a -> a -> Bool
>= [Int] -> Version
mkVersion [Int
7,Int
6]
CompilerId
_ -> Bool
False
ghcCanBeToldToIgnorePkgEnvs :: Bool
ghcCanBeToldToIgnorePkgEnvs :: Bool
ghcCanBeToldToIgnorePkgEnvs = case Compiler -> CompilerId
compilerId (Compiler -> CompilerId) -> Compiler -> CompilerId
forall a b. (a -> b) -> a -> b
$ LocalBuildInfo -> Compiler
compiler LocalBuildInfo
lbi of
CompilerId CompilerFlavor
GHC Version
v -> Version
v Version -> Version -> Bool
forall a. Ord a => a -> a -> Bool
>= [Int] -> Version
mkVersion [Int
8,Int
4,Int
4]
CompilerId
_ -> Bool
False
formatDeps :: [(UnitId, MungedPackageId)] -> [String]
formatDeps = ((UnitId, MungedPackageId) -> String)
-> [(UnitId, MungedPackageId)] -> [String]
forall a b. (a -> b) -> [a] -> [b]
map (UnitId, MungedPackageId) -> String
forall {a} {a}. (Pretty a, Pretty a) => (a, a) -> String
formatOne
formatOne :: (a, a) -> String
formatOne (a
installedPkgId, a
pkgId)
| PackageIdentifier -> String
forall a. Pretty a => a -> String
display (PackageDescription -> PackageIdentifier
forall pkg. Package pkg => pkg -> PackageIdentifier
packageId PackageDescription
pkg) String -> String -> Bool
forall a. Eq a => a -> a -> Bool
== a -> String
forall a. Pretty a => a -> String
display a
pkgId = String
"-package=" String -> String -> String
forall a. [a] -> [a] -> [a]
++ a -> String
forall a. Pretty a => a -> String
display a
pkgId
| Bool
otherwise = String
"-package-id=" String -> String -> String
forall a. [a] -> [a] -> [a]
++ a -> String
forall a. Pretty a => a -> String
display a
installedPkgId
packageDbArgs :: [PackageDB] -> [String]
packageDbArgs :: [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
packageDbArgs | Bool
isNewCompiler = [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
packageDbArgsDb
| Bool
otherwise = [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
packageDbArgsConf
packageDbArgsConf :: [PackageDB] -> [String]
packageDbArgsConf :: [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
packageDbArgsConf [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbstack = case [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbstack of
(PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
GlobalPackageDB:PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
UserPackageDB:[PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs) -> (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String])
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String]
forall {allowAbsolute :: AllowAbsolute} {from} {to :: FileOrDir}.
PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
specific [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs
(PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
GlobalPackageDB:[PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs) -> String
"-no-user-package-conf"
String -> [String] -> [String]
forall a. a -> [a] -> [a]
: (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String])
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String]
forall {allowAbsolute :: AllowAbsolute} {from} {to :: FileOrDir}.
PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
specific [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs
[PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
_ -> [String]
forall {b}. b
ierror
where
specific :: PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
specific (SpecificPackageDB SymbolicPathX allowAbsolute from to
db) = [ String
"-package-conf=" String -> String -> String
forall a. [a] -> [a] -> [a]
++ SymbolicPathX allowAbsolute from to -> String
forall (allowAbsolute :: AllowAbsolute) from (to :: FileOrDir).
SymbolicPathX allowAbsolute from to -> String
unsymbolizePath SymbolicPathX allowAbsolute from to
db ]
specific PackageDBX (SymbolicPathX allowAbsolute from to)
_ = [String]
forall {b}. b
ierror
ierror :: b
ierror = String -> b
forall a. HasCallStack => String -> a
error (String -> b) -> String -> b
forall a b. (a -> b) -> a -> b
$ String
"internal error: unexpected package db stack: "
String -> String -> String
forall a. [a] -> [a] -> [a]
++ [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> String
forall a. Show a => a -> String
show [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbstack
packageDbArgsDb :: [PackageDB] -> [String]
packageDbArgsDb :: [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
packageDbArgsDb [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbstack = case [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbstack of
(PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
GlobalPackageDB:PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
UserPackageDB:[PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs)
| (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> Bool)
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> Bool
forall {fp}. PackageDBX fp -> Bool
isSpecific [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs -> (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String])
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String]
forall {allowAbsolute :: AllowAbsolute} {from} {to :: FileOrDir}.
PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
single [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs
(PackageDBX (SymbolicPath Pkg ('Dir PkgDB))
GlobalPackageDB:[PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs)
| (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> Bool)
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
all PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> Bool
forall {fp}. PackageDBX fp -> Bool
isSpecific [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs -> String
"-no-user-package-db"
String -> [String] -> [String]
forall a. a -> [a] -> [a]
: (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String])
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String]
forall {allowAbsolute :: AllowAbsolute} {from} {to :: FileOrDir}.
PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
single [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs
[PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs -> String
"-clear-package-db"
String -> [String] -> [String]
forall a. a -> [a] -> [a]
: (PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String])
-> [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))] -> [String]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap PackageDBX (SymbolicPath Pkg ('Dir PkgDB)) -> [String]
forall {allowAbsolute :: AllowAbsolute} {from} {to :: FileOrDir}.
PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
single [PackageDBX (SymbolicPath Pkg ('Dir PkgDB))]
dbs
where
single :: PackageDBX (SymbolicPathX allowAbsolute from to) -> [String]
single (SpecificPackageDB SymbolicPathX allowAbsolute from to
db) = [ String
"-package-db=" String -> String -> String
forall a. [a] -> [a] -> [a]
++ SymbolicPathX allowAbsolute from to -> String
forall (allowAbsolute :: AllowAbsolute) from (to :: FileOrDir).
SymbolicPathX allowAbsolute from to -> String
unsymbolizePath SymbolicPathX allowAbsolute from to
db ]
single PackageDBX (SymbolicPathX allowAbsolute from to)
GlobalPackageDB = [ String
"-global-package-db" ]
single PackageDBX (SymbolicPathX allowAbsolute from to)
UserPackageDB = [ String
"-user-package-db" ]
isSpecific :: PackageDBX fp -> Bool
isSpecific (SpecificPackageDB fp
_) = Bool
True
isSpecific PackageDBX fp
_ = Bool
False
mbLibraryName :: Library -> Name
#if MIN_VERSION_Cabal(3,0,0)
mbLibraryName :: Library -> Name
mbLibraryName = Maybe String -> Name
NameLib (Maybe String -> Name)
-> (Library -> Maybe String) -> Library -> Name
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (UnqualComponentName -> String)
-> Maybe UnqualComponentName -> Maybe String
forall a b. (a -> b) -> Maybe a -> Maybe b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap UnqualComponentName -> String
unUnqualComponentName (Maybe UnqualComponentName -> Maybe String)
-> (Library -> Maybe UnqualComponentName)
-> Library
-> Maybe String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. LibraryName -> Maybe UnqualComponentName
libraryNameString (LibraryName -> Maybe UnqualComponentName)
-> (Library -> LibraryName) -> Library -> Maybe UnqualComponentName
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Library -> LibraryName
libName
#elif MIN_VERSION_Cabal(2,0,0)
mbLibraryName = NameLib . fmap unUnqualComponentName . libName
#else
mbLibraryName _ = NameLib Nothing
#endif
executableName :: Executable -> String
#if MIN_VERSION_Cabal(2,0,0)
executableName :: Executable -> String
executableName = UnqualComponentName -> String
unUnqualComponentName (UnqualComponentName -> String)
-> (Executable -> UnqualComponentName) -> Executable -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Executable -> UnqualComponentName
exeName
#else
executableName = exeName
#endif
testDeps :: ComponentLocalBuildInfo -> ComponentLocalBuildInfo
#if MIN_VERSION_Cabal(2,0,0)
-> [(UnitId, MungedPackageId)]
#else
-> [(UnitId, PackageId)]
#endif
testDeps :: ComponentLocalBuildInfo
-> ComponentLocalBuildInfo -> [(UnitId, MungedPackageId)]
testDeps ComponentLocalBuildInfo
xs ComponentLocalBuildInfo
ys = [(UnitId, MungedPackageId)] -> [(UnitId, MungedPackageId)]
forall a. Eq a => [a] -> [a]
nub ([(UnitId, MungedPackageId)] -> [(UnitId, MungedPackageId)])
-> [(UnitId, MungedPackageId)] -> [(UnitId, MungedPackageId)]
forall a b. (a -> b) -> a -> b
$ ComponentLocalBuildInfo -> [(UnitId, MungedPackageId)]
componentPackageDeps ComponentLocalBuildInfo
xs [(UnitId, MungedPackageId)]
-> [(UnitId, MungedPackageId)] -> [(UnitId, MungedPackageId)]
forall a. [a] -> [a] -> [a]
++ ComponentLocalBuildInfo -> [(UnitId, MungedPackageId)]
componentPackageDeps ComponentLocalBuildInfo
ys
amendGPD
:: String
-> GenericPackageDescription
-> GenericPackageDescription
#if !(MIN_VERSION_Cabal(2,0,0))
amendGPD _ gpd = gpd
#else
amendGPD :: String -> GenericPackageDescription -> GenericPackageDescription
amendGPD String
testSuiteName GenericPackageDescription
gpd = GenericPackageDescription
gpd
{ condTestSuites = map f (condTestSuites gpd)
}
where
f :: (a, CondTree v c TestSuite) -> (a, CondTree v c TestSuite)
f (a
name, CondTree v c TestSuite
condTree)
| a
name a -> a -> Bool
forall a. Eq a => a -> a -> Bool
== String -> a
forall a. IsString a => String -> a
fromString String
testSuiteName = (a
name, CondTree v c TestSuite
condTree')
| Bool
otherwise = (a
name, CondTree v c TestSuite
condTree)
where
testSuite :: TestSuite
testSuite = CondTree v c TestSuite -> TestSuite
forall v c a. CondTree v c a -> a
condTreeData CondTree v c TestSuite
condTree
bi :: BuildInfo
bi = TestSuite -> BuildInfo
testBuildInfo TestSuite
testSuite
om :: [ModuleName]
om = BuildInfo -> [ModuleName]
otherModules BuildInfo
bi
am :: [ModuleName]
am = BuildInfo -> [ModuleName]
autogenModules BuildInfo
bi
om' :: [ModuleName]
om' = [ModuleName] -> [ModuleName]
forall a. Eq a => [a] -> [a]
nub ([ModuleName] -> [ModuleName]) -> [ModuleName] -> [ModuleName]
forall a b. (a -> b) -> a -> b
$ ModuleName
mn ModuleName -> [ModuleName] -> [ModuleName]
forall a. a -> [a] -> [a]
: [ModuleName]
om
am' :: [ModuleName]
am' = [ModuleName] -> [ModuleName]
forall a. Eq a => [a] -> [a]
nub ([ModuleName] -> [ModuleName]) -> [ModuleName] -> [ModuleName]
forall a b. (a -> b) -> a -> b
$ ModuleName
mn ModuleName -> [ModuleName] -> [ModuleName]
forall a. a -> [a] -> [a]
: [ModuleName]
am
mn :: ModuleName
mn = String -> ModuleName
forall a. IsString a => String -> a
fromString String
"Build_doctests"
bi' :: BuildInfo
bi' = BuildInfo
bi { otherModules = om', autogenModules = am' }
testSuite' :: TestSuite
testSuite' = TestSuite
testSuite { testBuildInfo = bi' }
condTree' :: CondTree v c TestSuite
condTree' = CondTree v c TestSuite
condTree { condTreeData = testSuite' }
#endif