In a debian/control file, how do I specify a dependency on a package between 2 versions of that package?
For example: python 2.5 or higher but lower than python 2.7.
Depends: python ($VERSION_STRING)
What would $VERSION_STRING be?
|
In a For example: python 2.5 or higher but lower than python 2.7.
What would |
||||
|
|
|
The operators for version dependencies are:
(note So in order to declare your example, you'd add two dependencies:
For a full description of dependency declarations, see the Debian Policy Manual, Chapter 7. If you want to take a look at some uses, see this random example. |
|||
|
|
|
You can use two clauses to specify the constraints. The first states a dependency on python 2.5 or greater, and the second states a dependency on python earlier than 2.7.
|
|||
|
|