Central jar - package database

I very often encounter the problem that a package cannot be found, but I just don't know which jar file to put in the classpath. It would be very useful to have a database on the web that lists the contained packages against the jar filename. In theory package names should be unique with the inverse domain name method. Is there such a database?

I think you should learn something about jar files read these.
will be very useful for you
http://www.codeguru.com/forum/showthread.php?threadid=279029
http://java.sun.com/docs/books/tutorial/jar/
these will solve your problem.

Similar Messages

  • Jar package for XML Dynamic News

    Where I will find *.jar package for XML Dynamic News?

    Hi,
    You have downloaded the old sample application. The latest XML Dynamic News application is certified for Oracle 9.2.0.2 database which uses Oracle XML DB and J2EE features. For the latest application sample jar to be uploaded, we are waiting for the patch release of database on OTN.
    We are sorry for the inconvenience caused and will keep you updated about the sample application release.
    Thank you.
    Savitha.

  • (SOLVED)Problems during installation, can not refresh package database

    I have been using Arch for a year (dual boot) but for some reasons I had to do a reinstall. It worked fine, but I did some things wrong and I had too reinstall (again, befor even entering the system).  This time (and all the other times i've tried today) I can not complete the "select packages" step, it either freezes at "Refreshing package database" or gives me a message that it just can not be done (sorry, I do not have the exact words atm). I have internet and I've been trying a million different mirrors (including the one I used when it worked). What to do, what to do?
    Worth noting is that I had the same problems a year a go, but it solved it self, no idea what I did then.
    I would really appreciate if some one knew what was going on - it is driving me crazy beyond comprehension!
    EDIT: maby this should have been pasted in the installation section?
    EDIT2: Title
    Last edited by elprofundo (2011-12-18 16:15:29)

    I am sorry, it is during the installation and no command is in use (correct me if I'm wrong) - the tty7 is just reading "Synchronizing package database", the last times i've tried it didbn't 't continue for hours, other times it gives me an error message (which I haven't written down, sadly). I'm trying again atm.
    EDIT: The error message I get is just
    "error: failed retrieving file 'core.db' from mirror.optus.net
                 //                                           mirrors.kernel.org : Connection timed out
    Last edited by elprofundo (2011-12-15 21:47:59)

  • Unable to load "ejb.jar" to database

    Hi All,
    I am trying to load ejb.jar to database by using the following syntax.
    loadjava  -verbose -force -resolve -oracleresolver -user <uname>/<password>@<server>:<port>:<sid>  -t  ejb.jar 
    But it is showing error :
    ksh: loadjava : not found.
    In the server when i type loadjava it is showing the options, means loadjava will work i think. Is there any configuration needs to change to load ejb.jar to database ?
    Machine details :
    AIX 64 Bit 5.3
    DB : Oracle 11g 11.2.0.2.0
    Appreciated your help in this.
    Thanks,
    Prakash

    Prakash wrote:
    Hi,
    I did the following
    export PATH=$ORACLE_HOME/bin
    Then
    loadjava  -verbose -force -resolve -oracleresolver -user <Uname>/<Pwd>@<Server>:<Port>:<Sid>  -t  ejb.jar
    But still i m facing the same issue.
    Even the .profile also we have defined : export PATH=$PATH:$ORACLE_HOME/bin/
    Can you please point me what is missing in the above steps i followed.
    Thanks,
    Prakash
    PLEASE use COPY & PASTE so we can see exactly what you do & response from OS/Oracle
    what is "-t" arguement?
    bcm@bcm-laptop:~$ loadjava
    loadjava: Usage: loadjava [-definer] [-encoding encoding] [-force] [-genmissing] [-genmissingjar jar] [-grant grants] [-help] [-nousage] [-noverify] [-oci8] [-order] [-resolve] [-nativecompile] [-resolver resolver] [-schema schema] [-synonym] [-thin] [-tableschema schema] [-user user/password@database] [-verbose] [-edition edition] classes..jars..resources..properties...
    bcm@bcm-laptop:~$

  • How to include another .jar package in an applet jar package

    Hi, I'm using Eclipse to write an applet which needs some other .jar packages to support it. I add them as external jar package in project properties. In eclipse, everything works fine when I compile and run. But I when export the applet to .jar and try to run in browser, it doesnt work.
    I think probably because I didnt export the packages that the applet requires to run. However I cant find a way to export these packages together with the applet to a final .jar file.
    Anyone knows how to solve this ? plz help. thx you in advance

    Hi, I'm using Eclipse to write an applet which needs
    some other .jar packages to support it. I add them as
    external jar package in project properties. In
    eclipse, everything works fine when I compile and
    run. But I when export the applet to .jar and try to
    run in browser, it doesn't work.
    I think probably because I didn't export the packages
    that the applet requires to run. However I cant find
    a way to export these packages together with the
    applet to a final .jar file.
    Anyone knows how to solve this ? plz help. thx you in
    advanceHi all,
    I have been having the same problems too but came to realize that it is quite difficult getting your applet to work in most cases when using external jars. I found out thet you will have to create the directory hierarchy with the necessary imported classes used by your applet. and then create a new jar file that you will use in the codebase tag.
    For example:
    /* Java code snippet */
    import org.apache.XmlRpcClient;
    public MyApplet extends JApplet {
    //..... Rest of your code ......
    }/* End of snippet */
    You would then have to create a the directory structure:
    org
    _apache
    ___xmlrpc
    Then place all the required classes imported from within (Sometimes it is easier to just add all the classes to save time but lose space i.e. larger jar files).
    Execute the jar command (please adjust as needed to your requirements):
    jar cvf any_name.jar *.class org/
    After signing the applet it may solve your problem. Since I'm working with XmlRpc I still have a lot of problems. If anyone has any advice or tips, please share.
    Thank you

  • How to include 3rd party jar package in the native code aiming to generate ane for android

    in my native java code,i need to reference a class in another jar package.Simply to say,i want to make use of member functions of a class of some jar package A in the call function of the native class which have implemented the FREFunction class.To generate the native extension,native java code needs to be compiled to a jar package B.i have tried serveral methods to compile jar package A into B.Howerver my flex project failed to proceed when calling function of package A in the call function of native java code.To be sure of the correctness of the package A and B,i referenced them in a java project with main function and succeeded. at the same time my other call functions of classes impemented FREFunction work well,Then, why did i fail referencing package A?
    in the discussion http://forums.adobe.com/message/3965757, i found the same problem,but i was unable to get a workaround,can anybody give me same help?

    Standard Java does not support jars within other jars.
    Either re-architect your stuff so jars in jars is eliminated, or write a custom classloader that can load from them, or look into 3rd-party solutions, which you can find by searching the net and these forums.

  • Internal JAR package loading???

    Ok I hate having to come to forums and bother other people,
    but hopefully someone will know and be able to aid me in some way...
    It's driving me absolutely insane...
    Alright I've made an application. Basic application that display Hello World
    in a JLabel. That's all. But here the catch, it uses the GUI jar's from
    netbeans. Java Studio 8 uses them, and apparently they dont come
    standard with java, or i wouldnt be here...
    So goal = Somehow JAR and load the required packages with the main application for use with JNLP web start.
    I have tried editing the MANIFEST.MF in many ways to get the
    CLASSPATH to load the JAR packages(Which happen to be:AbsoluteLayout.jar),
    but no luck.... I have also tried using Certificates to be able to externally
    load the package i need, and no luck...
    C:/Web_Server/test.jnlp // Open's Java Program in Web Start
    |---->C:/Web_Server/test.jar // The Main Program
    |---->C:/Web_Server/lib   //External Package Directory(holds AbsoluteLAyout)
    |-------->C:/Web_Server/lib/AbsoluteLayout.jar // the package i need to run test.jarNow get this... It will load successfully if I run the JAR file, but if i try the web start JNLP, it brings back:java.lang.NoClassDefFoundError: org/jdesktop/layout/GroupLayout%GroupThis is because it's not loading the lib/AbsoluteLayout.jar.
    If I delete the lib folder and attempt loading the JNLP with the lib packages in the test.jar, it brings back "noMainClassDefError".
    ------------------ In-Short ------------------
    For those who didnt understand/read the above:
    I Made an Application w/ Java Studio 8.1
    Cannot distribute it to Web using JNLP.
    Because:
    1.) Classpath in Manifest only loads outside test.JAR(and certificates dont help)
    2.) Java is being a cunt.
    Help is GREATLY appreciated, im about to pop a few blood vessels.

    haha i found my own answer on accident while browsing for a different problem....
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4027734
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4027734http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4027734
    WHOOOO!!

  • Solaris 10 x86 package database corruption

    After installing Solaris 10 3/05 s10_74L2a X86 (version as described in /etc/release) I find that the package database file /var/sad/install/contents appears to be corrupt.
    If I do a "pkginfo -l <package name>" command to view the details of a package I get an error like this:
    pkginfo -l SUNWaccr
    pkginfo: ERROR: bad entry read in contents file
    pathname: /usr/apache/tomcat/webapps/tomcat-docs/servletapi/javax/servlet/ServletRequest.html
    problem: unable to read content info
    If I add a package, say from the Companion CD, it to gives the error.
    I cannot remove packages either.
    I have re-installed and tried the pkginfo command immediately - without adding any packages.
    Anybody experienced this?

    what's your DHCP server configuration?
    type dhtadm -P and that will print the configuration of the dhcp table and all your macros.
    On another note, I also have a blade server (3Up CMU-4) that has USB keyboard and mouse, even if the interface is PS/2 (converted internally to USB). Solaris will not recognize the keyboard and mouse when installing or booting, but after the kernel is loaded I can use them OK. I do get the keyboard profile error and I think it is related to the fact that there is no PS/2 k/m enabled. The only way that I found that I could use the mouse in the graphical interface was to use a USB keyboard with a hub and connect a USB mouse to the keyboard, Anybody has any explanation for this behavior?
    Max

  • [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

  • Refreshing package database crashes host machine

    Hi everyone,
    I'm having a problem that I can't figure out here.
    I have Arch installed on my desktop computer. This is using kde networkmanagement to automatically 'share' the Internet connection on wlan0 to eth0. The ethernet connection is to my laptop, and this is running Arch from a live CD.
    I run dhcpcd from the laptop and can connect to the Internet just fine. When I run the installation framework, I can get as far as selecting packages, then when the package database is refreshed, my desktop computer completely freezes, and the database refresh subsequently times out. The same happens when i type '# pacman -Syy', independently of AIF.
    I managed to refresh the package database once and carry on with my installation, then my laptop's battery ran out during the download of packages. Could this be something to do with it?
    It's not possible to plug the laptop directly into the router as it is in an inaccessible location, unfortunately. All the same, I would like to delve deeper into this problem and see whether I have unearthed a bug, or my setup is at fault. Has anybody any suggestions or a workaround?
    Thanks in advance for your help.
    EDIT:
    OK this was a bit of a vague diagnosis from me. Using wget on the laptop results in the same crash, which rules out pacman or any software that's running on the laptop. I've also found out that using wget on http doesn't crash it, whereas ftp does. I will try using a http mirror to install Arch, then report back.
    Last edited by Pernig (2011-11-08 00:06:35)

    Hi,
    PLS-00201 : identifier 'v$INSTANCE' must be declared. Please note that, this package having a procedure that is loading a text files rows to table. Its using UTL_FILE package.
    And directories are used to load the data. I created the directories in the TEST database and create the physical directory in the TEST database host machine. 1. when issuue was raised from pl/sql - have you check the code ?
    2. Have you tested code independently - instead of executing from job. ?
    3. Forget about production system for a while, try to check the pre-requisites required for the things to run. ?
    4. what is the pacakge code dependent on v$instance error - have you checked across ?
    5. Have you tried to debug the code or not ?
    - Pavan Kumar N

  • [SOLVED]Error while trying to synchronizing package databases...

    I got this error when I tried to update my system....:(
    [root@hudsonslair pacman.d]# pacman -Suy
    :: Synchronizing package databases...
    error: failed retrieving file 'current.db.tar.gz' from ftp.gigabit.nu : Connection refused
    error: failed retrieving file 'current.db.tar.gz' from ftp.ds.hj.se : Connection refused
    error: failed retrieving file 'current.db.tar.gz' from ftp.gigabit.nu : Connection refused
    error: failed to synchronize current: Connection refused
    error: failed retrieving file 'extra.db.tar.gz' from ftp.gigabit.nu : Connection refused
    error: failed retrieving file 'extra.db.tar.gz' from ftp.ds.hj.se : Connection refused
    error: failed retrieving file 'extra.db.tar.gz' from ftp.gigabit.nu : Connection refused
    error: failed to synchronize extra: Connection refused
    error: failed retrieving file 'community.db.tar.gz' from ftp.gigabit.nu : Connection refused
    error: failed retrieving file 'community.db.tar.gz' from ftp.ds.hj.se : Connection refused
    error: failed retrieving file 'community.db.tar.gz' from ftp.gigabit.nu : Connection refused
    error: failed to synchronize community: Connection refused
    error: failed to synchronize any databases
    [root@hudsonslair pacman.d]#
    I then tried to use another server in pacman.d but I got the same result. The good news is that I still got internet working ie. can use firefox and surf to different sites
    The server seems to be alive
    [root@hudsonslair pacman.d]# ping ftp.gigabit.nu
    PING ftp.gigabit.nu (81.170.139.233) 56(84) bytes of data.
    64 bytes from h-139-233.A157.cust.bahnhof.se (81.170.139.233): icmp_seq=1 ttl=57 time=1.56 ms
    64 bytes from h-139-233.A157.cust.bahnhof.se (81.170.139.233): icmp_seq=2 ttl=57 time=1.54 ms
    64 bytes from h-139-233.A157.cust.bahnhof.se (81.170.139.233): icmp_seq=3 ttl=57 time=1.65 ms
    Last edited by hudson (2007-08-14 19:22:37)

    Okey, I have tried all norways, finlands, swedens, germans and usa's mirrors and none of them will work for me. I got the exact same error as stated above! I don't think it's healthy for me to countinue and try out another mirror
    I will simply try to reboot my arch and see what will happend..hahaha...this is just crazy!
    Last edited by hudson (2007-08-14 17:32:15)

  • Importing .jar package

    How would I distribute a .jar package without installing it. I need this because the .jar is the mysql driver and I am not sure how to import it into my code (do I have to extract the files inside) or how to set the classpath I wish to use inside my code.
    Thanks in advance for the help.

    javac -jar TheJarFile.jar MainClass.java
    java -jar TheJarFile.jar MainClass
    I think from memory that's how it goes. Should work whether MainClass is in the Jar file or not.
    Cheers,
    Radish21
    (Or it might be javac -jar c:\storage\TheJarFile.jar MainClass.java, depends on where you put it)

  • Sqlserver jar package

    I need the three sqlserver jar package to connect the microSqlServer, the jar name is msbase.jar, mssqlserver.jar, msutil.jar, can you tell me where to download it. thanks a million.

    From Microsoft. Start at http://www.microsoft.com/ and use the search feature.

  • Problems installing jar package

    I've downloaded a couple of java jar packages (Java3d loaders for 3DS). I've put the jar packages in C:\j2sdk1.4.2_05\jre\lib\ext (rather than specify them in the Class Path for now).
    I can compile, no problems, but at run time get a message such as:
    Exception in thread "main" java.lang.NoClassDefinitionFoundError: com/mnstarfire/loaders3d/loader3DS"
    Please help.

    One thing I just tried was to extract the jar file local to the main class folder. After this I found out that the library didn't work with this VM version. So I tried another libarary, which does work.
    Thanks anyhow.

  • What does a package database consist of?

    What does a package database consist of? can any one give me complete description.

    Hi,
    This is Prabhuram Devar,
    A package database consists of:
    /var/sadm/pkg: This is a directory containing one directory entry for every package installed on the system.
    /var/sadm/pkg/<packagename>/pkginfo
    /var/sadm/pkg/<packagename>/save/<patchid>/undo.Z for the backout packages.
    /var/sadm/pkg/<packagename>/save/pspool/<packagename>: A sparse package that is used for non-global zone install.
    /var/sadm/install/contents: This file has an entry for every file in the system that has been installed through a package. Entries are added or removed automatically using the binaries installf and removef.

Maybe you are looking for

  • Is there a way to open a partitioned drive in "native" OS 9 w/out Classic

    So there is no way to "insulate" a partitioned OS 9.04 drive from opening Classic when using a non-OS X app? I had read that one of the reasons to partition is to be able to set up distinct OS environments in which to run apps otherwise not compatibl

  • Checking Transfer Speed

    I am using a Macpro to synch files with an AppleTV and to share files with my Macbook Pro and audio with an Airport Express. Where can I check the transfer speed when I send files from my Macbook Pro to my Macpro or the other way around or the transf

  • Unexpected Quit at every secure site

    Ever since I upgraded to 10.4.7, including Safari 2.0.4 (419.3), I cannot access a secure site without an unexpected quit. This is unfortunately true for EVERY secure site I've tried. I think there's a simple solution, but so far, trashing com.apple.

  • How to calculate multiple Drop Shippers in one shopping Cart/Basket?

    Hi all, We would like to know if it is possible for BC to calculate each drop shippers product weight individually instead of just the weight of the products in the shopping cart? Here is the example: Say the shipping is set at £3.75 for 0-500g Drop

  • Syncing controls for video and audio, with Closed Caption

    Hello, First, I have Closed Caption and audio within my slide (no audio in video, because I couldn't use Closed Caption then) but now the audio can be turned on/off from project control bar while video continues to play. I tried to add a control bar