You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The situation occurs on Debian Bullseye (where tarantool-2.6 is in the
base repositories), when we enable our repository for tarantool-1.10.
The installer.sh script pins tarantool package from our repository. But
we should pin tarantool-dev package too, otherwise apt-get will unable
to install it:
| $ apt-get install -y tarantool-dev
| <...>
| The following packages have unmet dependencies:
| tarantool-dev : Depends: tarantool (= 2.6.0-1) but
| 1.10.11.0.gf0b0e7ecf-1 is to be installed
| E: Unable to correct problems, you have held broken pack
We should also pin tarantool-common, otherwise apt-get will install
incorrect version of the package:
| $ apt-get install -y tarantool
| <...>
| $ dpkg -l | grep tarantool
| ii tarantool 1.10.11.0.gf0b0e7ecf-1 amd64 <...>
| ii tarantool-common 2.6.0-1 all <...>
| ii tarantool-dev 1.10.11.0.gf0b0e7ecf-1 amd64 <...>
`tarantoolctl rocks` will not work with those tarantool and
tarantool-common versions, see
tarantool/tarantool#5429.
Fixes#10
0 commit comments