Haskell Cabal regenerate documentation for all installed packages

此生再无相见时 提交于 2019-12-14 00:46:12

问题


How can I generate and install documentation for all locally installed cabal packages? I turned on the documentation flag in ~/.cabal/config which means that all newly installed packages will have documentation also generated. But how to generate documentation for all already installed packages?

Is there a way to automatically cabal install --reinstall all already installed packages? And more importantly, is that a good idea?


回答1:


If you have a recent-ish version of cabal-install (>= 0.10, I think), you can try doing

$ cabal install --reinstall --upgrade-dependencies world

Unfortunately, it didn't work in my case:

$ cabal install --dry-run --reinstall world
Resolving dependencies...
cabal: cannot configure Agda-2.2.10. It requires haskell-src-exts >=1.9.6 &&
<1.10
For the dependency on haskell-src-exts >=1.9.6 && <1.10 there are these
packages: haskell-src-exts-1.9.6. However none of them are available.
haskell-src-exts-1.9.6 was excluded because haskell-src-exts-1.11.1 was
selected instead
haskell-src-exts-1.9.6 was excluded because hlint-1.8.12 requires
haskell-src-exts ==1.11.*

If you bump into an error like this, you can try manually editing the ~/.cabal/world file.




回答2:


Please note that cabal install --only-dep --reinstall does not work.

If you are using a sandbox, you can do

cabal sandbox delete
cabal sandbox init
cabal install -j --only-dep --enable-documentation

The -j option allows it to build in parallel.




回答3:


You could try something like this in bash.

for pkg in `ghc-pkg list --simple`
do
cabal install $pkg --reinstall
done

But I really don't know, whether it's a good idea.



来源:https://stackoverflow.com/questions/6563769/haskell-cabal-regenerate-documentation-for-all-installed-packages

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!