definition:
|
readRepositoryFrom :: String -> ErrorLogger Repository
readRepositoryFrom path = do
(repo, repoErrors) <- tryReadRepositoryFrom path
if null repoErrors
then return repo
else do logError "Problems while reading the package index:"
mapM_ logError repoErrors
liftIOEL $ exitWith 1
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads all package specifications from a repository.
--- If some errors occur, show them and terminate with error exit status.
---
--- @param path the location of the repository
--- @return repository
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
readRepositoryFrom
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> CPM.ErrorLogger.ErrorLogger Repository
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|