CurryInfo: cpm-3.3.0 / CPM.Diff.Behavior.preparePackages

definition:
preparePackages :: Config
                -> Repository
                -> GC.GlobalCache
                -> String
                -> Version
                -> String
                -> Version
                -> ErrorLogger ComparisonInfo
preparePackages cfg repo gc nameA verA nameB verB =
  GC.tryFindPackage gc nameA verA >>= \pkgA ->
  findPackageDir cfg pkgA >>= \dirA ->
  GC.tryFindPackage gc nameB verB >>= \pkgB ->
  findPackageDir cfg pkgB >>= \dirB ->
  preparePackageDirs cfg repo gc dirA dirB
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Prepares two packages from the global package cache in two versions for
--- comparison by copying them to the temporary directory and building renamed
--- versions.
---
--- @param cfg the CPM configuration
--- @param repo the package repository
--- @param gc the global package cache
--- @param nameA the name of the first package
--- @param verA the version of the first package
--- @param nameB the name of the second package
--- @param verB the version of the second package
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,_,_,_,_) |-> _}
name:
preparePackages
precedence:
no precedence defined
result-values:
_
signature:
CPM.Config.Config -> CPM.Repository.Repository
-> CPM.PackageCache.Global.GlobalCache -> String
-> (Prelude.Int, Prelude.Int, Prelude.Int, Prelude.Maybe String) -> String
-> (Prelude.Int, Prelude.Int, Prelude.Int, Prelude.Maybe String)
-> CPM.ErrorLogger.ErrorLogger ComparisonInfo
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term