Announcement

Collapse
No announcement yet.

<solved>can't install kdelibs5-dev due to size mismatch

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    <solved>can't install kdelibs5-dev due to size mismatch

    Hello,

    I upgraded to KDE 4.2 yesterday, which worked quiet good (on a Kubuntu 8.10 system using the PPA repository).
    To compile Digikam I need to install kdelibs5-dev, but

    Code:
    apt-get install kdelibs5-dev
    aborts with the error message

    Code:
    Failed to fetch [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcrecpp0_7.8-2ubuntu1~intrepid1~ppa1_i386.deb&#160;[/url] Size mismatch
    Failed to fetch [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcre3-dev_7.8-2ubuntu1~intrepid1~ppa1_i386.deb&#160;[/url] Size mismatch
    Anyone has any idea how I can fix this?

    Thanks, Malte.

    #2
    Re: can't install kdelibs5-dev due to size mismatch

    There is a workaround.
    Download directly both files with wget :
    Code:
    wget [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcrecpp0_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
    wget [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcre3-dev_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
    and install them directly with dpkg :
    Code:
    dpkg -i [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcrecpp0_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
    dpkg -i [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcre3-dev_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
    You can then go on with apt-get install kde-devel.

    Comment


      #3
      Re: can't install kdelibs5-dev due to size mismatch

      Do you have the kubuntu-members-kde4 PPA enabled? If so, when you disable it and after running
      Code:
      sudo apt-get update
      does that fix the issue?

      Comment


        #4
        Re: can't install kdelibs5-dev due to size mismatch

        Ok, that worked.

        Thanks a lot!!

        Malte.

        Originally posted by komuta
        There is a workaround.
        Download directly both files with wget :
        Code:
        wget [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcrecpp0_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
        wget [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcre3-dev_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
        and install them directly with dpkg :
        Code:
        dpkg -i [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcrecpp0_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
        dpkg -i [url]http://ppa.launchpad.net/kubuntu-experimental/ubuntu/pool/main/p/pcre3/libpcre3-dev_7.8-2ubuntu1~intrepid1~ppa1_i386.deb[/url]
        You can then go on with apt-get install kde-devel.

        Comment

        Working...
        X