Conflitos de dependência de PostGIS (ubuntu 14)

3

Eu perguntei este no SO, mas agora estou pensando no problema é principalmente o gerenciamento de pacotes e pertence aqui.

Após todos os detalhes que podem ser encontrados no post original, eu tentei (sudo eliminado como redundante):

$ apt list | grep gdal | grep installed
gdal-bin/trusty,now 1.11.0+dfsg-1~exp2~trusty1 amd64 [installed]
libgdal1h/trusty,now 1.11.0+dfsg-1~exp2~trusty1 amd64 [installed,automatic]
$ apt-get purge gdal-bin
$ apt-get purge libdal1h
$ add-apt-repository ppa:ubuntugis/ppa
$ apt-get update
W: Failed to fetch http://ppa.launchpad.net/ubuntugis/ppa/ubuntu/dists/trusty/main/binary-amd64/Packages  404  Not Found

W: Failed to fetch http://ppa.launchpad.net/ubuntugis/ppa/ubuntu/dists/trusty/main/binary-i386/Packages  404  Not Found

É claro que algo está mal configurado ... não sei o que verificar do meu lado ...

então

$ fab vagrant.Provision # see the original question above for what this is doing at the linux level

Isso ainda é exatamente o mesmo problema de dependência libdal1 v. libgdal1h :

[localhost] sudo: DEBIAN_FRONTEND=noninteractive apt-get install --quiet --assume-yes postgresql-9.3-postgis-2.1
[localhost] out: {...}
[localhost] out: Some packages could not be installed. This may mean that you have
[localhost] out: requested an impossible situation or if you are using the unstable
[localhost] out: distribution that some required packages have not yet been created
[localhost] out: or been moved out of Incoming.
[localhost] out: The following information may help to resolve the situation:
[localhost] out: 
[localhost] out: The following packages have unmet dependencies:
[localhost] out:  postgresql-9.3-postgis-2.1 : Depends: libgdal1 (>= 1.9.0) but it is not going to be installed
[localhost] out:                               Recommends: postgis but it is not going to be installed
[localhost] out: E: Unable to correct problems, you have held broken packages.

mais informações:

vagrant@ubuntu-14:~$ apt-cache policy postgresql-9.3-postgis-2.1
postgresql-9.3-postgis-2.1:
  Installed: (none)
  Candidate: 2.1.3+dfsg-3.pgdg12.4+2
  Version table:
     2.1.3+dfsg-3.pgdg12.4+2 0
        500 http://apt.postgresql.org/pub/repos/apt/ precise-pgdg/main amd64 Packages
     2.1.2+dfsg-2 0
        500 http://us.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
    
por Ben 30.06.2014 / 19:38

2 respostas

2

O problema, como o @aoutcot895 me levou a descobrir, foi um conflito entre as recompras. Os detalhes não eram visíveis nas perguntas que eu fiz, porque eu não tinha me aprofundado o suficiente no script Fabric que estava configurando a caixa virtual do Ubuntu em questão. No evento, o script estava usando a versão "Precise" mais antiga para o postgres, mas o postgis estava procurando o mais novo "Trusty". Alterar a instalação do postgres (e o restante do provisionamento) para a versão mais recente resolveu o problema.

    
por Ben 07.07.2014 / 18:58
1

Eu obtive com sucesso (sem nenhuma dependência quebrada) postgresql-9.1-postgis-2.0 em vez de postgresql-9.1-postgis . E o banco de dados está funcionando bem.

    
por lechup 05.08.2014 / 14:40