# eselect python set python3.6 Couldn't find a man page for python3.6; skipping. # eselect python set python2.7 Couldn't find a man page for python2.7; skipping. # eselect python cleanup anup Couldn't find a man page for python2.7; skipping. # eselect python cleanup Couldn't find a man page for python2.7; skipping. I do not have man pages, I think eselect should not care about man pages
same here, I've built the dev-lang/python with FEATURES="noman nodoc noinfo"
v20151117 def worked, but i wonder if that was by accident Patrick almost fixed this with his cleanup: https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=e1e4f5df30ab46a3787f4cdfb4a6092c2a3544d2 but it needs a `mkdir -p` to really fix it. --- a/python.eselect.in +++ b/python.eselect.in @@ -114,6 +114,7 @@ set_man_symlink() { local target=${1} rm -f "${MAN_PATH}"/python.1{,.{gz,bz2,lzma,xz,lz,zst{,d}}} || die + mkdir -p "${MAN_PATH}" || die echo ".so ${target}.1" > "${MAN_PATH}"/python.1 || die }