Announcement

Collapse
No announcement yet.

Today's KDE 4.2 update breaks plasmoids

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

    Today's KDE 4.2 update breaks plasmoids

    I've just restarted X after installing today's updates and many plasmoids are now broken. The update removed some plasmoids and installed an updated set. Anyone know what is going on and how to restore working plasmoids?

    #2
    Re: Today's KDE 4.2 update breaks plasmoids

    Me too!
    Conflict is sleep. Peace is awakening.

    Comment


      #3
      Re: Today's KDE 4.2 update breaks plasmoids

      Same here. "Show Desktop" fails with a "Could not find requested component: showdesktop" message and "Show Widget Dashboard" complains about the showdashboard component.

      Comment


        #4
        Re: Today's KDE 4.2 update breaks plasmoids

        This is due to some broken dependencies.

        For me, the kdeplasma-addons package didn't got already updated to 4.2.1.

        It's the same for kmail, so kdepim also stays on 4.2.0 on my machine.

        Maybe after some time all the packages will get updated correctly. (well, I hope it... )

        Comment


          #5
          Re: Today's KDE 4.2 update breaks plasmoids

          My kdeplasma is already updated to 4.2.1. Even reinstalling the new package (4:4.2.1-0ubuntu1) it didn't work (the plasmonoid to show the desktop still fails to work). Seems a broken package:

          Code:
          root@daniel-casa:~# apt-get --reinstall install kdeplasma-addons-data
          Reading package lists... Done
          Building dependency tree
          Reading state information... Done
          0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
          Need to get 0B/3956kB of archives.
          After this operation, 0B of additional disk space will be used.
          Do you want to continue [Y/n]? Y
          (Reading database ... 115225 files and directories currently installed.)
          Preparing to replace kdeplasma-addons-data 4:4.2.1-0ubuntu1 (using .../kdeplasma-addons-data_4%3a4.2.1-0ubuntu1_all.deb) ...
          Unpacking replacement kdeplasma-addons-data ...
          Processing triggers for shared-mime-info ...
          
          Setting up kdeplasma-addons-data (4:4.2.1-0ubuntu1) ...
          And trying to reinstalling the whole kdeplasma didn't work too:
          Code:
          root@daniel-casa:~# apt-get --reinstall install kdeplasma-addons
          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:
           kdeplasma-addons: Depends: kdeplasma-addons-data (= 4:4.2.0-0ubuntu3) but 4:4.2.1-0ubuntu1 is to be installed
          E: Broken packages

          Comment


            #6
            Re: Today's KDE 4.2 update breaks plasmoids

            that still seems to lack the amd64 version of the package (http://ppa.launchpad.net/kubuntu-exp...plasma-addons/).

            My workaround:

            - enable the ppa src (add in /etc/apt/sources.list: deb-src http://ppa.launchpad.net/kubuntu-experimental/ubuntu intrepid main)

            $ sudo apt-get source kdeplasma-addons //download kdeplasma-addons_4.2.1 sources
            $ sudo apt-get build-dep kdeplasma-addons
            $ cd kdeplasma-addons-4.2.1
            $ sudo debuild -us -uc

            If all is fine, the packages are in:

            $ cd ../
            $ ls *.deb
            kdeplasma-addons_4.2.1-0ubuntu1~intrepid1_amd64.deb kdeplasma-addons-dbg_4.2.1-0ubuntu1~intrepid1_amd64.deb
            kdeplasma-addons-data_4.2.1-0ubuntu1~intrepid1_all.deb

            Finally to install the packages:

            $ sudo dpkg -i kdeplasma-addons_4.2.1-0ubuntu1~intrepid1_amd64.deb kdeplasma-addons-data_4.2.1-0ubuntu1~intrepid1_all.deb

            and voila' now my plasmoids are come back!

            Comment


              #7
              Re: Today's KDE 4.2 update breaks plasmoids

              OK,

              does somebody has an idea of when they will submit the amd64 versions of the packages?
              And why are those versions later online than the other ones, so that this creates erroneous package dependencies because some parts are already in amd64, while others are not.

              Comment


                #8
                Re: Today's KDE 4.2 update breaks plasmoids

                Thanks! I completely missed that kdeplasma-addons didn't upgrade properly. Compiled from source and now I can access my desktop again.

                Comment


                  #9
                  Re: Today's KDE 4.2 update breaks plasmoids

                  Originally posted by joethefox
                  and voila' now my plasmoids are come back!
                  Thanks Joe!

                  BTW for some reason I did not have 'debuild' installed nor in my repos so I got round this using:
                  sudo dpkg-buildpackage -rfakeroot

                  PS. To get 'debuild' use:
                  sudo apt-get install devscripts

                  Comment


                    #10
                    Re: Today's KDE 4.2 update breaks plasmoids

                    Following the above ...

                    when I run;
                    sudo apt-get build-dep kdeplasma-addons

                    I get;
                    E: Build-dependencies for kdeplasma-addons could not be satisfied.

                    Can anyone tell me what I should do ...

                    Thanks.

                    Conflict is sleep. Peace is awakening.

                    Comment


                      #11
                      Re: Today's KDE 4.2 update breaks plasmoids

                      Avocado... forgive me for suggesting but it might be worth trying to update repos after updating sources list i.e.
                      sudo apt-get update

                      Comment


                        #12
                        Re: Today's KDE 4.2 update breaks plasmoids

                        esdaniel.

                        Hey ... thanks for helping ... sounds like I didn't do the obvious thing, which is not surprising being as how I am one degree this side of clueless.

                        Anyway ...

                        running;
                        sudo apt-get update

                        returns;
                        Reading package lists... Done
                        W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 60487016493B3065
                        W: You may want to run apt-get update to correct these problems
                        Conflict is sleep. Peace is awakening.

                        Comment


                          #13
                          Re: Today's KDE 4.2 update breaks plasmoids

                          Originally posted by joethefox
                          that still seems to lack the amd64 version of the package (http://ppa.launchpad.net/kubuntu-exp...plasma-addons/).

                          My workaround:

                          - enable the ppa src (add in /etc/apt/sources.list: deb-src http://ppa.launchpad.net/kubuntu-experimental/ubuntu intrepid main)

                          $ sudo apt-get source kdeplasma-addons //download kdeplasma-addons_4.2.1 sources
                          $ sudo apt-get build-dep kdeplasma-addons
                          $ cd kdeplasma-addons-4.2.1
                          $ sudo debuild -us -uc

                          If all is fine, the packages are in:

                          $ cd ../
                          $ ls *.deb
                          kdeplasma-addons_4.2.1-0ubuntu1~intrepid1_amd64.deb kdeplasma-addons-dbg_4.2.1-0ubuntu1~intrepid1_amd64.deb
                          kdeplasma-addons-data_4.2.1-0ubuntu1~intrepid1_all.deb

                          Finally to install the packages:

                          $ sudo dpkg -i kdeplasma-addons_4.2.1-0ubuntu1~intrepid1_amd64.deb kdeplasma-addons-data_4.2.1-0ubuntu1~intrepid1_all.deb

                          and voila' now my plasmoids are come back!

                          I am unable to compile it from source. Apparently I don't have all libraries installed. I get:

                          Make Error: The following variables are used in this project, but they are set to NOTFOUND.
                          Please set them or make sure they are set and tested correctly in the CMake files:
                          OPENGL_gl_LIBRARY (ADVANCED)
                          linked by target "plasma_applet_bluemarble" in directory /home/magda/debian/kdeplasma-addons-4.2.1/applets/bluemarble

                          What am I missing?

                          EDIT: I guess problem solved - binaries have been uploaded

                          Comment


                            #14
                            Re: Today's KDE 4.2 update breaks plasmoids

                            I have never encountered this kind of error ... apt-get build-dep should download all the dependencies for the compilation, however in the meantime they have updated the repository ...

                            Comment

                            Working...
                            X