CurryInfo: cpm-3.3.0 / CPM.Diff.Rename.prefixPackageAndDeps

definition:
prefixPackageAndDeps :: Config -> Repository -> GC.GlobalCache -> String
                     -> String -> String -> ErrorLogger [(String, String)]
prefixPackageAndDeps cfg repo gc dir prefix destDir = do
  deps <- resolveAndCopyDependencies cfg repo gc dir
  depMods <- liftIOEL $ (mapM
               (findAllModulesInPackage . RuntimeCache.cacheDirectory dir) deps)
  ownMods <- liftIOEL $ findAllModulesInPackage dir
  let allMods = ownMods ++ concat depMods
  let modMap = zip (map fst allMods) (map ((prefix ++) . fst) allMods)
  mapM (copyMod dir deps destDir modMap) allMods
  return modMap
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Prefix all modules in a package and all modules in all of its transitive
--- dependencies with a string.
---
--- @param cfg - the CPM configuration
--- @param repo - the central package index
--- @param gc - the global package cache
--- @param dir - the directory of the package
--- @param prefix - the prefix for all module names
--- @param destDir - the destination directory for the modified modules
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,_,_,_) |-> _}
name:
prefixPackageAndDeps
precedence:
no precedence defined
result-values:
_
signature:
CPM.Config.Config -> CPM.Repository.Repository
-> CPM.PackageCache.Global.GlobalCache -> String -> String -> String
-> CPM.ErrorLogger.ErrorLogger [(String, String)]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term