[useless, SOLVED] Pacman shows package corrupted while upgrading

I pacman -Syu'ed my system after a week & there was these error of cyclic dependancy while installing gcc package. So, I issued this command:
sudo pacman -S gcc gcc-libs gcc-ada gcc-fortran gcc-objc libtool
While instaling, it showed that gcc's package is corrupted.
But, later I tried installing it using
sudo pacman -U gcc-4.6.2-1-x86_64.pkg.tar.xz gcc-libs-4.6.2-1-x86_64.pkg.tar.xz gcc-ada-4.6.2-1-x86_64.pkg.tar.xz gcc-fortran-4.6.2-1-x86_64.pkg.tar.xz gcc-objc-4.6.2-1-x86_64.pkg.tar.xz libtool-2.4
and it installed correctly.
It seems like local repo had the wrong md5 of the gcc package. How come?
Last edited by shadyabhi (2011-11-04 13:44:01)

karol wrote:Can you post the exact output, the 'corrupted' message?
shadyabhi@archlinux ~ $ sudo pacman -S gcc
warning: gcc-4.6.2-1 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...
Targets (1): gcc-4.6.2-1 [17.03 MB]
Total Download Size: 0.00 MB
Total Installed Size: 67.22 MB
Proceed with installation? [Y/n] Y
:: File gcc-4.6.2-1-x86_64.pkg.tar.xz is corrupted. Do you want to delete it? [Y/n] ^C [----------------------------------------------------------------] 0%
Interrupt signal received
shadyabhi@archlinux ~ $ sudo pacman -U /var/cache/pacman/pkg/gcc-4.6.2-1-x86_64.pkg.tar.xz
warning: gcc-4.6.2-1 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...
Targets (1): gcc-4.6.2-1 [17.06 MB]
Total Download Size: 0.00 MB
Total Installed Size: 66.82 MB
Proceed with installation? [Y/n] Y
(1/1) checking package integrity [################################################################] 100%
(1/1) checking for file conflicts [################################################################] 100%
(1/1) upgrading gcc [################################################################] 100%
shadyabhi@archlinux ~ $
I was successful in installing that same package if I used -U option. Thats some serious bug in pacman which should be looked into.
Please tell me as to what more info should I provide to be of more help.
Last edited by shadyabhi (2011-11-04 13:19:15)

Similar Messages

  • [SOLVED] pacman: updating package. how to see old version?

    Hi,
    is it possible to see the old version of a package before doing an update? "pacman -Suu" only shows the new version and not the installed version
    Thanks
    Last edited by genmich (2010-08-24 20:22:55)

    genmich wrote:
    Hi,
    is it possible to see the old version of a package before doing an update? "pacman -Suu" only shows the new version and not the installed version
    Thanks
    Actually, it shows both the old and new versions in a very pretty way:
    [karol@black apps]$ sudo pacman -Suu
    :: Starting full system upgrade...
    warning: hdparm: downgrading from version 9.29-1 to version 9.28-1
    warning: intel-dri: ignoring package upgrade (7.5.1-2 => 7.8.2-1)
    warning: libdrm: ignoring package upgrade (2.4.19-1 => 2.4.21-2)
    warning: libgl: ignoring package upgrade (7.5.1-2 => 7.8.2-1)
    warning: lrzip: downgrading from version 0.46-1 to version 0.45-1
    warning: stfl: downgrading from version 0.21-2 to version 0.21-1
    warning: xf86-input-evdev: ignoring package upgrade (2.2.5-1 => 2.4.0-2)
    warning: xf86-input-keyboard: ignoring package upgrade (1.3.2-2 => 1.4.0-2)
    warning: xf86-input-mouse: ignoring package upgrade (1.4.0-2 => 1.5.0-2)
    warning: ignoring package replacement (xf86-video-intel-legacy-2.3.2-3 => xf86-video-intel-newest-2.12.0-1)
    warning: xf86-video-vesa: ignoring package upgrade (2.2.0-1 => 2.3.0-2)
    warning: xorg-server: ignoring package upgrade (1.6.3.901-1 => 1.8.1.902-1)
    warning: xorg-server-utils: ignoring package upgrade (7.4-7 => 7.5-5)
    resolving dependencies...
    looking for inter-conflicts...
    I have all of the above packages in IgnorePkg:
    IgnorePkg = xorg-server xorg-server-utils xf86-video-intel-legacy xf86-video-vesa xf86-input-evdev xf86-input-keyboard xf86-input-mouse intel-dri libgl libdrm

  • [SOLVED] pacman show dependency list

    How can I make pacman show all dependencies of some package?
    Last edited by silenc3r (2010-05-21 20:00:12)

    Here is a little command I wrote a while back while I was learning sed. It gives a bulk output of all your programs, their dependencies and optional dependencies. I ran into the "fails for when depends extend to multiple lines" issue and this should fix that. I haven't tested it very much so you be the judge.
    pacman -Qi | sed '/^Depends On/,/^Required By/{ s/^Required By.*$//; H; d }; /^Name/!d; /^Name/{ n;x;}'| sed '/^$/s//==================================================================================/'
    Small Example Output: (looks much cleaner in the Terminal)
    ==================================================================================
    Name           : xorg-server-utils
    Version        : 1.7.6-3
    Depends On     : hal>=0.5.14  libgl  libxfont>=1.4.1  openssl>=1.0.0 
                     libpciaccess>=0.10.9  libxv>=1.0.5  pixman>=0.16.6 
                     xcursor-themes>=1.0.2  xkeyboard-config>=1.8 
                     xorg-server-utils  xorg-fonts-misc  xbitmaps  diffutils 
                     xf86-input-evdev>=2.2.5  inputproto>=2.0 
    Optional Deps  : None
    ==================================================================================
    Name           : xorg-util-macros
    Version        : 7.5-3
    Depends On     : libxfontcache>=1.0.5  libxi>=1.3  libxaw>=1.0.6 
                     libxxf86misc>=1.0.2  libxrandr>=1.3.0  libxxf86vm>=1.1.0 
                     mcpp>=2.7.2 
    Optional Deps  : None
    ==================================================================================
    Name           : xorg-utils
    Version        : 1.7.0-1
    Depends On     : None
    Optional Deps  : None
    ==================================================================================
    I added the equal signs for looks and to fit my default Terminal window. Just add or subtract them in the command to fit yours or to get rid of them just drop off the last section of the pipe.
    Good Luck!:D

  • [solved]Desktop permission settings lost while upgrading.

    i've been waiting a while for the latest gtk3, and thus all the applications that depend on it, to move out of the testing stage. when they did last night, however, upgrading somehow removed all of my standard permissions. i can no longer mount external or other internal drives, manage networking, shutdown/hibernate/suspend, and lots of applications complain and crash with permission errors. here's my pacman log for exactly what was installed/replaced:
    [2012-10-30 19:05] Running 'pacman-color -Syu'
    [2012-10-30 19:05] synchronizing package lists
    [2012-10-30 19:05] starting full system upgrade
    [2012-10-30 19:14] removed libwebkit3 (1.8.3-1)
    [2012-10-30 19:14] upgraded glib2 (2.32.4-1 -> 2.34.1-1)
    [2012-10-30 19:14] upgraded atk (2.4.0-1 -> 2.6.0-1)
    [2012-10-30 19:14] installed gstreamer (1.0.2-1)
    [2012-10-30 19:14] installed gst-plugins-base-libs (1.0.2-1)
    [2012-10-30 19:14] installed harfbuzz (0.9.5-1)
    [2012-10-30 19:14] upgraded pango (1.30.1-1 -> 1.32.1-1)
    [2012-10-30 19:14] installed gst-plugins-base (1.0.2-1)
    [2012-10-30 19:14] upgraded gsettings-desktop-schemas (3.4.2-1 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded glib-networking (2.32.3-1 -> 2.34.0-1)
    [2012-10-30 19:14] upgraded libsoup (2.38.1-1 -> 2.40.1-1)
    [2012-10-30 19:14] upgraded libgnome-keyring (3.4.1-1 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded libsoup-gnome (2.38.1-1 -> 2.40.1-1)
    [2012-10-30 19:14] installed chromaprint (0.7-1)
    [2012-10-30 19:14] installed celt (0.11.1-4)
    [2012-10-30 19:14] installed spandsp (0.0.6pre21-1)
    [2012-10-30 19:14] installed gst-plugins-bad (1.0.2-1)
    [2012-10-30 19:14] upgraded banshee (2.4.1-1 -> 2.6.0-1)
    [2012-10-30 19:14] upgraded polkit (0.105-1 -> 0.107-4)
    [2012-10-30 19:14] upgraded colord (0.1.21-2 -> 0.1.24-1)
    [2012-10-30 19:14] installed at-spi2-core (2.6.1-1)
    [2012-10-30 19:14] upgraded dconf (0.12.1-2 -> 0.14.0-1)
    [2012-10-30 19:14] installed at-spi2-atk (2.6.1-1)
    [2012-10-30 19:14] upgraded gtk3 (3.4.4-1 -> 3.6.1-1)
    [2012-10-30 19:14] upgraded gdk-pixbuf2 (2.26.3-1 -> 2.26.4-1)
    [2012-10-30 19:14] installed gst-plugins-good (1.0.2-1)
    [2012-10-30 19:14] upgraded json-glib (0.14.2-1 -> 0.15.2-1)
    [2012-10-30 19:14] upgraded clutter (1.10.6-1 -> 1.12.2-1)
    [2012-10-30 19:14] upgraded clutter-gst (1.6.0-1 -> 1.9.92-1)
    [2012-10-30 19:14] upgraded clutter-gtk (1.2.0-1 -> 1.4.0-1)
    [2012-10-30 19:14] upgraded libgee (0.6.5-1 -> 0.6.6-1)
    [2012-10-30 19:14] upgraded gnome-video-effects (0.4.0-1 -> 0.4.0-2)
    [2012-10-30 19:14] upgraded libcroco (0.6.5-1 -> 0.6.8-1)
    [2012-10-30 19:14] upgraded librsvg (2.36.3-1 -> 2.36.4-1)
    [2012-10-30 19:14] upgraded gnome-desktop (1:3.4.2-1 -> 1:3.6.1-1)
    [2012-10-30 19:14] upgraded cheese (3.4.2-1 -> 3.6.1-1)
    [2012-10-30 19:14] upgraded e2fsprogs (1.42.5-1 -> 1.42.6-1)
    [2012-10-30 19:14] upgraded gnome-icon-theme-symbolic (3.4.0-1 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded gnome-icon-theme (3.4.0-1 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded evince (3.4.0-1 -> 3.6.1-1)
    [2012-10-30 19:14] upgraded glade (3.12.1-1 -> 3.14.1-1)
    [2012-10-30 19:14] upgraded glibmm (2.32.1-1 -> 2.34.0-1)
    [2012-10-30 19:14] upgraded udisks2 (1.94.0-2 -> 2.0.0-1)
    [2012-10-30 19:14] installed libsecret (0.10-1)
    [2012-10-30 19:14] upgraded gvfs (1.12.3-3 -> 1.14.0-1)
    [2012-10-30 19:14] upgraded gvfs-obexftp (1.12.3-3 -> 1.14.0-1)
    [2012-10-30 19:14] upgraded gnome-bluetooth (3.4.2-1 -> 3.6.0-2)
    [2012-10-30 19:14] upgraded gnome-common (3.4.0.1-2 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded gobject-introspection (1.32.1-2 -> 1.34.1.1-1)
    [2012-10-30 19:14] upgraded pygobject-devel (3.2.2-2 -> 3.4.1.1-1)
    [2012-10-30 19:14] upgraded python2-gobject (3.2.2-2 -> 3.4.1.1-1)
    [2012-10-30 19:14] upgraded gnome-menus (3.4.2-1 -> 3.6.0-1)
    [2012-10-30 19:14] installed webkitgtk3 (1.10.1-1)
    [2012-10-30 19:14] upgraded rest (0.7.12-1 -> 0.7.90-1)
    [2012-10-30 19:14] upgraded gnome-online-accounts (3.4.2-1 -> 3.6.0-1)
    [2012-10-30 19:14] installed ibus (1.4.99.20121006-1)
    [2012-10-30 19:14] upgraded gnome-settings-daemon (3.4.2-1 -> 3.6.1-2)
    [2012-10-30 19:14] installed iptables (1.4.16.2-1)
    [2012-10-30 19:14] upgraded iproute2 (3.5.1-1 -> 3.6.0-2)
    [2012-10-30 19:14] installed dhclient (4.2.4.1-3)
    [2012-10-30 19:14] upgraded networkmanager (0.9.6.0-2 -> 0.9.6.4-1)
    [2012-10-30 19:14] upgraded network-manager-applet (0.9.6.2-1 -> 0.9.6.4-1)
    [2012-10-30 19:14] installed libpwquality (1.2.0-1)
    [2012-10-30 19:14] warning: directory permissions differ on usr/share/polkit-1/rules.d/
    filesystem: 700 package: 755
    [2012-10-30 19:14] upgraded gnome-control-center (3.4.2-1 -> 3.6.2-1)
    [2012-10-30 19:14] upgraded gnome-disk-utility (3.4.1-1 -> 3.6.1-1)
    [2012-10-30 19:14] upgraded gtk-engine-unico (1.0.2-1 -> 1.0.2-3)
    [2012-10-30 19:14] upgraded gtkmm3 (3.4.1-1 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded gvfs-afc (1.12.3-3 -> 1.14.0-1)
    [2012-10-30 19:14] upgraded gvfs-afp (1.12.3-3 -> 1.14.0-1)
    [2012-10-30 19:14] upgraded gvfs-gphoto2 (1.12.3-3 -> 1.14.0-1)
    [2012-10-30 19:14] upgraded gvfs-smb (1.12.3-3 -> 1.14.0-1)
    [2012-10-30 19:14] upgraded libxklavier (5.2.1-2 -> 5.3-1)
    [2012-10-30 19:14] upgraded libgnomekbd (3.4.0.2-1 -> 3.6.0-1)
    [2012-10-30 19:14] upgraded libpeas (1.4.0-2 -> 1.6.1-1)
    [2012-10-30 19:14] upgraded vte-common (0.32.2-1 -> 0.34.1-1)
    [2012-10-30 19:14] upgraded xorg-xinit (1.3.2-1 -> 1.3.2-3)
    [2012-10-30 19:14] upgraded xterm (285-1 -> 286-1)
    i've been using polkit, udisks, udisks2, etcetera for things (although it's been a while since this machine was set up, so i've forgotten some things.) and my desktop is MATE 1.4
    where should i start looking first, and what other useful information can i provide?
    Last edited by shmibs (2012-10-31 18:33:22)

    I guess have a similar problem. NetworkManager still runs but when I try to connect to a new network, it complains: "Failed to add/activate" connection (32) Insufficient privileges.
    Also, I cannot enable/disable wireless from nm-applet
    Yes, I read the news and I believe my system is boot using systemd.
    I don't have it in rc.conf (although I do have some DAEMONS remain in rc.conf, like dbus) I start nm by 
    sudo systemctl start networkmanager.service
    after login. Do I need to remove all the DAEMONS from rc.d, in order to make things work? Any help?
    Last edited by pingpong (2012-10-31 17:32:31)

  • [solved] Pacman shows Idconfig errors

    Whenever I am upgrading or installing a package with pacman, I get the following printout after the operation is finished.
    [2012-05-21 22:51] Running 'pacman -S flashplugin'
    [2012-05-21 22:52] upgraded flashplugin (11.2.202.235-1 -> 11.2.202.235-1)
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk.so is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk_gl.so.1.3 is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk_gl.so is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk_forms.so.1.3 is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk_images.so is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk_images.so.1.3 is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk.so.1.3 is empty, not checked.
    [2012-05-21 22:52] ldconfig: File /usr/lib/libfltk_forms.so is empty, not checked.
    Why is this? What must I do to fix it?
    I reinstalled the fltk package, then re-uninstalled it. Seems fixed.
    Last edited by rogue (2012-05-22 03:10:58)

    Reinstall the packages that own these libraries. I think it's the FLTK package, but I'm not 100% sure. Use pacman -Qo to find out.
    Then first try to reinstall it normally.
    pacman -S fltk
    If that doesn't work, force it.
    pacman -S fltk --force

  • [SOLVED] Problem Synchronizing package databases after upgrade

    After upgrading I'm having this:
    [root@david-laptop david]# pacman -Suyy
    :: Synchronizing package databases...
    error: failed retrieving file 'testing.db' from mirrors.kernel.org : Forbidden
    downloading testing.db...
    error: failed retrieving file 'core.db' from mirrors.kernel.org : Forbidden
    downloading core.db...
    error: failed retrieving file 'extra.db' from mirrors.kernel.org : Forbidden
    downloading extra.db...
    error: failed retrieving file 'community-testing.db' from mirrors.kernel.org : Forbidden
    downloading community-testing.db...
    error: failed retrieving file 'community.db' from mirrors.kernel.org : Forbidden
    downloading community.db...
    error: failed retrieving file 'multilib-testing.db' from mirrors.kernel.org : Forbidden
    error: failed retrieving file 'multilib-testing.db' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'multilib-testing.db' from mirrors.easynews.com : Not Found
    error: failed retrieving file 'multilib-testing.db' from mirrors.gigenet.com : Not Found
    error: failed retrieving file 'multilib-testing.db' from www.gtlib.gatech.edu : Not Found
    error: failed retrieving file 'multilib.db' from mirrors.kernel.org : Forbidden
    error: failed retrieving file 'multilib.db' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'multilib.db' from mirrors.easynews.com : Not Found
    error: failed retrieving file 'multilib.db' from mirrors.gigenet.com : Not Found
    error: failed retrieving file 'multilib.db' from www.gtlib.gatech.edu : Not Found
    downloading archlinuxfr.db...
    :: Starting full system upgrade...
    warning: a52dec: local (0.7.4-5) is newer than extra (0.7.4-4)
    warning: aalib: local (1.4rc5-8) is newer than extra (1.4rc5-6)
    warning: acl: local (2.2.51-1) is newer than core (2.2.49-1)
    warning: alsa-lib: local (1.0.24.1-1) is newer than extra (1.0.23-1)
    warning: alsa-plugins: local (1.0.24-2) is newer than community (1.0.23-1)
    warning: apache: local (2.2.19-1) is newer than extra (2.2.15-2)
    warning: apr: local (1.4.5-1) is newer than extra (1.4.2-1)
    warning: apr-util: local (1.3.12-1) is newer than extra (1.3.9-4)
    warning: artwiz-fonts: local (1.3-6) is newer than extra (1.3-5)
    warning: aspell: local (0.60.6-5) is newer than extra (0.60.6-4)
    warning: atk: local (2.0.0-1) is newer than extra (1.30.0-1)
    warning: at-spi: local (1.32.0-4) is newer than extra (1.30.1-1)
    warning: attr: local (2.4.46-1) is newer than core (2.4.44-1)
    warning: autoconf: local (2.68-1) is newer than core (2.66-2)
    warning: automake: local (1.11.1-2) is newer than core (1.11.1-1)
    warning: avahi: local (0.6.30-2) is newer than extra (0.6.25-3)
    warning: babl: local (0.1.4-1) is newer than extra (0.1.2-1)
    warning: banshee: local (2.0.1-2) is newer than extra (1.6.1-1)
    warning: bash: local (4.2.010-1) is newer than core (4.1.007-1)
    warning: binutils: local (2.21-8) is newer than core (2.20.1-3)
    warning: bison: local (2.5-1) is newer than core (2.4.2-1)
    warning: bluez: local (4.93-2) is newer than extra (4.69-1)
    warning: bogofilter: local (1.2.2-2) is newer than extra (1.2.1-1)
    warning: boo: local (0.9.4.9-1) is newer than extra (0.9.3.3457-1)
    warning: boost-libs: local (1.46.1-2) is newer than extra (1.43.0-1)
    warning: brasero: local (3.0.0-1) is newer than extra (2.30.2-1)
    warning: brltty: local (4.2-4) is newer than extra (4.1-3)
    warning: bug-buddy: local (2.32.0-1) is newer than extra (2.30.0-1)
    warning: bzip2: local (1.0.6-1) is newer than core (1.0.5-5)
    warning: ca-certificates: local (20110421-3) is newer than core (20090814-3)
    warning: cairo: local (1.10.2-2) is newer than extra (1.8.10-1)
    warning: cairomm: local (1.10.0-1) is newer than extra (1.8.4-1)
    warning: cdparanoia: local (10.2-3) is newer than extra (10.2-2)
    warning: cdrdao: local (1.2.3-5) is newer than extra (1.2.3-4)
    warning: cdrkit: local (1.1.11-1) is newer than extra (1.1.10-1)
    warning: cheese: local (3.0.1-2) is newer than extra (2.30.1-1)
    warning: chromium: local (11.0.696.71-1) is newer than extra (5.0.375.99-1)
    warning: clutter: local (1.6.14-1) is newer than extra (1.2.10-1)
    warning: clutter-gtk: local (1.0.0-1) is newer than extra (0.10.4-1)
    warning: compositeproto: local (0.4.2-1) is newer than extra (0.4.1-1)
    warning: consolekit: local (0.4.5-1) is newer than extra (0.4.1-2)
    warning: coreutils: local (8.12-2) is newer than core (8.5-2)
    warning: cracklib: local (2.8.18-1) is newer than core (2.8.16-1)
    warning: cryptsetup: local (1.3.1-1) is newer than core (1.1.3-1)
    warning: cups: local (1.4.6-3) is newer than extra (1.4.4-1)
    warning: curl: local (7.21.6-2) is newer than extra (7.21.0-1)
    warning: cyrus-sasl-plugins: local (2.1.23-5) is newer than extra (2.1.23-2)
    warning: damageproto: local (1.2.1-1) is newer than extra (1.2.0-1)
    warning: dash: local (0.5.6.1-2) is newer than core (0.5.6.1-1)
    warning: db: local (5.1.25-1) is newer than core (4.8.26-2)
    warning: dbus: local (1.4.8-1) is newer than extra (1.2.24-1)
    warning: dbus-core: local (1.4.8-1) is newer than core (1.2.24-1)
    warning: dbus-glib: local (0.92-1) is newer than extra (0.86-1)
    warning: dbus-python: local (0.83.1-2) is newer than extra (0.83.1-1)
    warning: dcron: local (4.5-2) is newer than core (4.4-2)
    warning: desktop-file-utils: local (0.18-1) is newer than extra (0.16-1)
    warning: device-mapper: local (2.02.85-2) is newer than core (2.02.70-1)
    warning: dhcpcd: local (5.2.12-1) is newer than testing (5.2.6-1)
    warning: diffutils: local (3.0-2) is newer than core (3.0-1)
    warning: dirmngr: local (1.1.0-1) is newer than extra (1.1.0rc1-1)
    warning: djvulibre: local (3.5.24-1) is newer than extra (3.5.22-2)
    warning: dmidecode: local (2.11-1) is newer than extra (2.10-1)
    warning: dnsutils: local (9.8.0.P2-1) is newer than testing (9.7.1.P2-1)
    warning: e2fsprogs: local (1.41.14-1) is newer than core (1.41.12-1)
    warning: eject: local (2.1.5-5) is newer than extra (2.1.5-4)
    warning: ekiga: local (3.3.0-4) is newer than extra (3.2.7-2)
    warning: empathy: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: enchant: local (1.6.0-2) is newer than extra (1.6.0-1)
    warning: eog: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: epiphany: local (3.0.2-2) is newer than extra (2.30.2-1)
    warning: eventlog: local (0.2.12-2) is newer than core (0.2.12-1)
    warning: evince: local (3.0.2-1) is newer than extra (2.30.3-1)
    warning: evolution: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: evolution-data-server: local (3.0.2.1-1) is newer than extra (2.30.2.1-1)
    warning: evolution-exchange: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: evolution-webcal: local (2.32.0-1) is newer than extra (2.28.1-2)
    warning: exiv2: local (0.21.1-1) is newer than extra (0.19-1)
    warning: expat: local (2.0.1-6) is newer than core (2.0.1-5)
    warning: faad2: local (2.7-2) is newer than extra (2.7-1)
    warning: fakeroot: local (1.15.1-1) is newer than core (1.14.4-2)
    warning: fam: local (2.7.0-15) is newer than extra (2.7.0-14)
    warning: farsight2: local (0.0.28-2) is newer than extra (0.0.20-1)
    warning: ffmpeg: local (20110330-2) is newer than extra (24460-1)
    warning: fftw: local (3.2.2-2) is newer than extra (3.2.2-1)
    warning: file: local (5.07-3) is newer than core (5.04-2)
    warning: file-roller: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: filesystem: local (2011.04-1) is newer than testing (2010.07-1)
    warning: findutils: local (4.4.2-3) is newer than core (4.4.2-2)
    warning: fixesproto: local (5.0-1) is newer than extra (4.1.1-1)
    warning: flex: local (2.5.35-4) is newer than core (2.5.35-3)
    warning: fontsproto: local (2.1.1-1) is newer than extra (2.1.0-1)
    warning: freerdp: local (0.8.2-2) is newer than community (0.7.2-1)
    warning: freetype2: local (2.4.4-2) is newer than extra (2.4.1-1)
    warning: fuse: local (2.8.5-1) is newer than extra (2.8.4-2)
    warning: gawk: local (3.1.8-2) is newer than core (3.1.8-1)
    warning: gcalctool: local (6.0.2-1) is newer than extra (5.30.2-1)
    warning: gcc: local (4.6.0-6) is newer than testing (4.5.0-7)
    warning: gcc-libs: local (4.6.0-6) is newer than testing (4.5.0-7)
    warning: gconf: local (2.32.3-1) is newer than extra (2.28.1-1)
    warning: gconf-editor: local (3.0.0-1) is newer than extra (2.30.0-1)
    warning: gdb: local (7.2-2) is newer than extra (7.1-2)
    warning: gdbm: local (1.8.3-8) is newer than core (1.8.3-7)
    warning: gdm: local (3.0.4-1) is newer than extra (2.30.4-1)
    warning: gedit: local (3.0.4-1) is newer than extra (2.30.3-1)
    warning: gegl: local (0.1.6-1) is newer than extra (0.1.2-1)
    warning: gen-init-cpio: local (2.6.36-1) is newer than core (2.6.32-1)
    warning: gettext: local (0.18.1.1-3) is newer than core (0.18.1.1-1)
    warning: ghostscript: local (9.02-2) is newer than extra (8.71-3)
    warning: giflib: local (4.1.6-4) is newer than extra (4.1.6-3)
    warning: gimp: local (2.6.11-5) is newer than extra (2.6.9-1)
    warning: git: local (1.7.5.4-1) is newer than extra (1.7.2-1)
    warning: gjs: local (0.7.14-1) is newer than extra (0.6-1)
    warning: glade: local (3.10.0-2) is newer than extra (3.6.7-1)
    warning: glib2: local (2.28.8-1) is newer than core (2.24.1-1)
    warning: glibc: local (2.13-5) is newer than core (2.12-4)
    warning: glibmm: local (2.28.1-1) is newer than extra (2.24.2-1)
    warning: glproto: local (1.4.12-1) is newer than extra (1.4.11-2)
    warning: gluezilla: local (2.6-3) is newer than extra (2.6-2)
    warning: gmime: local (2.4.23-1) is newer than extra (2.4.17-1)
    warning: gmp: local (5.0.2-1) is newer than core (5.0.1-1)
    warning: gnome-applets: local (3.1.1-1) is newer than extra (2.30.0-1)
    warning: gnome-backgrounds: local (3.0.2-1) is newer than extra (2.30.0-1)
    warning: gnome-bluetooth: local (3.0.1-1) is newer than extra (2.30.0-3)
    warning: gnome-common: local (2.34.0-1) is newer than extra (2.28.0-1)
    warning: gnome-control-center: local (3.0.2-1) is newer than extra (2.30.1-1)
    warning: gnome-desktop: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: gnome-desktop-sharp: local (2.26.0-7) is newer than extra (2.26.0-5)
    warning: gnome-disk-utility: local (3.0.0-1) is newer than extra (2.30.1-1)
    warning: gnome-doc-utils: local (0.20.6-1) is newer than extra (0.20.1-1)
    warning: gnome-games: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: gnome-games-extra-data: local (3.0.0-1) is newer than extra (2.30.0-1)
    warning: gnome-icon-theme: local (3.0.0-2) is newer than extra (2.30.3-1)
    warning: gnome-keyring: local (3.0.3-1) is newer than extra (2.30.3-1)
    warning: gnome-mag: local (0.16.3-1) is newer than extra (0.16.1-1)
    warning: gnome-media: local (2.91.2-2) is newer than extra (2.30.0-2)
    warning: gnome-menus: local (3.0.1-1) is newer than extra (2.30.2-1)
    warning: gnome-mime-data: local (2.18.0-5) is newer than extra (2.18.0-4)
    warning: gnome-nettool: local (3.0.0-1) is newer than extra (2.30.0-1)
    warning: gnome-panel: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: gnome-pilot: local (2.91.92-1) is newer than extra (2.0.17-2)
    warning: gnome-power-manager: local (3.0.2-2) is newer than extra (2.30.1-1)
    warning: gnome-python: local (2.28.1-7) is newer than extra (2.28.1-1)
    warning: gnome-python-desktop: local (2.32.0-6) is newer than extra (2.30.2-2)
    warning: gnome-screensaver: local (3.0.0-1) is newer than extra (2.30.0-1)
    warning: gnome-session: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: gnome-settings-daemon: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: gnome-sharp: local (2.24.2-1) is newer than extra (2.24.1-1)
    warning: gnome-system-monitor: local (3.0.1-1) is newer than extra (2.28.1-1)
    warning: gnome-terminal: local (3.0.1-2) is newer than extra (2.30.2-1)
    warning: gnome-utils: local (3.0.1-1) is newer than extra (2.30.0-1)
    warning: gnome-vfs: local (2.24.4-3) is newer than extra (2.24.3-2)
    warning: gnupg: local (1.4.11-2) is newer than extra (1.4.10-2)
    warning: gnupg2: local (2.0.17-1) is newer than extra (2.0.15-1)
    warning: gnutls: local (2.12.6.1-1) is newer than extra (2.8.6-1)
    warning: gobject-introspection: local (0.10.8-1) is newer than extra (0.6.14-1)
    warning: gok: local (2.30.1-1) is newer than extra (2.30.0-1)
    warning: gpm: local (1.20.6-6) is newer than core (1.20.6-5)
    warning: grep: local (2.8-1) is newer than core (2.6.3-1)
    warning: groff: local (1.21-1) is newer than core (1.20.1-4)
    warning: gstreamer0.10: local (0.10.34-1) is newer than extra (0.10.29-1)
    warning: gstreamer0.10-bad: local (0.10.22-1) is newer than extra (0.10.19-1)
    warning: gstreamer0.10-bad-plugins: local (0.10.22-1) is newer than extra (0.10.19-1)
    warning: gstreamer0.10-base: local (0.10.34-1) is newer than extra (0.10.29-1)
    warning: gstreamer0.10-base-plugins: local (0.10.34-1) is newer than extra (0.10.29-1)
    warning: gstreamer0.10-ffmpeg: local (0.10.11-1) is newer than extra (0.10.10-1)
    warning: gstreamer0.10-good: local (0.10.29-1) is newer than extra (0.10.23-1)
    warning: gstreamer0.10-good-plugins: local (0.10.29-1) is newer than extra (0.10.23-1)
    warning: gstreamer0.10-python: local (0.10.21-1) is newer than extra (0.10.18-1)
    warning: gstreamer0.10-ugly: local (0.10.18-1) is newer than extra (0.10.15-2)
    warning: gstreamer0.10-ugly-plugins: local (0.10.18-1) is newer than extra (0.10.15-2)
    warning: gtk2: local (2.24.4-2) is newer than extra (2.20.1-2)
    warning: gtk-engines: local (2.20.2-1) is newer than extra (2.20.1-1)
    warning: gtkhtml: local (3.32.2-2) is newer than extra (3.30.2-1)
    warning: gtkmm: local (2.24.0-1) is newer than extra (2.20.3-1)
    warning: gtksourceview2: local (2.10.5-1) is newer than extra (2.10.4-1)
    warning: gtk-vnc: local (0.4.3-1) is newer than extra (0.3.10-1)
    warning: gucharmap: local (3.0.1-1) is newer than extra (2.30.2-1)
    warning: guile: local (1.8.8-1) is newer than extra (1.8.7-2)
    warning: gvfs: local (1.8.2-1) is newer than extra (1.6.3-1)
    warning: gvfs-obexftp: local (1.8.2-1) is newer than extra (1.6.3-1)
    warning: gvfs-smb: local (1.8.2-1) is newer than extra (1.6.3-1)
    warning: gzip: local (1.4-2) is newer than core (1.4-1)
    warning: hal: local (0.5.14-6) is newer than extra (0.5.14-4)
    warning: hunspell: local (1.3.2-1) is newer than extra (1.2.12-1)
    warning: hyphen: local (2.7.1-2) is newer than extra (2.5-1)
    warning: hyphen-en: local (2.7.1-2) is newer than extra (2.5-1)
    warning: icon-naming-utils: local (0.8.90-2) is newer than extra (0.8.90-1)
    warning: icu: local (4.8-1) is newer than extra (4.4.1-1)
    warning: imagemagick: local (6.7.0.2-1) is newer than extra (6.6.2.10-1)
    warning: initscripts: local (2011.06.3-1) is newer than core (2010.07-1)
    warning: inputproto: local (2.0.1-1) is newer than extra (2.0-1)
    warning: intel-dri: local (7.10.99.git20110531-1) is newer than extra (7.8.2-1)
    warning: intltool: local (0.41.1-2) is newer than extra (0.41.1-1)
    warning: iproute2: local (2.6.38-3) is newer than core (2.6.34-2)
    warning: iputils: local (20101006-1) is newer than core (20100214-2)
    warning: jack: local (0.120.2-1) is newer than extra (0.118.0-3)
    warning: jasper: local (1.900.1-6) is newer than extra (1.900.1-5)
    warning: jdk: local (6u25-1) is newer than community (6u20-1)
    warning: jfsutils: local (1.1.14-2) is newer than core (1.1.14-1)
    warning: jre: local (6u25-1) is newer than community (6u20-1)
    warning: kbd: local (1.15.3-1) is newer than core (1.15.2-1)
    warning: kbproto: local (1.0.5-1) is newer than extra (1.0.4-1)
    warning: kernel26: local (2.6.39-1) is newer than core (2.6.34.1-1)
    warning: kernel26-headers: local (2.6.39-1) is newer than core (2.6.34.1-1)
    warning: lcms: local (1.19-1) is newer than extra (1.18-3)
    warning: less: local (443-2) is newer than core (436-1)
    warning: lib32-alsa-lib: local (1.0.24.1-1) is newer than community (1.0.23-2)
    warning: lib32-atk: local (1.32.0-1) is newer than community (1.30.0-1)
    warning: lib32-attr: local (2.4.44-4) is newer than community (2.4.44-2)
    warning: lib32-cairo: local (1.10.2-2) is newer than community (1.8.10-1)
    warning: lib32-db: local (5.1.19-1) is newer than community (4.8.26-2)
    warning: lib32-dbus-core: local (1.4.0-2) is newer than community (1.2.24-1)
    warning: lib32-e2fsprogs: local (1.41.14-2) is newer than community (1.41.12-1)
    warning: lib32-expat: local (2.0.1-7) is newer than community (2.0.1-5)
    warning: lib32-flac: local (1.2.1-7) is newer than community (1.2.1-3)
    warning: lib32-fontconfig: local (2.8.0-3) is newer than community (2.8.0-1)
    warning: lib32-freetype2: local (2.4.4-1) is newer than community (2.4.1-1)
    warning: lib32-gcc-libs: local (4.6.0-6) is newer than community (4.5.0-6)
    warning: lib32-glib2: local (2.28.6-1) is newer than community (2.24.1-1)
    warning: lib32-glibc: local (2.13-5) is newer than community (2.12-4)
    warning: lib32-gnutls: local (2.12.2-1) is newer than community (2.8.6-1)
    warning: lib32-gtk2: local (2.24.4-1) is newer than community (2.20.1-2)
    warning: lib32-heimdal: local (1.3.3-3) is newer than community (1.3.3-1)
    warning: lib32-libasyncns: local (0.8-5) is newer than community (0.8-3)
    warning: lib32-libcap: local (2.21-1) is newer than community (2.19-1)
    warning: lib32-libcups: local (1.4.5-1) is newer than community (1.4.4-1)
    warning: lib32-libdrm: local (2.4.25-1) is newer than community (2.4.21-1)
    warning: lib32-libgcrypt: local (1.4.6-3) is newer than community (1.4.5-2.1)
    warning: lib32-libgl: local (7.10.99.git20110531-1) is newer than community (7.8.2-1)
    warning: lib32-libgpg-error: local (1.9-4) is newer than community (1.7-3.1)
    warning: lib32-libice: local (1.0.7-1) is newer than community (1.0.6-1)
    warning: lib32-libogg: local (1.2.2-1) is newer than community (1.2.0-2)
    warning: lib32-libpng: local (1.4.5-1) is newer than community (1.4.3-1)
    warning: lib32-libsm: local (1.2.0-1) is newer than community (1.1.1-1)
    warning: lib32-libsndfile: local (1.0.24-1) is newer than community (1.0.21-2)
    warning: lib32-libtiff: local (3.9.4-3) is newer than community (3.9.4-1)
    warning: lib32-libvorbis: local (1.3.2-1) is newer than community (1.3.1-2)
    warning: lib32-libx11: local (1.4.3-1) is newer than community (1.3.4-1)
    warning: lib32-libxau: local (1.0.6-2) is newer than community (1.0.5-1)
    warning: lib32-libxcb: local (1.7-2) is newer than community (1.6-1)
    warning: lib32-libxcomposite: local (0.4.3-1) is newer than community (0.4.2-1)
    warning: lib32-libxcursor: local (1.1.11-1) is newer than community (1.1.10-1)
    warning: lib32-libxdamage: local (1.1.3-3) is newer than community (1.1.3-1)
    warning: lib32-libxdmcp: local (1.1.0-1) is newer than community (1.0.3-1)
    warning: lib32-libxext: local (1.2.0-1) is newer than community (1.1.2-1)
    warning: lib32-libxfixes: local (4.0.5-3) is newer than community (4.0.5-1)
    warning: lib32-libxft: local (2.2.0-1) is newer than community (2.1.14-1)
    warning: lib32-libxi: local (1.4.1-1) is newer than community (1.3-2)
    warning: lib32-libxinerama: local (1.1.1-1) is newer than community (1.1-1)
    warning: lib32-libxrandr: local (1.3.1-1) is newer than community (1.3.0-1)
    warning: lib32-libxrender: local (0.9.6-4) is newer than community (0.9.6-1)
    warning: lib32-libxss: local (1.2.1-1) is newer than community (1.2.0-1)
    warning: lib32-libxtst: local (1.2.0-1) is newer than community (1.1.0-1)
    warning: lib32-libxv: local (1.0.6-1) is newer than community (1.0.5-1)
    warning: lib32-libxxf86vm: local (1.1.1-1) is newer than community (1.1.0-1)
    warning: lib32-ncurses: local (5.7-6) is newer than community (5.7-3)
    warning: lib32-openssl: local (1.0.0.d-1) is newer than community (1.0.0.a-2)
    warning: lib32-pango: local (1.28.3-1) is newer than community (1.28.1-1)
    warning: lib32-pcre: local (8.12-1) is newer than community (8.02-1)
    warning: lib32-pixman: local (0.20.2-1) is newer than community (0.18.2-1)
    warning: lib32-qt: local (4.7.3-1) is newer than community (4.6.3-1)
    warning: lib32-readline: local (6.1.002-3) is newer than community (6.1.002-1)
    warning: lib32-sqlite3: local (3.7.4-1) is newer than community (3.6.23.1-1)
    warning: lib32-xcb-util: local (0.3.6-3) is newer than community (0.3.6-1)
    warning: lib32-zlib: local (1.2.5-6) is newer than community (1.2.5-2)
    warning: libao: local (1.1.0-1) is newer than extra (1.0.0-2)
    warning: libarchive: local (2.8.4-2) is newer than core (2.8.4-1)
    warning: libass: local (0.9.12-1) is newer than extra (0.9.9-1)
    warning: libassuan: local (2.0.1-1) is newer than extra (2.0.0-1)
    warning: libasyncns: local (0.8-3) is newer than community (0.8-2)
    warning: libbeagle: local (0.3.9-2) is newer than extra (0.3.9-1)
    warning: libbonobo: local (2.32.1-1) is newer than extra (2.24.3-1)
    warning: libbonoboui: local (2.24.5-1) is newer than extra (2.24.3-1)
    warning: libcanberra: local (0.28-1) is newer than extra (0.23-1)
    warning: libcanberra-pulse: local (0.28-1) is newer than community (0.25-1)
    warning: libcap: local (2.21-1) is newer than core (2.19-1)
    warning: libcdaudio: local (0.99.12-5) is newer than extra (0.99.12-4)
    warning: libcups: local (1.4.6-3) is newer than extra (1.4.4-1)
    warning: libdatrie: local (0.2.4-1) is newer than extra (0.2.3-1)
    warning: libdc1394: local (2.1.3-1) is newer than extra (2.1.2-1)
    warning: libdrm: local (2.4.25-1) is newer than extra (2.4.21-1)
    warning: libedit: local (20110227_3.0-1) is newer than extra (20090923_3.0-1)
    warning: libevent: local (2.0.11-1) is newer than core (1.4.14b-1)
    warning: libexif: local (0.6.20-1) is newer than extra (0.6.19-1)
    warning: libfetch: local (2.33-3) is newer than core (2.32-1)
    warning: libfontenc: local (1.1.0-1) is newer than extra (1.0.5-1)
    warning: libgcrypt: local (1.4.6-3) is newer than core (1.4.6-1)
    warning: libgdata: local (0.8.0-1) is newer than extra (0.6.4-1)
    warning: libgdiplus: local (2.10-1) is newer than extra (2.6.4-1)
    warning: libgee: local (0.6.1-1) is newer than community (0.5.1-1)
    warning: libgexiv2: local (0.3.0-1) is newer than community (0.1.0-1)
    warning: libgksu: local (2.0.12-3) is newer than extra (2.0.12-2)
    warning: libgl: local (7.10.99.git20110531-1) is newer than extra (7.8.2-1)
    warning: libglade: local (2.6.4-2) is newer than extra (2.6.4-1)
    warning: libgnome: local (2.32.1-2) is newer than extra (2.30.0-1)
    warning: libgnomecanvas: local (2.30.3-1) is newer than extra (2.30.1-1)
    warning: libgnomecups: local (0.2.3-8) is newer than extra (0.2.3-7)
    warning: libgnomekbd: local (3.0.0.1-1) is newer than extra (2.30.2-1)
    warning: libgnome-keyring: local (3.0.3-1) is newer than extra (2.30.1-1)
    warning: libgnomeprint: local (2.18.8-2) is newer than extra (2.18.7-2)
    warning: libgnomeprintui: local (2.18.6-1) is newer than extra (2.18.5-1)
    warning: libgnomeui: local (2.24.4-1) is newer than extra (2.24.3-1)
    warning: libgpg-error: local (1.9-3) is newer than core (1.7-3)
    warning: libgphoto2: local (2.4.10.1-2) is newer than extra (2.4.9-1)
    warning: libgpod: local (0.8.0-2) is newer than extra (0.7.93-1)
    warning: libgsf: local (1.14.21-1) is newer than extra (1.14.18-1)
    warning: libgssglue: local (0.1-4) is newer than core (0.1-2)
    warning: libgtop: local (2.28.3-1) is newer than extra (2.28.1-1)
    warning: libgweather: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: libical: local (0.46-1) is newer than extra (0.44-1)
    warning: libice: local (1.0.7-1) is newer than extra (1.0.6-1)
    warning: libid3tag: local (0.15.1b-6) is newer than extra (0.15.1b-5)
    warning: libidn: local (1.22-1) is newer than extra (1.16-1)
    warning: libiec61883: local (1.2.0-2) is newer than extra (1.2.0-1)
    warning: libimobiledevice: local (1.1.0-1) is newer than extra (1.0.2-1)
    warning: libksba: local (1.0.8-1) is newer than extra (1.0.7-1)
    warning: libldap: local (2.4.24-1) is newer than core (2.4.22-1)
    warning: liblrdf: local (0.4.0-7) is newer than extra (0.4.0-6)
    warning: libmad: local (0.15.1b-5) is newer than extra (0.15.1b-4)
    warning: libmpc: local (0.9-1) is newer than core (0.8.2-2)
    warning: libmtp: local (1.0.6-1) is newer than extra (1.0.2-1)
    warning: libmysqlclient: local (5.5.13-1) is newer than extra (5.1.47-1)
    warning: libnice: local (0.1.0-1) is newer than extra (0.0.12-1)
    warning: libnotify: local (0.7.3-1) is newer than extra (0.4.5-1)
    warning: libofa: local (0.9.3-3) is newer than extra (0.9.3-2)
    warning: libogg: local (1.2.2-1.1) is newer than extra (1.2.0-1)
    warning: libpcap: local (1.1.1-2) is newer than core (1.1.1-1)
    warning: libpciaccess: local (0.12.1-1) is newer than extra (0.11.0-1)
    warning: libplist: local (1.4-1) is newer than extra (1.3-1)
    warning: libpng: local (1.4.5-1) is newer than extra (1.4.3-1)
    warning: libproxy: local (0.4.6-7) is newer than extra (0.3.1-1)
    warning: libpst: local (0.6.49-3) is newer than extra (0.6.41-5)
    warning: libpurple: local (2.7.11-6) is newer than extra (2.7.2-1)
    warning: libraw: local (0.13.5-1) is newer than community (0.9.1-1)
    warning: libraw1394: local (2.0.7-1) is newer than extra (2.0.5-1)
    warning: librsvg: local (2.34.0-1) is newer than extra (2.26.3-1)
    warning: libsamplerate: local (0.1.7-2) is newer than extra (0.1.7-1)
    warning: libsasl: local (2.1.23-5) is newer than core (2.1.23-4)
    warning: libsigc++: local (2.2.9-1) is newer than extra (2.2.8-1)
    warning: libsm: local (1.2.0-1) is newer than extra (1.1.1-1)
    warning: libsndfile: local (1.0.24-1) is newer than extra (1.0.21-1)
    warning: libsoup: local (2.34.2-1) is newer than extra (2.30.2-1)
    warning: libsoup-gnome: local (2.34.2-1) is newer than extra (2.30.2-1)
    warning: libspectre: local (0.2.6-2) is newer than extra (0.2.6-1)
    warning: libssh: local (0.5.0-1) is newer than extra (0.4.5-1)
    warning: libtasn1: local (2.9-1) is newer than extra (2.6-1)
    warning: libtextcat: local (2.2-8) is newer than community (2.2-6)
    warning: libthai: local (0.1.15-1) is newer than extra (0.1.14-1)
    warning: libtiff: local (3.9.5-1) is newer than extra (3.9.4-1)
    warning: libtirpc: local (0.2.1-3) is newer than core (0.2.1-1)
    warning: libtool: local (2.4-3) is newer than core (2.2.10-1)
    warning: libunique: local (1.1.6-4) is newer than extra (1.1.6-2)
    warning: libusb: local (1.0.8-1) is newer than core (0.1.12-4)
    warning: libva: local (1.0.13-1) is newer than extra (0.31.0_p13-2)
    warning: libvdpau: local (0.4.1-1) is newer than extra (0.4-1)
    warning: libvorbis: local (1.3.2-1) is newer than extra (1.3.1-1)
    warning: libvpx: local (0.9.6-2) is newer than extra (0.9.1-1)
    warning: libwebkit: local (1.4.0-2) is newer than extra (1.2.3-1)
    warning: libwmf: local (0.2.8.4-8) is newer than extra (0.2.8.4-7)
    warning: libwnck: local (2.30.6-2) is newer than extra (2.30.2-1)
    warning: libwpd: local (0.9.2-1) is newer than extra (0.8.14-1)
    warning: libx11: local (1.4.3-2) is newer than extra (1.3.4-1)
    warning: libxau: local (1.0.6-1) is newer than extra (1.0.5-1)
    warning: libxaw: local (1.0.9-1) is newer than extra (1.0.7-1)
    warning: libxcb: local (1.7-2) is newer than extra (1.6-1)
    warning: libxcomposite: local (0.4.3-1) is newer than extra (0.4.2-1)
    warning: libxcursor: local (1.1.11-1) is newer than extra (1.1.10-1)
    warning: libxdmcp: local (1.1.0-1) is newer than extra (1.0.3-1)
    warning: libxext: local (1.3.0-1) is newer than extra (1.1.2-1)
    warning: libxfixes: local (5.0-1) is newer than extra (4.0.5-1)
    warning: libxfont: local (1.4.3-1) is newer than extra (1.4.2-1)
    warning: libxft: local (2.2.0-1) is newer than extra (2.1.14-1)
    warning: libxi: local (1.4.2-1) is newer than extra (1.3-2)
    warning: libxinerama: local (1.1.1-1) is newer than extra (1.1-1)
    warning: libxkbfile: local (1.0.7-1) is newer than extra (1.0.6-1)
    warning: libxklavier: local (5.1-1) is newer than extra (5.0-1)
    warning: libxml2: local (2.7.8-1) is newer than extra (2.7.7-1)
    warning: libxmu: local (1.1.0-1) is newer than extra (1.0.5-1)
    warning: libxpm: local (3.5.9-1) is newer than extra (3.5.8-1)
    warning: libxrandr: local (1.3.1-1) is newer than extra (1.3.0-1)
    warning: libxres: local (1.0.5-1) is newer than extra (1.0.4-1)
    warning: libxslt: local (1.1.26-2) is newer than extra (1.1.26-1)
    warning: libxss: local (1.2.1-1) is newer than extra (1.2.0-1)
    warning: libxt: local (1.1.1-1) is newer than extra (1.0.8-1)
    warning: libxtst: local (1.2.0-1) is newer than extra (1.1.0-1)
    warning: libxv: local (1.0.6-1) is newer than extra (1.0.5-1)
    warning: libxvmc: local (1.0.6-1) is newer than extra (1.0.5-1)
    warning: libxxf86vm: local (1.1.1-1) is newer than extra (1.1.0-1)
    warning: libzip: local (0.10-1) is newer than extra (0.9.3-1)
    warning: licenses: local (2.8-1) is newer than core (2.6-1)
    warning: linux-api-headers: local (2.6.38.1-1) is newer than core (2.6.34-1)
    warning: linux-atm: local (2.5.1-2) is newer than core (2.5.1-1)
    warning: linux-firmware: local (20110512-2) is newer than core (20100623-2)
    warning: logrotate: local (3.7.9-1) is newer than core (3.7.8-1)
    warning: lpsolve: local (5.5.2.0-1) is newer than extra (5.5.0.15-1)
    warning: lsof: local (4.84-3) is newer than extra (4.83-1)
    warning: lua: local (5.1.4-6) is newer than extra (5.1.4-5)
    warning: lvm2: local (2.02.85-2) is newer than core (2.02.70-1)
    warning: lzo2: local (2.05-1) is newer than core (2.03-1)
    warning: m4: local (1.4.16-1) is newer than core (1.4.14-2)
    warning: make: local (3.82-3) is newer than core (3.81-5)
    warning: man-db: local (2.6.0.2-2) is newer than core (2.5.7-1)
    warning: man-pages: local (3.32-1) is newer than core (3.25-1)
    warning: mdadm: local (3.2.1-3) is newer than core (3.1.2-2)
    warning: mesa: local (7.10.99.git20110531-1) is newer than extra (7.8.2-1)
    warning: metacity: local (2.34.0-1) is newer than extra (2.30.1-1)
    warning: mkinitcpio: local (0.6.13-1) is newer than core (0.6.7-1)
    warning: mkinitcpio-busybox: local (1.18.4-1) is newer than core (1.16.2-1)
    warning: mobile-broadband-provider-info: local (20110218-1) is newer than extra (20100510-1)
    warning: mod_python: local (3.3.1-8) is newer than extra (3.3.1-5)
    warning: module-init-tools: local (3.13-1) is newer than testing (3.12-1)
    warning: mono: local (2.10.2-1) is newer than extra (2.6.4-2)
    warning: mono-basic: local (2.10-1) is newer than extra (2.6.2-1)
    warning: mono-debugger: local (2.10-1) is newer than extra (2.6.3-1)
    warning: monodevelop: local (2.4.2-2) is newer than extra (2.4-1)
    warning: mono-tools: local (2.10-1) is newer than extra (2.6.2-1)
    warning: mono-zeroconf: local (0.9.0-2) is newer than extra (0.9.0-1)
    warning: mousetweaks: local (3.0.1-1) is newer than extra (2.30.2-1)
    warning: mpfr: local (3.0.1-1) is newer than core (3.0.0-1)
    warning: musicbrainz: local (2.1.5-4) is newer than extra (2.1.5-3)
    warning: mutagen: local (1.20-3) is newer than extra (1.19-1)
    warning: mysql: local (5.5.13-1) is newer than extra (5.1.47-1)
    warning: mysql-clients: local (5.5.13-1) is newer than extra (5.1.47-1)
    warning: mysql-workbench: local (1:5.2.34-1) is newer than community (5.2.25-1)
    warning: nano: local (2.2.6-1) is newer than core (2.2.4-1)
    warning: nautilus: local (3.0.2-1) is newer than extra (2.30.1-1)
    warning: nautilus-sendto: local (3.0.0-1) is newer than extra (2.28.4-2)
    warning: ncurses: local (5.9-1) is newer than core (5.7-3)
    warning: neon: local (0.29.6-1) is newer than extra (0.29.3-2)
    warning: net-tools: local (1.60-16) is newer than core (1.60-14)
    warning: networkmanager: local (0.8.9997-1) is newer than testing (0.8.0.999-1)
    warning: network-manager-applet: local (0.8.9997-1) is newer than testing (0.8.0.999-1)
    warning: nmap: local (5.51-1) is newer than extra (5.21-2)
    warning: notification-daemon: local (0.7.1-1) is newer than extra (0.4.0-4)
    warning: notify-sharp-svn: local (3032-3) is newer than community (3032-2)
    warning: nspr: local (4.8.8-1) is newer than extra (4.8.4-1)
    warning: nss: local (3.12.10-1) is newer than extra (3.12.6-3)
    warning: ntfs-3g: local (2011.4.12-1) is newer than extra (2010.5.22-1)
    warning: obex-data-server: local (0.4.5-3) is newer than extra (0.4.5-2)
    warning: obexd-client: local (0.40-1) is newer than extra (0.29-3)
    warning: opal: local (3.8.3-1) is newer than extra (3.6.8-1)
    warning: openobex: local (1.5-2) is newer than extra (1.5-1)
    warning: openssh: local (5.8p2-6) is newer than core (5.5p1-1)
    warning: openssl: local (1.0.0.d-1) is newer than core (1.0.0.a-2)
    warning: orbit2: local (2.14.19-1) is newer than extra (2.14.18-1)
    warning: orc: local (0.4.14-1) is newer than extra (0.4.6-1)
    warning: orca: local (3.0.2-1) is newer than extra (2.30.2-1)
    warning: pacman: local (3.5.2-1) is newer than core (3.4.0-2)
    warning: pacman-mirrorlist: local (20110324-1) is newer than core (20100621-1)
    warning: pam: local (1.1.3-1) is newer than core (1.1.1-1)
    warning: pango: local (1.28.4-3) is newer than extra (1.28.1-1)
    warning: pangomm: local (2.28.1-1) is newer than extra (2.26.2-1)
    warning: papyon: local (0.5.5-1) is newer than extra (0.4.9-1)
    warning: parted: local (2.4-1) is newer than extra (2.3-1)
    warning: patch: local (2.6.1-2) is newer than core (2.6.1-1)
    warning: pciutils: local (3.1.7-4) is newer than core (3.1.7-1)
    warning: pcmciautils: local (017-2) is newer than core (017-1)
    warning: pcre: local (8.12-1) is newer than core (8.10-1)
    warning: perl: local (5.14.0-1) is newer than testing (5.12.1-1)
    warning: perl-error: local (0.17016-2) is newer than extra (0.17016-1)
    warning: perl-xml-parser: local (2.40-3) is newer than testing (2.36-7)
    warning: perl-xml-simple: local (2.18-3) is newer than extra (2.18-2)
    warning: php: local (5.3.6-4) is newer than extra (5.3.2-6)
    warning: php-apache: local (5.3.6-4) is newer than extra (5.3.2-6)
    warning: pilot-link: local (0.12.5-2) is newer than extra (0.12.5-1)
    warning: pinentry: local (0.8.1-1) is newer than extra (0.8.0-1)
    warning: pixman: local (0.22.0-1) is newer than extra (0.18.2-1)
    warning: pkg-config: local (0.26-1) is newer than core (0.25-2)
    warning: pm-utils: local (1.4.1-3) is newer than extra (1.4.0-1)
    warning: podsleuth: local (0.6.7-1) is newer than extra (0.6.4-1)
    warning: polkit: local (0.101-2) is newer than extra (0.96-2)
    warning: polkit-gnome: local (0.101-2) is newer than extra (0.96-3)
    warning: poppler: local (0.16.5-1) is newer than extra (0.14.0-1)
    warning: poppler-data: local (0.4.4-1) is newer than extra (0.4.2-1)
    warning: poppler-glib: local (0.16.5-1) is newer than extra (0.14.0-1)
    warning: popt: local (1.16-3) is newer than core (1.16-2)
    warning: postgresql-libs: local (9.0.4-4) is newer than extra (8.4.4-1)
    warning: ppl: local (0.11.2-1) is newer than core (0.10.2-3)
    warning: ppp: local (2.4.5-2) is newer than core (2.4.5-1)
    warning: procps: local (3.2.8-3) is newer than core (3.2.8-1)
    warning: psmisc: local (22.13-1) is newer than core (22.11-1)
    warning: ptlib: local (2.8.3-1) is newer than extra (2.6.7-1)
    warning: pulseaudio: local (0.9.22-2) is newer than community (0.9.21-8)
    warning: pulseaudio-alsa: local (1-2) is newer than community (1-1)
    warning: pycrypto: local (2.3-1) is newer than extra (2.1.0-1)
    warning: pygobject: local (2.28.4-1) is newer than extra (2.21.3-1)
    warning: pygtk: local (2.24.0-1) is newer than extra (2.17.0-1)
    warning: pygtksourceview2: local (2.10.1-3) is newer than extra (2.10.1-1)
    warning: pylint: local (0.23.0-2) is newer than extra (0.21.1-1)
    warning: pyorbit: local (2.24.0-3) is newer than extra (2.24.0-2)
    warning: python-dnspython: local (1.9.2-1) is newer than community (1.8.0-1)
    warning: python-egenix-mx-base: local (3.2.0-1) is newer than extra (3.1.3-1)
    warning: python-imaging: local (1.1.7-3) is newer than extra (1.1.7-1)
    warning: python-logilab-astng: local (0.21.1-1) is newer than extra (0.20.1-1)
    warning: python-logilab-common: local (0.55.2-1) is newer than extra (0.50.3-1)
    warning: python-notify: local (0.1.1-10) is newer than extra (0.1.1-6)
    warning: python-paramiko: local (1.7.6-3) is newer than community (1.7.6-1)
    warning: python-pexpect: local (2.3-4) is newer than community (2.3-3)
    warning: python-pysqlite: local (2.6.0-2) is newer than extra (2.6.0-1)
    warning: python-telepathy: local (0.15.19-1) is newer than extra (0.15.17-1)
    warning: pyxdg: local (0.19-2) is newer than extra (0.19-1)
    warning: qt: local (4.7.3-1) is newer than extra (4.6.3-1)
    warning: randrproto: local (1.3.2-1) is newer than extra (1.3.1-1)
    warning: rasqal: local (1:0.9.21-1) is newer than extra (0.9.19-2)
    warning: readline: local (6.2.001-1) is newer than core (6.1.002-1)
    warning: recode: local (3.6-6) is newer than extra (3.6-5)
    warning: recordproto: local (1.14.1-1) is newer than extra (1.14-1)
    warning: redland: local (1:1.0.12-1) is newer than extra (1.0.10-2)
    warning: reiserfsprogs: local (3.6.21-3) is newer than core (3.6.21-2)
    warning: remmina: local (0.9.3-1) is newer than community (0.8.0-1)
    warning: remmina-plugins: local (0.9.2-1) is newer than community (0.8.1-1)
    warning: renderproto: local (0.11.1-1) is newer than extra (0.11-1)
    warning: rpcbind: local (0.2.0-3) is newer than core (0.2.0-1)
    warning: rp-pppoe: local (3.10-6) is newer than core (3.10-5)
    warning: rtkit: local (0.10-1) is newer than community (0.8-1)
    warning: ruby: local (1.9.2_p180-2) is newer than extra (1.9.1_p429-1)
    warning: run-parts: local (3.4.4-1) is newer than core (3.2.3-1)
    warning: samba: local (3.5.8-3) is newer than extra (3.5.4-1)
    warning: schroedinger: local (1.0.10-1) is newer than extra (1.0.9-1)
    warning: scrnsaverproto: local (1.2.1-1) is newer than extra (1.2.0-1)
    warning: sdl: local (1.2.14-6) is newer than extra (1.2.14-5)
    warning: seahorse: local (3.0.2-1) is newer than extra (2.30.1-1)
    warning: sed: local (4.2.1-3) is newer than core (4.2.1-2)
    warning: seed: local (3.0.0-1) is newer than extra (2.30.0-2)
    warning: sg3_utils: local (1.30-1) is newer than extra (1.29-1)
    warning: shadow: local (4.1.4.3-1) is newer than core (4.1.4.2-3)
    warning: shared-mime-info: local (0.90-1) is newer than extra (0.71-1)
    warning: shotwell: local (0.10.1-1) is newer than community (0.6.1-2)
    warning: smbclient: local (3.5.8-3) is newer than extra (3.5.4-1)
    warning: smbnetfs: local (0.5.3a-3) is newer than community (0.5.2-1)
    warning: sofia-sip: local (1.12.11-1) is newer than extra (1.12.10-2)
    warning: sound-juicer: local (2.32.1-1) is newer than extra (2.28.2-1)
    warning: sqlite3: local (3.7.6.3-1) is newer than testing (3.7.0-1)
    warning: startup-notification: local (0.12-1) is newer than extra (0.10-1)
    warning: subversion: local (1.6.17-3) is newer than extra (1.6.9-5)
    warning: sudo: local (1.8.1.p2-1) is newer than core (1.7.3-1)
    warning: sysfsutils: local (2.1.0-6) is newer than core (2.1.0-5)
    warning: syslog-ng: local (3.2.4-1) is newer than core (3.1.1-1)
    warning: sysvinit: local (2.88-2) is newer than core (2.86-5)
    warning: taglib: local (1.7-1) is newer than extra (1.6.3-1)
    warning: talloc: local (2.0.5-1) is newer than extra (2.0.1-1)
    warning: tar: local (1.26-1) is newer than core (1.23-3)
    warning: tcl: local (8.5.9-1) is newer than extra (8.5.8-1)
    warning: tcp_wrappers: local (7.6-12) is newer than core (7.6-11)
    warning: tdb: local (1.2.9-1) is newer than extra (1.2.1-1)
    warning: telepathy-butterfly: local (0.5.15-1) is newer than extra (0.5.12-1)
    warning: telepathy-farsight: local (0.0.18-1) is newer than extra (0.0.14-1)
    warning: telepathy-gabble: local (0.12.1-1) is newer than extra (0.8.14-1)
    warning: telepathy-glib: local (0.14.7-1) is newer than extra (0.10.7-1)
    warning: telepathy-haze: local (0.4.0-1) is newer than extra (0.3.6-1)
    warning: telepathy-idle: local (0.1.10-1) is newer than extra (0.1.6-2)
    warning: telepathy-mission-control: local (5.7.11-1) is newer than extra (5.4.3-1)
    warning: telepathy-salut: local (0.4.0-1) is newer than extra (0.3.12-1)
    warning: telepathy-sofiasip: local (0.7.1-1) is newer than extra (0.6.3-1)
    warning: texinfo: local (4.13a-5) is newer than core (4.13a-4)
    warning: tomboy: local (1.6.1-1) is newer than extra (1.2.1-1)
    warning: totem: local (3.0.1-2) is newer than extra (2.30.2-1)
    warning: totem-plparser: local (2.32.5-1) is newer than extra (2.30.1-1)
    warning: ttf-dejavu: local (2.33-1) is newer than extra (2.30-2)
    warning: tzdata: local (2011g-1) is newer than core (2010j-1)
    warning: udev: local (171-2) is newer than core (160-1)
    warning: udisks: local (1.0.3-3) is newer than extra (1.0.1-4)
    warning: upower: local (0.9.11-1) is newer than extra (0.9.4-1)
    warning: usbmuxd: local (1.0.6-2) is newer than extra (1.0.4-2)
    warning: usbutils: local (002-3) is newer than core (0.87-1)
    Last edited by davidtavarez (2011-06-06 18:34:28)

    lilsirecho wrote:
    Perhaps you can try ....pacman-db-upgrade,,,,firstly.
    Enter it as shown above with no spaces.
    Then try upgrading your mirrorlist in /etc/pacman.d.
    Goodluck!
    Thanks! Probleme SOLVED

  • [SOLVED]Pacman complains when trying to upgrade

    Hello all.
    Trying to run "pacman -Syu" I get the following errors:
    error: failed to commit transaction (conflicting files)
    kernel26-firmware: /lib/firmware/bnx2x-e1-4.8.53.0.fw exists in filesystem
    kernel26-firmware: /lib/firmware/bnx2x-e1h-4.8.53.0.fw exists in filesystem
    kernel26-firmware: /lib/firmware/cis/3CCFEM556.cis exists in filesystem
    kernel26-firmware: /lib/firmware/cis/3CXEM556.cis exists in filesystem
    kernel26-firmware: /lib/firmware/cxgb3/t3fw-7.4.0.bin exists in filesystem
    Errors occurred, no packages were upgraded.
    I suspected that it had something to do with an old custom kernel I'm not really using anymore, but not sure. Running "pacman -Qo" just gives:
    error: No package owns /lib/firmware/bnx2x-e1-4.8.53.0.fw
    Anyone had any ideas? Help much appreciated.
    Last edited by rune0077 (2009-10-11 17:15:45)

    Yup, I just ran it with the force option and everything installed and upgraded fine.
    Thanks.

  • Pacman: Show current versions during upgrade

    Hi,
    When running an upgrade, I am interested to know the version I have currently installed for each package (only the version to be installed is shown). It doesn't look like pacman has this capability. I wrote a script earlier in the year that used pacman to gather current and new versions and display them side by side before running an upgrade, but it broke with a new pacman release.
    Before I fix it (and was then thinking of putting it in the AUR) is there already something that will do this?
    Thanks

    pacman-4.0 has a "VerbosePkgLists" option that provides all these details.
    :: Starting full system upgrade...
    warning: xarchiver: ignoring package upgrade (0.5.2-2 => 0.5.2-4)
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1):
    Name Old Version New Version Net Change Download Size
    glib2 2.30.1-1 2.30.2-1 0.00 MiB 1.71 MiB
    Total Download Size: 1.71 MiB
    Total Installed Size: 11.00 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n]

  • [SOLVED] pacman: which package should I install for a given file?

    Hi there!
    I'm still trying to learn arch's essentials. A question coming up frequently is:
    Say I know I need file /usr/bin/zipinfo. How do I find out which package it's delivered in? The only thing remotely similar in the wiki is
    pacman -Qo /path/to/a/file
    but this only works for already installed packages. So what next?
    Best wishes,
    Rufus
    P.S.: google told me the package is called unzip so that's not the problem. Still, there has to be some way to get this information from the command line.
    Last edited by RufusD (2010-04-24 15:30:31)

    brilliant, thanks! I could have figured it's not a standard pacman function (since the situation is similar with debian's apt-get).
    Maybe this is worth a mention on pacman's wiki page. This is the first time arch's fabulous wiki let me down
    Last edited by RufusD (2010-04-24 15:32:35)

  • [SOLVED] Pacman wont upgrade any packages

    EDIT: I was able to solve my problem by pacman -R yaourt package-query pacman-color, I was then able to update pacman. Since I like yaourt and wanted to keep it I follow the instructions on their page (http://archlinux.fr/yaourt-en#get_it). I added their repo to my /etc/pacman.conf and then installed yaourt from pacman and now everything works again like it should.
    When I try to upgrade packages I get the following errors:
    [jason@barnaby ~]$ sudo pacman -Su
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] Y
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.6
    :: pacman-color: requires pacman<3.6
    [jason@barnaby ~]$ sudo pacman -Su
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] n
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.6
    :: pacman-color: requires pacman<3.6
    [jason@barnaby ~]$
    Last edited by slughappy1 (2012-01-17 18:07:42)

    I tried to uninstall packagekit and failed, then I tried to install packagekit-git and that failed too.
    [jason@barnaby ~]$ sudo pacman -R packagekit
    Password:
    error: 'packagekit': target not found
    [jason@barnaby ~]$ yaourt -S packagekit-git
    ==> Downloading packagekit-git PKGBUILD from AUR...
    x ChangeLog
    x PKGBUILD
    Comment by: onestep_ua on Thu, 16 Sep 2010 23:56:56 +0000
    Updated this to follow the change of GIT server.
    Comment by: nxarmada on Tue, 01 Feb 2011 06:01:55 +0000
    == Installing missing dependencies...
    error: 'gir-repository=0.6.6': could not find or read package
    == ERROR: 'pacman' failed to install missing dependencies.
    I assume this should be git-repository=0.6.6 Also I can find this package on Pacman or AUR
    Comment by: onestep_ua on Tue, 01 Feb 2011 09:27:06 +0000
    This is obsolete dependency connected with gobject-introspection support. I think it can be removed without any problems. :)
    Comment by: nxarmada on Thu, 03 Feb 2011 18:40:37 +0000
    So I am trying to compile but I get this....any ideas?
    SyntaxError: invalid syntax
    make[4]: *** [enums.py] Error 1
    make[4]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build/lib/python/packagekit'
    make[3]: *** [all-recursive] Error 1
    make[3]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build/lib/python'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build/lib'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/ryan/Downloads/AUR/packagekit/src/packagekit-build'
    make: *** [all] Error 2
    Aborting...
    Comment by: bash on Tue, 29 Mar 2011 00:57:10 +0000
    these lines are needed before ./autogen.sh
    sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
    -e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
    $(find . -name '*.py')
    Comment by: bash on Tue, 29 Mar 2011 01:14:30 +0000
    also ./autogen.sh must be replaced with:
    PYTHON=/usr/bin/python2 ./autogen.sh
    First Submitted: Sun, 20 Apr 2008 23:33:58 +0000
    packagekit-git 20100917-1
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> packagekit-git dependencies:
    - dbus-glib>=0.86 (already installed)
    - polkit>=0.96 (already installed)
    - networkmanager>=0.8.1 (already installed)
    - pacman>=3.4.1 (already installed)
    - python>=2.6.5 (already installed)
    - sqlite3 (already installed)
    - git (already installed)
    - gnome-common (already installed)
    - intltool (already installed)
    - pm-utils (already installed)
    - libtar (package found)
    - gir-repository>=0.6.6 (building from AUR)
    - pacman-glib>=3.4.0 (building from AUR)
    ==> Continue building packagekit-git ? [Y/n]
    ==> ----------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for packagekit-git:
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] Y
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: package-query: requires pacman<3.6
    :: pacman-color: requires pacman<3.6
    ==> Restart building packagekit-git ? [y/N]
    ==> ---------------------------------------

  • [SOLVED] pacman -Qdt shows required packages

    I've used "pacman -Qdt" quite often but since yesterday it shows packages that it probably should not:
    autoconf2.13
    hal
    pm-utils
    pm-quirks
    hal-info
    dmidecode
    consolekit
    xorg-server-xvfb
    yasm
    If I remove "orphans" like pm-utils or hal, I will only know that they weren't orphans. For example pm-utils was explicitly installed and without hal Xorg/xmonad won't start.
    Can anyone explain to me what's going on here?
    Last edited by Markus00000 (2011-10-26 11:30:31)

    Thanks, yet I have no idea why Xorg/xmonad won't start after removing these orphans and is instantly fixed by installing hal and its dependencies.
    And also how pm-utils can be an orphan when I know that I installed it explicitly (pacman.log is with me here).
    And also why hal etc. did not show up before with -Qdt.
    Last edited by Markus00000 (2011-05-04 06:03:36)

  • [SOLVED] Pacman broken by partial upgrade. How to fix and update?

    Pacman partially upgraded a system during pacman -Syu and, as a result, pacman itself is broken.
    So I'm facing two issues, the one which caused the upgrade to fail and the fact that pacman no longer works.
    I answered yes to all of the below:
    :: Starting full system upgrade...
    :: Replace kactivities with extra/kactivities4? [Y/n] y
    :: Replace lzo2 with core/lzo? [Y/n] y
    :: Replace phonon-gstreamer with extra/phonon-qt4-gstreamer? [Y/n] y
    :: Replace phonon-gstreamer with extra/phonon-qt5-gstreamer? [Y/n] y
    :: Replace polkit-qt with extra/polkit-qt4? [Y/n] y
    :: Replace shared-color-profiles with extra/colord? [Y/n] y
    :: Replace twisted with extra/python2-twisted? [Y/n] y
    All seemed well until all the downloads and verifications were finished.
    (646/646) checking for file conflicts [######################] 100%
    (1/6) removing lzo2 [######################] 100%
    (2/6) removing shared-color-profiles [######################] 100%
    (3/6) removing polkit-qt [######################] 100%
    (4/6) removing phonon-gstreamer [######################] 100%
    (5/6) removing kactivities [######################] 100%
    (6/6) removing twisted [######################] 100%
    ( 1/646) upgrading linux-api-headers [######################] 100%
    ( 2/646) upgrading tzdata [######################] 100%
    ( 3/646) upgrading filesystem [######################] 100%
    warning: /etc/group installed as /etc/group.pacnew
    warning: /etc/passwd installed as /etc/passwd.pacnew
    warning: /etc/gshadow installed as /etc/gshadow.pacnew
    warning: /etc/shadow installed as /etc/shadow.pacnew
    error: extract: not overwriting dir with file /var/run
    error: problem occurred while upgrading filesystem
    error: could not commit transaction
    error: failed to commit transaction (transaction aborted)
    Errors occurred, no packages were upgraded.
    The upgrade failed because of "extract: not overwriting dir with file /var/run".
    The last line is not entirely true because I don't think the removals were rolled back.
    Since pacman depends on lzo2 I now get the error below whenever I try to launch it.
    pacman: error while loading shared libraries: liblzo2.so.2: cannot open shared object file: No such file or directory
    So I need to figure out a way to fix pacman and correct the issue that is causing the update to fail without causing even bigger problems.
    I'd appreciate any suggestions!
    Thanks.
    Last edited by authentec (2014-08-26 07:02:00)

    headkase wrote:
    Your filesystem package was upgraded, you had 646 packages to upgrade.  You haven't run "pacman -Syu" in years.  Your system will be near impossible to upgrade.  Reinstall, and update regularly.
    Am I wrong?
    According to pacman.log my last successful upgrade was in April May 2014 (hardly anything upgraded so I missed it in the logs at first).
    Strangely enough, pacman -Qe reports the same filesystem version (filesystem 2014.07-1) both before and after the upgrade today.
    Unless I'm mistaken that would mean it wasn't upgraded (or it was upgraded and not rolled back when the transaction failed which wouldn't be my first guess).
    So it would appear you are wrong on both counts, headkase.
    After I forced installation of the replacement lzo the upgrade went ahead without a hitch.
    So no, the system wasn't impossible to upgrade either. Wrong there too.
    I'm not sure exactly what went wrong though. It might have all been due to lzo2 not being automatically replaced successfully. Yet I'm not sure why it would have attempted to upgrade filesystem when it failed then report the same version after the full system upgrade completed successfully.
    Last edited by authentec (2014-08-26 16:16:46)

  • HT4527 While upgrading my operating system to Windows 7, I backed up everything on external drive.  However the drive is corrupt and lost my music.  Since I have an iPhone I had the music there as well, I synced it and it erased everything. How can I get

    While upgrading to Windows 7, I backed up everything on a external drive; it became corrupt so I could not access my music library for iTunes.  However, I had my music on my iPhone as well so I assumed it will sync.  It did sync but not the way I thought, so I lost years of music and favorite uploaded CDs.  How can I recover it?  I lknow you can acess iTunes from 4 computers so the database is there somewhere.  Unfortunately all I was able to recover is the music purchased from iTunes directly.  It makes me wonder about the iCloud product; if I cannot find my music what is my incentive to buy iCloud?  It seems like they are starting to charge for something that they provided before freely, then messed up the updates and software so that we need to pay for this service now.

    iCloud never stored music. That is what the iTunes Match service is for.
    The only way to get back non-iTunes-purchased music is to import them to your new iTunes library however you did it on your old computer.

  • [SOLVED] pacman fails on a package that should've been ignored anyway

    Hi all,
    I don't understand why the below upgrade isn't working.  I exclude the kernel from my normal upgrade command as it prevents me from loading any modules until I reboot, so I typically only upgrade the kernel when I'm about to reboot.
    In this case failure to upgrade the kernel is preventing the nVidia driver from being updated also, which is fine, but I don't understand why it then says it can't install 'nvidia' because 'nvidia-utils' is the wrong version - I thought 'nvidia' was going to be skipped?  Why is it trying to install it anyway?
    Is there a way to get around this without having to manually exclude all these packages?
    $ pacman -Su
    :: Starting full system upgrade...
    :: Replace dbus-python with extra/python2-dbus? [Y/n]
    warning: linux: ignoring package upgrade (3.3.8-1 => 3.4.2-2)
    warning: linux-headers: ignoring package upgrade (3.3.8-1 => 3.4.2-2)
    resolving dependencies...
    warning: ignoring package linux-3.4.2-2
    warning: cannot resolve "linux>=3.4", a dependency of "nvidia"
    warning: ignoring package linux-3.4.2-2
    warning: cannot resolve "linux>=3.4", a dependency of "virtualbox-modules"
    :: The following packages cannot be upgraded due to unresolvable dependencies:
    nvidia virtualbox-modules
    Do you want to skip the above packages for this upgrade? [y/N] y
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: nvidia: requires nvidia-utils=295.53
    Last edited by Malvineous (2012-06-17 05:23:21)

    Ohhh, so you're saying it ignored nvidia, but tried to upgrade nvidia-utils.  nvidia-utils requires nvidia, but nvidia needs a specific version of nvidia-utils which would be broken by upgrading nvidia-utils, so it refuses to upgrade nvidia-utils because of the existing dependency.  Right.
    So then the second part of my question - how can I get around this without adding nvidia-utils as an IgnorePkg?  Can I tell pacman to just ignore it if the deps couldn't be satisfied and keep going with whatever's left?

  • [SOLVED] pacman upgrade won't work because of unresolved dependency

    Hey all,
    I tried a pacman -Syyu today and it found some things and said:
    :: The following packages should be upgraded first :
        pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: gcc: requires gcc-libs=4.6.2-6
    I have gcc-libs=4.6.2-7 and I apparently need 4.6.2-6 but I can't change anything without pacman, and pacman won't change anything without updating itself first, and it can't because of this unmet dependency, so there's a stalemate.
    Any ideas what to do?
    Last edited by jdoggsc (2012-02-13 21:00:47)

    Awebb wrote:What's a repost?
    http://www.urbandictionary.com/define.php?term=repost

Maybe you are looking for

  • How to use bonjour, how to use bonjour

    I try to use a western digital my book world edition for my home network but i am not able to configure it. Ho to do ?

  • Need some help with social net site

    I need to create a site with editable user profiles, the site will feature sports stats that the user can update. I use Dreamweaver and MYSQL but I need some direction. Im starting from scratch here, are there any templates or free source code to go

  • ADF BC/Struts/JSP

    I'm hoping some of you out there can just confirm some of my observations and maybe answer a few high level questions. I have been playing around with Jdev 9052 for a few days, I've read Steve Muench's Data Binding primer and have even created a few

  • Trigger workflow when IDOC Status 51  & with Basic Type "ORDERS003"

    Hi Experts, Can any one explaine how to create worlflow for "When Idoc status is 51 with the combination of Basic Type "ORDERS003" . If this condition will satisfy i need to send a mail using worklflow. For this one Bussiness type is BUS2102". Can yo

  • UTILIZATION Challenge !! Credit Addicts needed !

    Hi all!  So, this is a "what if" scenario that I need help with.  My scores are climbing wildly as I pay down my cards, with a 10 point jump overnight just for bringing UTIL down on one card from $500 / 600 CL to $259 / 600 CL !!  EX FICO.  So, I wan