Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why are cabal reinstalls "always dangerous"?

Tags:

When reinstalling a package using Cabal, one usually sees this warning:

Warning: Note that reinstalls are always dangerous. Continuing anyway...

What are some of the reasons behind this message?

like image 527
pravnar Avatar asked Oct 30 '13 19:10

pravnar


1 Answers

Currently, reinstalling a package means destructively overwriting an already installed package. If that old package has any reverse dependencies on the system, they'll no longer work.

To make this less likely, cabal-install checks the package databases it has access to when invoked for such reverse dependencies and lists them. In this situation, it requires --force-reinstalls to continue. But even if none reverse dependencies can be found, it does not mean there are none. It's possible there are additional package databases elsewhere on the system (for example, multiple user databases), or project directories that have been configured against the old version of the package that is to be overwritten. There's no way for cabal-install to be completely sure, that's why it warns that reinstalls are always dangerous.

like image 89
kosmikus Avatar answered Sep 28 '22 16:09

kosmikus