dev-util/gdbus-codegen-2.32.4 PYTHON_TARGETS="-python2_5 -python2_6 python2_7 -python3_1 python3_2" $ qlist dev-util/gdbus-codegen-2.32.4 | grep py[co] /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/codegen_main.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/__init__.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/dbustypes.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/utils.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/parser.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/codegen.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/codegen_docbook.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/config.cpython-32.pyo /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/codegen_main.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/__init__.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/dbustypes.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/utils.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/parser.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/codegen.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/codegen_docbook.cpython-32.pyc /usr/lib64/python3.2/site-packages/gdbus_codegen/__pycache__/config.cpython-32.pyc /usr/lib64/python2.7/site-packages/gdbus_codegen/codegen_main.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/__init__.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/dbustypes.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/utils.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/parser.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/codegen.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/codegen_docbook.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/config.pyo /usr/lib64/python2.7/site-packages/gdbus_codegen/codegen_main.pyc /usr/lib64/python2.7/site-packages/gdbus_codegen/__init__.pyc /usr/lib64/python2.7/site-packages/gdbus_codegen/dbustypes.pyc /usr/lib64/python2.7/site-packages/gdbus_codegen/utils.pyc /usr/lib64/python2.7/site-packages/gdbus_codegen/parser.pyc
That's because it uses python-distutils-ng.eclass.
(In reply to comment #1) > That's because it uses python-distutils-ng.eclass. And that behavior is normal? I mean, if it's not a bug in eclass :-/
(In reply to comment #2) > (In reply to comment #1) > > That's because it uses python-distutils-ng.eclass. > > And that behavior is normal? I mean, if it's not a bug in eclass :-/ No. It's the expected behavior in the new eclass. python-distutils-ng.eclass installs .pyo/.pyc files in src_install(), so they are listed as owned by the package in VDB. python.eclass and distutils.eclass install .pyo/.pyc files in pkg_postinst(), so they are not owned by any package in VDB, but the package is responsible for deleting them in its pkg_postrm() phase when it gets uninstalled.