손상된 패키지 보유 - 이전 버전에 따라 다르지만 최신 버전을 설치해야 함

손상된 패키지 보유 - 이전 버전에 따라 다르지만 최신 버전을 설치해야 함

Ubuntu 18.04.4 LTS를 사용하고 있으며 libgpgme-dev. 다음은 명령과 출력입니다.

$ sudo apt install libgpgme-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
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:
 libgpgme-dev : Depends: libgpgme11 (= 1.10.0-1ubuntu1) but 1.10.0-1ubuntu2 is to be installed
E: Unable to correct problems, you have held broken packages.

종속성이 libgpgme11설치되어 있지만 버전은 이지만 1.10.0-1ubuntu2원하는 패키지에는 가 필요합니다 1.10.0-1ubuntu1.

$ dpkg --list | grep libgpgme11
ii  libgpgme11:amd64  1.10.0-1ubuntu2  amd64  GPGME - GnuPG Made Easy (library)

libgpgme-dev현재 상태에서 어떻게 설치하나요 ?

의 설치된 역방향 종속성을 검색했는데 libgpgme11이것이 내가 찾은 것입니다.

$ apt-cache rdepends --installed libgpgme11
libgpgme11
Reverse Depends:
  libgpgmepp6
  fwupd
  seahorse
  libvolume-key1
  libgpgmepp6
  fwupd
  libgmime-3.0-0

apt-cache policy관련 패키지 의 출력은 다음과 같습니다 .

$ apt-cache policy libgpgme11 libgpgme-dev
libgpgme11:
  Installed: 1.10.0-1ubuntu2
  Candidate: 1.10.0-1ubuntu2
  Version table:
 *** 1.10.0-1ubuntu2 100
        100 /var/lib/dpkg/status
     1.10.0-1ubuntu1 500
        500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
libgpgme-dev:
  Installed: (none)
  Candidate: 1.10.0-1ubuntu1
  Version table:
     1.10.0-1ubuntu1 500
        500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages

관련 정보