Por que esta dependência OR não está funcionando como eu esperava?

1

Eu tentei remover python2.6 do meu sistema Debian:

$ sudo apt-get purge python2.6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  fabric* python-nose* python-pip* python2.6*
0 upgraded, 0 newly installed, 4 to remove and 0 not upgraded.
After this operation, 11.0 MB disk space will be freed.
Do you want to continue [Y/n]? n
Abort.

Não esperei que fabric fosse removido porque tem uma dependência OR em python2.6 e python2.7 (e Eu tenho o último instalado):

$ apt-cache show fabric | grep Depends
Depends: python2.7 | python2.6, python (>= 2.6.6-7~), python (<< 2.8), python-paramiko (>= 1.6), python-pkg-resources, python-nose
    
por Tshepang 20.09.2012 / 13:35

1 resposta

4

Verificando as dependências reversas nos outros pacotes revela a causa:

$ apt-cache show python-nose | grep Depends
Depends: python-pkg-resources, python2.7, python (>= 2.6.6-7~), python (<< 2.8), python2.6

Já existe um bug relatado sobre o problema.

    
por 20.09.2012 / 13:35

Tags