I created own debian packages with dependencies.
Package A:
Version 1.0 depends on Package B = 1.2
Version 1.1 depends on Package B = 1.2
Package B: Version: 1.0, 1.1, 1.2, 1.3
If I'm trying to install Package A with:
sudo apt-get install -f <PACKAGE A> #So the version 1.1 with B = 1.2 is picked
the following 'error-message' has been output:
Die folgenden Pakete haben unerfüllte Abhängigkeiten:
<PACKAGE A> : Hängt ab von: <PACKAGE B> (= 1.2) aber 1.3 soll installiert werden
I understand the error-message, but is there a way to bypass it? To allow to install a 'outdated' dependency?
apt-cache depends <PACKAGE>
but there is the version missing – Daniel Eisenreich Jun 17 '16 at 12:34