Não obtendo libglib2.0-dev (bibliotecas atualizadas) mesmo após a atualização do Ubuntu 14.04 para 16.06

1

Eu queria compilar e instalar o something-for-reddit do git.

Como eu fui com ./configure.ac, ele mostrou abaixo o erro.

./configure: line 5088: GLIB_GSETTINGS: command not found
./configure: line 5089: syntax error near unexpected token '1.42.0'
./configure: line 5089: 'GOBJECT_INTROSPECTION_CHECK(1.42.0)'

Como eu pesquisei aqui no stackoverflow, ele me mostrou que o GLIB_GSETTINGS é encontrado no libglib2.0-dev mas como tentei instalá-lo por meio de

sudo apt-get install libglib2.0

Mais uma vez, ocorreu um erro abaixo

    Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'libglib2.0-0-refdbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-tests' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-bin' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-doc' for regex 'libglib2.0'
Note, selecting 'libglib2.0-data' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0' for regex 'libglib2.0'
libglib2.0-0 is already the newest version (2.48.1-1~ubuntu16.04.1).
libglib2.0-data is already the newest version (2.48.1-1~ubuntu16.04.1).
libglib2.0-bin is already the newest version (2.48.1-1~ubuntu16.04.1).
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libglib2.0-0-dbg : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
 libglib2.0-0-refdbg : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
 libglib2.0-dev : Depends: libglib2.0-0 (= 2.48.0-1ubuntu4) but 2.48.1-1~ubuntu16.04.1 is to be installed
                  Depends: libglib2.0-bin (= 2.48.0-1ubuntu4)

Eu atualizei o sistema de 14.04 para 16.04 um mês atrás, eu perdi alguma coisa ou estou fazendo algo errado agora?

O algo para o reddit git source está aqui. link Você pode verificar todas as dependências aqui também, Detalhes do Pacote: something-for-reddit-git 0.1-1

    
por Humayun Al Rasheid 01.11.2016 / 12:01

1 resposta

0

A resposta está em downgrade.

À medida que eu procurava novamente no stackoverflow, descobri que os mesmos problemas são enfrentados por outros e eles foram sugeridos para fazer o downgrade da respectiva biblioteca com os seguintes comandos.

sudo apt-get install libglib2.0-0=2.48.0-1ubuntu4

sudo apt-get install libglib2.0-dev

Agora estou com a próxima edição, ou seja, ./configure: line 5089 : GOBJECT_INTROSPECTION_CHECK(1.42.0) '

Aqui está o link sugerindo o downgrade: link

Espero que ajude os outros também:)

    
por 03.11.2016 / 02:49