Posts Tagged ‘Depends’
Specifying Debian dependency between two versions & apt-get installing .deb files
These informations are probably of most interest to package maintainers: Dependency on specific package versions Here is how to specify a python3 dependency between version 3.5 (equals to or later), and 3.6 (must be earlier) in debian/control: Depends: python3 (>= 3.5), python3 (<< 3.6) So you basically specify two dependencies. Note, this will not work…
Weiterlesen