I'm trying to build a .deb from a python package. In order to do so I have to configure a control
file. The control file contains a line where you can define dependencies for your package, e.g:
Depends: python-appindicator, python3-yaml (>=3.11), ${misc:Depends}, ${python3:Depends}
The dependency definition for python3-yaml
is easy to understand, but what do ${misc:Depends}
and ${python3:Depends}
stand for?