1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# This directory is ingrained in rbenv, and is allowed by FHS 3.0 section 4.7:
#
# https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s07.html
# > Some previous versions of this document did not support /usr/libexec,
# > despite it being standard practice in a number of environments. To
# > accomodate this restriction, it became common practice to use /usr/lib
# > instead. Either practice is now acceptable, but each application must
# > choose one way or the other to organize itself.
ruby-build: executable-in-usr-lib usr/lib/rbenv/libexec/rbenv-install
ruby-build: executable-in-usr-lib usr/lib/rbenv/libexec/rbenv-uninstall
# There is an executable, however it is accessed through `rbenv uninstall`
# rather than `rbenv-uninstall`.
ruby-build: manpage-without-executable usr/share/man/man1/rbenv-install.1.gz
ruby-build: manpage-without-executable usr/share/man/man1/rbenv-uninstall.1.gz
# This is a development tool for Ruby that happens to be named ruby-*, not a
# regular Ruby package.
ruby-build: wrong-section-according-to-package-name ruby-build => ruby
|