Error in default packages

I have installed Oracle10g rel 10.1.0 on TRU64 Digital Alpha server. While exporting data from the same i am getting following error...
. exporting post-schema procedural objects and actions
EXP-00008: ORACLE error 4063 encountered
ORA-04063: package body "DMSYS.DBMS_DM_UTIL" has errors
ORA-06508: PL/SQL: could not find program unit being called
ORA-06512: at "DMSYS.DBMS_DM_MODEL_EXP", line 89
ORA-06512: at "DMSYS.DBMS_DM_MODEL_EXP", line 763
ORA-06512: at line 1
EXP-00083: The previous problem occurred when calling DMSYS.DBMS_DM_MODEL_EXP.schema_info_exp
. exporting statistics
Export terminated successfully with warnings.
The error suggest that the package is having some problem. How should i repair the same???? I have tries re-installing Data Mining option and Export/Import option, but still the problem persists...
Thanx in advance...

Try to compile the object, if you get an error in compiling do the following to recreate the package:
SQL> connect dmsys/dmsys -- Unlock the account 1st if it is locked.
SQL> @$ORACLE_HOME/dm/admin/dmutil.plb
Re-run the export.

Similar Messages

  • Can't find default package `javax.imageio' error

    We are running jdk "1.4.2_05-b04" on linux. And I have a simple program that is importing package javax.imageio. But the compiler is not finding it. Now since this is a j2ee envrionment I am using ANT to compile. Here is the error I am getting:
    --- BEGIN ERROR TEXT---- [javac] /home/sroshan/samcvs/psimc/src/com/psi/psimc/tasks/servlets/StockGraphProducer.java:28:
    error: Can't find default package `javax.imageio'.
    Check the CLASSPATH environment variable and the access to the archives
    [javac] 1 error
    --- END ERROR TEXT----
    Here are my questions:
    1-Any one has any idea why this package may be in a special location in my jdk path that ANT can not find?
    2- What jar file would be containing the javax.imageio package?
    Since at list I could see if that jar may be included into my ANT classpath or not.
    Any help is appreciated
    Regards
    Siamak

    Hi,
    hey..I am also getting the same error. Please let me know what do you mean by path was so long??
    Are you talking about system Path variable or the installation path?I believe there is no restriction on the system path length, just search for cl.exe and make sure it is included in the system PATH.
    Regards,
    Hussein

  • Trying to page import directive in a JSP  access a class in default package

    I am trying to import a class the is in my default package directory for Tomcat 4.1.18 (context-root\web-inf\classes\*.java). I am getting the following error
    This is error using Tomcat 4.1.18
    org.apache.jasper.JasperException:Unable to compile class for JSP
    C:\Program Files\Tomcat4.1\work\Standalone\localhost\csc297\HTML\SearchByName_jsp.java:9: '.' expected
    import Product;
    C:\Program Files\Tomcat4.1\work\Standalone\localhost\csc297\HTML\SearchByName_jsp.java:10: '.' expected
    import Category;
    This is error using Tomcat 4.0.6
    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    C:\forte4j\tomcat401\work\localhost\C_3A_5Cforte4j_5Ctomcat401_5Cwebapps_5Ccsc297\HTML\SearchByName$jsp.java:5: Class Product not found in import.
    import Product;
    ^
    C:\forte4j\tomcat401\work\localhost\C_3A_5Cforte4j_5Ctomcat401_5Cwebapps_5Ccsc297\HTML\SearchByName$jsp.java:6: Class Category not found in import.
    import Category;
    Here is snippet of code from my JSP:
    <%@ page import= "java.util.*"%>
    <%@ page import= "java.text.DecimalFormat"%>
    <%@ page import="Product"%>
    <%@ page import="Category"%>
    Remember these classes are in my default package of my context-root
    Any ideas would greatly appreciated

    Weird error. Never seen this one before.
    Try packaging your classes eg:package myClasses;and import them:<%@page import="myClasses.*"%>Should fix the problem.
    Anthony

  • Importing classes from default package

    hey all,
    I've just started a new job, and find myself having to use a library that is written in the default package. At the moment, this is forcing me to put my classes in the default package whenever I want to use this library.
    using a line like:
    import RowBean;
    I get the following compiler error:
        [javac] C:\work\coyote\src\java\com\sok\coyote\Grievance\GrievanceActionServlet.java:8: '.' expected
        [javac] import RowBean;I've tried classic,modern and jikes - all with the same error.
    Eclipse seems to compile this happily, but I've been unable to find what it does to compile it.
    any ideas?
    cheers
    dim

    This works for me in 1.3.1_07
    DefaultPackage
    public class UseMe
         public static final String test = "Yes";
    }Package = fun
    package fun;
    import UseMe;
    public class Fun
         public static void main( String[] args )
              System.out.println( UseMe.test );
    }

  • Need to use default package for JNI code?

    Hi,
    I don't have much experience with JNI code, so excuse me if I make a silly mistake.
    I have a set of DLLs to interface with Microsoft native speech code ("Microsoft Sam") -- a GPL library called Quadmore. Quadmore has some sample Java code to work with the libraries, all of which they put in the default package (no package). If I move their code to a named package, it breaks. The Java code is able to load th libraries, but can't find any of the methods.
    Looking at the source for their DLLs (though I don't speak C++), the method names are things like
    JNIEXPORT jboolean JNICALL Java_QuadmoreTTS_SpeakDarling(JNIEnv *env,jobject obj,jstring strInput)As far as I understand, this implies that the QuadmoreTTS.class that calls the code must be in the default package, as otherwise the method name needs to be prepended with a package name.
    If that's so, then there's no way I can use the code as-is, right? Naturally, the rest of my program is in named packages, and I can't import any class that is in the default package, right? I've tried placing all their code in a jar and adding the jar to my classpath, but I still can't import any of their classes as they are in the default package.
    Is the only solution to re-compile all their C/C++ code to let it use packages? Am I being dumb and missing something? I'm pretty sure other people have used Quadmore before, so I can't believe that they've never had this problem before.
    Any suggestions greatly appreciated!
    Sam

    C/C++ functions in JNI must conform to the prototypes produced by running the javah compiler against the class file with native methods in it. So if you move the class to another package, the prototypes change. If you doun't change the compiled C coudes to suit, you will get undefined method errors when you load the dll as the JVM won't be able to match the native methods to the methods in the dll (it will call WinLoadLibrary() and WinLoadProcAddress() or somesuch under Windows).

  • Netbeans - refactoring from in a package to the default package

    Hello,
    I have a problem, I have some JNI code (two .dll's) and a wrapper that connects my java program to an external USB board.
    I didn't write the original code, that was done by Mike Peter and the dlls have been compiled so that I can call the JNI functions only in the default package. Whenever I try to put the code in a package of its own, the JNIs stop working. So my problem now is that I want to access this interface class from my code that is in a package.
    I don't know how to import the code as a library into my programs package so perhaps a solution might be to de-package my program code so that it can access Mike Peters code.
    Trouble is I have used the netbeans GUI editor that does not let me access all the code and I dont know how to refactor the package from being in one to not being in one.
    removing the package declartion from my code manually causes lots of errors.
    Any ideas?
    Mike Peters code downloadable here:
    http://www.re-applications.be/downloads/J-K8055-Wrapper.zip
    the usb_interface class has no constructor and is not in a package, how do I go about making it a library and importing it?
    I'd greatly appreciate it if anyone can help, if more details are needed I can try to provide them but I didn't think it was worth putting up all my code here as there is no real problem with it, just an access issue.

    What I really need to do is find a way to import a class from the default package.
    I was led to believe that classes in the default package should be readily accessible, however my compiler says otherwise when my code is in a package and the class I want to access can only be accessed when my code is not in a package. This is really frustrating because the GUI editor doesn't like it when the GUI is not in a package... so I either lose and my USB interface doesn't work or I lose and my GUI doesn't work.
    help!

  • Everything 'exists in filesystem' Errors occurred, no packages were up

    Something like 260 package updates failed to same error.
    Really do not want to use --force
    Any ideas?
    edObject/EmbeddedObject.odt exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/EmbeddedObject.xcu exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObject.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/EmbedDocument/EmbeddedObject/OwnEmbeddedObjectFactory.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/BuildMinimalComponent.xml exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/MinimalComponent.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/MinimalComponent.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/MinimalComponent.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/MinimalComponent/TestMinimalComponent.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/PropTest.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/PropTest.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/PropertySet/PropertySet.odt exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/CalcAddins.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/CalcAddins.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/CalcAddins.ods exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/ChartTypeChange.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/EuroAdaption.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/SCalc.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Spreadsheet/XCalcAddins.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/BookmarkInsertion.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/GraphicsInserter.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/HardFormatting.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/SWriter.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/StyleCreation.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/StyleInitialization.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/TextDocumentStructure.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/TextReplace.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/WriterSelector.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/Text/oo_smiley.gif exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.components exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.java exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/ToDo.ods exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/java/ToDo/XToDo.idl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/CalcWindowState.xcu exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/Factory.xcu exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/META-INF/manifest.xml exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/Makefile exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/description.xml exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/readme exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolPanelPocBasic/Module1.xba exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolPanelPocBasic/dialog.xlb exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolPanelPocBasic/script.xlb exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolpanel.component exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolpanel.py exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/examples/python/toolpanel/toolpanels/poc.xdl exists in filesystem
    libreoffice-sdk-doc: /usr/lib/libreoffice/sdk/index.html exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libhwplo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/liblwpftlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libmswordlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libmsworkslo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libswdlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libswuilo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libt602filterlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libwpftlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/program/libwriterfilterlo.so exists in filesystem
    libreoffice-writer: /usr/lib/libreoffice/share/registry/writer.xcd exists in filesystem
    libxft: /usr/lib/libXft.so.2.3.0 exists in filesystem
    linux-firmware: /lib/firmware/bnx2x/bnx2x-e1-7.2.16.0.fw exists in filesystem
    linux-firmware: /lib/firmware/bnx2x/bnx2x-e1h-7.2.16.0.fw exists in filesystem
    linux-firmware: /lib/firmware/bnx2x/bnx2x-e2-7.2.16.0.fw exists in filesystem
    linux-firmware: /lib/firmware/brcm/brcmfmac43236b.bin exists in filesystem
    linux-firmware: /lib/firmware/brcm/brcmfmac4329.bin exists in filesystem
    linux-firmware: /lib/firmware/brcm/brcmfmac4330.bin exists in filesystem
    linux-firmware: /lib/firmware/cxgb3/t3fw-7.12.0.bin exists in filesystem
    linux-firmware: /lib/firmware/cxgb4/t4fw-1.4.16.0.bin exists in filesystem
    linux-firmware: /lib/firmware/usbdux/usbduxsigma_firmware.asm exists in filesystem
    linux-firmware: /lib/firmware/usbduxsigma_firmware.bin exists in filesystem
    mkinitcpio-busybox: /usr/lib/initcpio/busybox exists in filesystem
    mkinitcpio: /usr/lib/initcpio/functions exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/btrfs exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/consolefont exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/keymap exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/memdisk exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/net exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/resume exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/shutdown exists in filesystem
    mkinitcpio: /usr/lib/initcpio/hooks/sleep exists in filesystem
    mkinitcpio: /usr/lib/initcpio/init exists in filesystem
    mkinitcpio: /usr/lib/initcpio/init_functions exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/autodetect exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/base exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/btrfs exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/consolefont exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/filesystems exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/fsck exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/fw exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/ide exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/keymap exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/memdisk exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/net exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/pata exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/pcmcia exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/resume exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/sata exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/scsi exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/shutdown exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/sleep exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/usb exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/usbinput exists in filesystem
    mkinitcpio: /usr/lib/initcpio/install/virtio exists in filesystem
    mkinitcpio: /usr/lib/initcpio/shutdown exists in filesystem
    mkinitcpio: /usr/lib/initcpio/udev/01-memdisk.rules exists in filesystem
    man-db: /usr/lib/man-db/libman-2.6.1.so exists in filesystem
    man-db: /usr/lib/man-db/libmandb-2.6.1.so exists in filesystem
    man-pages: /usr/share/man/man1/getent.1.gz exists in filesystem
    man-pages: /usr/share/man/man2/sendmmsg.2.gz exists in filesystem
    mesa: /usr/include/xa_composite.h exists in filesystem
    mesa: /usr/include/xa_context.h exists in filesystem
    mesa: /usr/include/xa_tracker.h exists in filesystem
    mesa: /usr/lib/libGLU.so.1.3.08000 exists in filesystem
    mesa: /usr/lib/libxatracker.so exists in filesystem
    mesa: /usr/lib/libxatracker.so.1 exists in filesystem
    mesa: /usr/lib/libxatracker.so.1.0.0 exists in filesystem
    mesa: /usr/lib/pkgconfig/xatracker.pc exists in filesystem
    mx: /usr/lib/libmx-1.0.so.2.401.0 exists in filesystem
    poppler-glib: /usr/share/gtk-doc/html/poppler/api-index-0-18.html exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R110714.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R110714WhiteBacking.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R110903.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R111204.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/reflective/R111204WhiteBacking.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/A111011.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/A120115.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/E111007.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/E120104.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/F111224.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/N111122.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/N111125.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/N111203.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/V111010.it8 exists in filesystem
    shared-color-targets: /usr/share/color/targets/wolf_faust/transmissive/V120101.it8 exists in filesystem
    subversion: /usr/lib/httpd/modules/mod_dontdothat.so exists in filesystem
    thunderbird: /usr/lib/thunderbird/isp/Bogofilter.sfd exists in filesystem
    thunderbird: /usr/lib/thunderbird/isp/DSPAM.sfd exists in filesystem
    thunderbird: /usr/lib/thunderbird/isp/POPFile.sfd exists in filesystem
    libkate: /usr/bin/KateDJ exists in filesystem
    libkate: /usr/bin/katalyzer exists in filesystem
    libkate: /usr/bin/katedec exists in filesystem
    libkate: /usr/bin/kateenc exists in filesystem
    libkate: /usr/include/kate/kate.h exists in filesystem
    libkate: /usr/include/kate/kate_config.h exists in filesystem
    libkate: /usr/include/kate/oggkate.h exists in filesystem
    libkate: /usr/lib/libkate.so exists in filesystem
    libkate: /usr/lib/libkate.so.1 exists in filesystem
    libkate: /usr/lib/libkate.so.1.3.0 exists in filesystem
    libkate: /usr/lib/liboggkate.so exists in filesystem
    libkate: /usr/lib/liboggkate.so.1 exists in filesystem
    libkate: /usr/lib/liboggkate.so.1.2.2 exists in filesystem
    libkate: /usr/lib/pkgconfig/kate.pc exists in filesystem
    libkate: /usr/lib/pkgconfig/oggkate.pc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/__init__.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/__init__.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/__init__.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/constants.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/constants.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/constants.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/demuxer.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/demuxer.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/demuxer.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/finder.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/finder.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/finder.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/muxer.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/muxer.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/muxer.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/options.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/options.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/options.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tester.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tester.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tester.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tools.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tools.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/tools.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_editor.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_editor.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_editor.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_main.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_main.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_main.pyo exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_options.py exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_options.pyc exists in filesystem
    libkate: /usr/lib/python2.7/site-packages/kdj/ui_options.pyo exists in filesystem
    libkate: /usr/share/doc/libkate/AUTHORS exists in filesystem
    libkate: /usr/share/doc/libkate/COPYING exists in filesystem
    libkate: /usr/share/doc/libkate/ChangeLog exists in filesystem
    libkate: /usr/share/doc/libkate/README exists in filesystem
    libkate: /usr/share/doc/libkate/THANKS exists in filesystem
    libkate: /usr/share/doc/libkate/html/Format.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/HOWTO.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/Support.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/annotated.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/categories.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/classes.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/config_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/config_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/decoding_8c-example.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/doxygen.css exists in filesystem
    libkate: /usr/share/doc/libkate/html/doxygen.png exists in filesystem
    libkate: /usr/share/doc/libkate/html/encoding_8c-example.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/errors.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/examples.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/files.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x00.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x01.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x7f.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x80.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x81.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x82.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x83.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x84.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x85.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x86.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x87.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_0x88.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_32v.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_bitmap.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_color.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_curve.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_font_range.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_fp.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_metadata.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_motion.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_palette.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_region.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_rle.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_style.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/format_warp.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/functions.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/functions_vars.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x63.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x64.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x65.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x66.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x67.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x68.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x69.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x6c.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x6d.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x6f.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x70.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x72.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x73.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x74.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x75.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x76.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_0x77.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_defs.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_enum.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_eval.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/globals_func.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/granule.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__comments.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__decoding.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__encoding.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__font.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__granule.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__high.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__info.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__metadata.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__misc.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__ogg__decode.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__ogg__encode.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__packet.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__text.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__tracker.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/group__version.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/high_8c-example.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/index.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8h.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__bitwise_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__bitwise_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__comment_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__config_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__config_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__decode_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__decode__state_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__decode__state_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__encode_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__encode__state_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__encode__state_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__event_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__font_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__fp_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__fp_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__granule_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__high_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__info_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__internal_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__motion_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__ogg_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__packet_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__rle_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__rle_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__text_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/kate__tracker_8c_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/modules.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/oggkate_8h-source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/oggkate_8h.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/oggkate_8h_source.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/pages.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__active__event.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__bitmap.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__color.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__comment.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__curve.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__decode__state.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__encode__state.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__event.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__event__timing.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__font__mapping.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__font__range.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__info.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__memory__guard.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__motion.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__pack__buffer.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__packet.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__palette.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__region.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__state.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__style.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__tracker.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/structkate__tracker__internal.html exists in filesystem
    libkate: /usr/share/doc/libkate/html/tab_b.gif exists in filesystem
    libkate: /usr/share/doc/libkate/html/tab_l.gif exists in filesystem
    libkate: /usr/share/doc/libkate/html/tab_r.gif exists in filesystem
    libkate: /usr/share/doc/libkate/html/tabs.css exists in filesystem
    libkate: /usr/share/licenses/libkate/LICENSE exists in filesystem
    libkate: /usr/share/man/man1/KateDJ.1.gz exists in filesystem
    libkate: /usr/share/man/man1/katalyzer.1.gz exists in filesystem
    libkate: /usr/share/man/man1/katedec.1.gz exists in filesystem
    libkate: /usr/share/man/man1/kateenc.1.gz exists in filesystem
    libtiger: /usr/include/tiger/tiger.h exists in filesystem
    libtiger: /usr/include/tiger/tiger_config.h exists in filesystem
    libtiger: /usr/lib/libtiger.so exists in filesystem
    libtiger: /usr/lib/libtiger.so.5 exists in filesystem
    libtiger: /usr/lib/libtiger.so.5.0.2 exists in filesystem
    libtiger: /usr/lib/pkgconfig/tiger.pc exists in filesystem
    vlc: /usr/bin/svlc exists in filesystem
    vlc: /usr/lib/vlc/plugins/access/libaccess_gnomevfs_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/access/libvcdx_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/audio_output/libportaudio_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/codec/libkate_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/codec/libtwolame_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/demux/libgme_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/gui/libskins2_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/notify/libnotify_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/notify/libxosd_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/text_renderer/libsvg_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/video_output/libaa_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/visualization/libgoom_plugin.so exists in filesystem
    vlc: /usr/lib/vlc/plugins/visualization/libprojectm_plugin.so exists in filesystem
    vlc: /usr/share/vlc/skins2/default.vlt exists in filesystem
    vlc: /usr/share/vlc/skins2/fonts/FreeSans.ttf exists in filesystem
    vlc: /usr/share/vlc/skins2/fonts/FreeSansBold.ttf exists in filesystem
    vlc: /usr/share/vlc/skins2/skin.catalog exists in filesystem
    vlc: /usr/share/vlc/skins2/skin.dtd exists in filesystem
    vlc: /usr/share/vlc/skins2/winamp2.xml exists in filesystem
    mtdev: /usr/bin/mtdev-test exists in filesystem
    mtdev: /usr/include/mtdev-mapping.h exists in filesystem
    mtdev: /usr/include/mtdev-plumbing.h exists in filesystem
    mtdev: /usr/include/mtdev.h exists in filesystem
    mtdev: /usr/lib/libmtdev.so exists in filesystem
    mtdev: /usr/lib/libmtdev.so.1 exists in filesystem
    mtdev: /usr/lib/libmtdev.so.1.0.0 exists in filesystem
    mtdev: /usr/lib/pkgconfig/mtdev.pc exists in filesystem
    mtdev: /usr/share/licenses/mtdev/LICENSE exists in filesystem
    Errors occurred, no packages were upgraded.
    Here is the 299 pkg updates
    root@clc ~]# pacman -Syu
    :: Synchronizing package databases...
    core 103.4 KiB 131K/s 00:01 [######################] 100%
    extra 1382.7 KiB 334K/s 00:04 [######################] 100%
    community 1639.9 KiB 328K/s 00:05 [######################] 100%
    :: Starting full system upgrade...
    :: Replace gnupg2 with core/gnupg? [Y/n] y
    resolving dependencies...
    warning: dependency cycle detected:
    warning: udev will be installed before its util-linux dependency
    warning: dependency cycle detected:
    warning: rhino will be installed before its jre7-openjdk-headless dependency
    looking for inter-conflicts...
    Targets (299): akonadi-1.7.1-1 avahi-0.6.31-1 bash-4.2.024-2 binutils-2.22-5
    bluez-4.99-1 boost-libs-1.49.0-1.1 busybox-1.19.4-1
    ca-certificates-java-20120225-1 cifs-utils-5.3-2
    colord-0.1.17-1 coreutils-8.16-2 curl-7.25.0-1
    damageproto-1.2.1-2 device-mapper-2.02.95-1 dhcpcd-5.5.6-1
    dmxproto-2.3.1-2 dnsutils-9.9.0-1 docbook-xml-4.5-5
    e2fsprogs-1.42.1-1 ekiga-3.3.2-3 exempi-2.2.0-1 expat-2.1.0-1
    ffmpeg-20120317-1 fftw-3.3.1-1 file-5.11-1 firefox-11.0-2
    fixesproto-5.0-2 flashplugin-11.2.202.228-1 fluidsynth-1.1.5-2
    fontconfig-2.8.0-2 fontsproto-2.1.2-1 freetype2-2.4.9-2
    gcc-4.7.0-3 gcc-libs-4.7.0-3 gconf-editor-3.0.0-2
    giflib-4.1.6-5 git-1.7.9.6-1 glibc-2.15-10 glproto-1.4.15-1
    gmime-2.6.7-1 gnome-desktop-1:3.2.1-1 gnome-mime-data-2.18.0-6
    gnupg-2.0.19-1 gnupg2-2.0.18-1 [removal] gnutls-3.0.17-1
    gpgme-1.3.1-4 grep-2.11-2 gstreamer0.10-0.10.36-1
    gstreamer0.10-bad-0.10.23-1 gstreamer0.10-base-0.10.36-1
    gstreamer0.10-base-plugins-0.10.36-1
    gstreamer0.10-good-0.10.31-1
    gstreamer0.10-good-plugins-0.10.31-1
    gtk-update-icon-cache-2.24.10-3 gtk2-2.24.10-3 gtk3-3.2.3-3
    guile-1.8.8-2 gvfs-1.10.1-3 gvfs-obexftp-1.10.1-3
    gvim-7.3.475-1 hspell-1.1-2 hsqldb-java-1:1.8.0.10-2
    initscripts-2012.03.2-1 inputproto-2.2-1 intel-dri-8.0.2-1
    iproute2-3.2.0-3 jdk7-openjdk-7.b147_2.1-3
    jre7-openjdk-7.b147_2.1-3 jre7-openjdk-headless-7.b147_2.1-3
    kactivities-4.8.2-1 kbproto-1.0.6-1 kde-l10n-en_gb-4.8.2-1
    kde-wallpapers-4.8.2-1 kdebase-dolphin-4.8.2-1
    kdebase-katepart-4.8.2-1 kdebase-kdepasswd-4.8.2-1
    kdebase-kdialog-4.8.2-1 kdebase-keditbookmarks-4.8.2-1
    kdebase-kfind-4.8.2-1 kdebase-konq-plugins-4.8.2-1
    kdebase-konqueror-4.8.2-1 kdebase-konsole-4.8.2-2
    kdebase-kwrite-4.8.2-1 kdebase-lib-4.8.2-1
    kdebase-plasma-4.8.2-1 kdebase-runtime-4.8.2-1
    kdebase-workspace-4.8.2-2 kdelibs-4.8.2-1
    kdepim-runtime-4.8.2-2 kdepimlibs-4.8.2-1
    khrplatform-devel-8.0.2-1 kmod-7-1 krb5-1.10.1-2
    lame-3.99.5-1 libarchive-3.0.4-1 libbonobo-2.32.1-2
    libcdio-0.83-1 libcroco-0.6.4-1 libdmx-1.1.2-1
    libdrm-2.4.33-1 libedit-20120311_3.0-1 libegl-8.0.2-1
    libevent-2.0.17-1 libexif-0.6.20-2 libfontenc-1.1.1-1
    libgl-8.0.2-1 libglade-2.6.4-3 libglapi-8.0.2-1
    libgles-8.0.2-1 libgnome-2.32.1-3 libgnome-data-2.32.1-3
    libgphoto2-2.4.13-1 libice-1.0.8-1 libiodbc-3.52.8-1
    libkate-0.4.1-3 libldap-2.4.30-1 libltdl-2.4.2-5
    libmtp-1.1.2-1 libmusicbrainz3-3.0.3-2 libmysqlclient-5.5.22-1
    libnl-3.2.7-1 libnotify-0.7.5-1 libpcap-1.2.1-2
    libpciaccess-0.13-1 libpng-1.5.10-1 libpst-0.6.54-1
    libreoffice-base-3.5.1-1 libreoffice-calc-3.5.1-1
    libreoffice-common-3.5.1-1 libreoffice-draw-3.5.1-1
    libreoffice-en-US-3.5.1-1 libreoffice-gnome-3.5.1-1
    libreoffice-impress-3.5.1-1 libreoffice-kde4-3.5.1-1
    libreoffice-math-3.5.1-1 libreoffice-sdk-3.5.1-1
    libreoffice-sdk-doc-3.5.1-1 libreoffice-writer-3.5.1-1
    libsigc++-2.2.10-2 libsm-1.2.1-1 libsocialweb-0.25.20-0
    libspectre-0.2.6-3 libtasn1-2.12-1 libtextcat-2.2-9
    libtiff-4.0.1-1 libtiger-0.3.4-3 libtool-2.4.2-5
    libupnp-1.6.16-1 libwbclient-3.6.3-4 libwpd-0.9.2-2
    libwps-0.2.2-2 libx11-1.4.99.901-1 libxau-1.0.7-1
    libxaw-1.0.10-1 libxcb-1.8.1-1 libxcomposite-0.4.3-2
    libxcursor-1.1.13-1 libxdmcp-1.1.1-1 libxext-1.3.1-1
    libxfixes-5.0-2 libxfont-1.4.5-1 libxft-2.3.0-2 libxi-1.6.0-1
    libxinerama-1.1.2-1 libxkbfile-1.0.8-1 libxklavier-5.1-2
    libxmu-1.1.1-1 libxpm-3.5.10-1 libxrender-0.9.7-1
    libxres-1.0.6-1 libxss-1.2.2-1 libxt-1.1.3-1 libxtst-1.2.1-1
    libxv-1.0.7-1 libxvmc-1.0.7-1 libxxf86dga-1.1.3-1
    libxxf86vm-1.1.2-1 libyaml-0.1.4-2 linux-3.2.13-1
    linux-api-headers-3.3-1 linux-docs-3.2.13-1
    linux-firmware-20120227-1 linux-headers-3.2.13-1
    lm_sensors-3.3.2-1 lpsolve-5.5.2.0-2 lua-5.1.5-1
    lvm2-2.02.95-1 man-db-2.6.1-1 man-pages-3.37-1 mesa-8.0.2-1
    mkinitcpio-0.8.5-1 mkinitcpio-busybox-1.19.4-2 mpfr-3.1.0.p7-1
    mtdev-1.1.2-1 mx-1.4.3-1 mysql-5.5.22-1
    mysql-clients-5.5.22-1 neon-0.29.6-4 net-snmp-5.7.1-2
    networkmanager-0.9.2.0-3 nfs-utils-1.2.5-2
    notification-daemon-0.7.4-1 nouveau-dri-8.0.2-1 nspr-4.9-1
    nss-3.13.3-1 opencore-amr-0.1.3-1 openssh-5.9p1-8
    openssl-1.0.1-2 orbit2-2.14.19-2 oxygen-icons-4.8.2-1
    p11-kit-0.12-1 parted-3.1-1 pcmciautils-018-2
    perl-xml-parser-2.41-2 perl-xml-simple-2.18-4 poppler-0.18.4-1
    poppler-glib-0.18.4-1 ppl-0.12-1 psmisc-22.16-1
    ptlib-2.10.2-2 python-pexpect-2.3-6 qrencode-3.3.0-1
    qt-4.8.1-1 randrproto-1.3.2-2 raptor-2.0.7-1 recode-3.6-7
    recordproto-1.14.2-1 renderproto-0.11.1-2 rhino-1.7R3-2
    ruby-1.9.3_p125-3 sane-1.0.22-7 scrnsaverproto-1.2.2-1
    sdl_ttf-2.0.11-2 shadow-4.1.5-4 shared-color-targets-0.1.1-1
    smbclient-3.6.3-4 soprano-2.7.5-1 sound-juicer-2.32.1-2
    sqlite3-3.7.11-1 subversion-1.7.4-1 sudo-1.8.4.p4-1
    syslog-ng-3.3.4-4 taglib-1.7.1-1 thunderbird-11.0.1-1
    ttf-dejavu-2.33-2 tzdata-2012b-3 udev-181-5 udisks-1.0.4-2
    usbutils-005-1 util-linux-2.21-6 videoproto-2.3.1-2
    vim-runtime-7.3.475-1 vlc-2.0.1-1 whois-5.0.15-1
    wpa_actiond-1.2-1 wpa_supplicant-0.7.3-5 xbitmaps-1.1.1-2
    xcb-proto-1.7.1-1 xextproto-7.2.1-1 xf86-input-evdev-2.7.0-2
    xf86-input-synaptics-1.5.99.902-1 xf86-video-intel-2.18.0-1
    xf86-video-nouveau-0.0.16_git20120210-1
    xf86vidmodeproto-2.3.1-2 xineramaproto-1.2.1-2
    xorg-bdftopcf-1.0.3-2 xorg-font-util-1.3.0-1
    xorg-font-utils-7.6-3 xorg-fonts-encodings-1.0.4-3
    xorg-luit-1.1.1-1 xorg-server-1.12.0.901-1
    xorg-server-common-1.12.0.901-1 xorg-server-utils-7.6-3
    xorg-setxkbmap-1.3.0-1 xorg-utils-7.6-8 xorg-xauth-1.0.7-1
    xorg-xbacklight-1.1.2-3 xorg-xcursorgen-1.0.5-1
    xorg-xdriinfo-1.0.4-3 xorg-xev-1.2.0-1 xorg-xgamma-1.0.5-1
    xorg-xhost-1.0.5-1 xorg-xinput-1.5.99.1-1 xorg-xkbcomp-1.2.4-1
    xorg-xkbevd-1.1.3-1 xorg-xkbutils-1.0.3-3 xorg-xkill-1.0.3-3
    xorg-xlsatoms-1.1.1-1 xorg-xlsclients-1.1.2-2
    xorg-xmodmap-1.0.6-1 xorg-xpr-1.0.4-1 xorg-xrdb-1.0.9-2
    xorg-xrefresh-1.0.4-3 xorg-xsetroot-1.1.0-3
    xorg-xvinfo-1.1.1-3 xorg-xwd-1.0.5-2 xorg-xwud-1.0.4-1
    xproto-7.0.23-1 xz-5.0.3-2
    Total Download Size: 160.85 MiB
    Total Installed Size: 2291.87 MiB
    Net Upgrade Size: 101.97 MiB
    Proceed with installation? [Y/n] y
    Last edited by killnine (2012-04-05 14:17:33)

    karol wrote:
    You can check if the 'files' file has the files that are causing errors, e.g.
    [karol@black ~]$ grep "usr/lib/httpd/modules/mod_dontdothat.so" $(find /var/lib/pacman/local -name "subversion-*")/files
    usr/lib/httpd/modules/mod_dontdothat.so
    but I think there's something else going on.
    I've noticed all of the errors concern files from /usr. Do you have some special setup, like a separate /usr partition?
    [root@clc ~]# fdisk -l
    Disk /dev/sda: 750.2 GB, 750156374016 bytes
    255 heads, 63 sectors/track, 91201 cylinders, total 1465149168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disk identifier: 0x07f2837e
    Device Boot Start End Blocks Id System
    /dev/sda1 63 208844 104391 de Dell Utility
    Partition 1 does not start on physical sector boundary.
    /dev/sda2 * 212992 41172991 20480000 7 HPFS/NTFS/exFAT
    /dev/sda3 41172992 1255431919 607129464 7 HPFS/NTFS/exFAT
    /dev/sda4 1255431920 1451440984 98004532+ 5 Extended
    /dev/sda5 1255431983 1287433399 16000708+ 83 Linux
    Partition 5 does not start on physical sector boundary.
    /dev/sda6 1287433463 1303434139 8000338+ 83 Linux
    Partition 6 does not start on physical sector boundary.
    /dev/sda7 1303434203 1451440984 74003391 83 Linux
    Partition 7 does not start on physical sector boundary.
    [root@clc ~]# mount
    /dev/sda5 on / type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
    proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
    sys on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
    run on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
    /dev on /dev type devtmpfs (rw,nosuid,relatime,size=4033576k,nr_inodes=1008394,mode=755)
    devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
    shm on /dev/shm type tmpfs (rw,nosuid,nodev,relatime)
    tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
    /dev/sda7 on /home type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
    /dev/sda6 on /var type ext4 (rw,relatime,user_xattr,acl,barrier=1,data=ordered)
    gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,relatime,user_id=0,group_id=0)
    [root@clc ~]# cat /etc/fstab
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    LABEL=home /home ext4 defaults 0 1
    LABEL=root / ext4 defaults 0 1
    LABEL=var /var ext4 defaults 0 1

  • Compiling java package class referring a default package class.

    I am trying to compile a java class having a package defination referring a java class with a default package.
    The code for the default package class is .
    public class Test{.
    public static void main(String[] args){
    System.out.println("Hello World!");
    This class compiles fine.
    I have another class called PackJava, whose code is :
    package test;
    import Test;
    public class PackJava{
    public static void main(String[] args){
    Test test = new Test();
    System.out.println("Hello World!");
    I have Test file in the windows path
    D:\development\packagetest\example
    and the PackJava java file in the path
    D:\development\packagetest\example\test
    I have set the CLASSPATH environment varibale as
    D:\development\packagetest\example;.
    When I try to compile the PackJava from the
    D:\development\packagetest\example path giving the command as
    javac -classpath . test\PackJava.java
    or
    javac -classpath %CLASSPATH% test\PackJava.java
    it gives me error,
    Do any of you have an idea of the parameter i should pass
    to the -classpath option
    Thanks

    There is a way around all this. The classes in the default packages need to implement an interface with the methods require. The interface can be in any package you want ie. com.work.around.interf.MyInterface1. Next, make this interface available in a Singleton. - The only catch here is that, the main method must reside in default package as well. And o, on start of main, instantiate the class you want and put it in the singleton. There after, you may refer to it from the singleton.
    Enjoy.

  • Implemenet/Extend interface/class in default package

    Filename: DeaultInterface.java
    public interface DefaultInterface {
        // Abstract Methods...
    Filename: ConcreteClass.java
    package com.company;
    import DefaultInterface;
    public class ConcreteClass implements DefaultInterface {
        // Implementation of Abstract Methods...
    }When I compile above java code it gives error "cannot find symbol. symbol: class DefaultInterface".
    Can anyone explain why can't we implement the interface/extend the class in default package(no package)?
    Edited by: 974531 on Dec 2, 2012 11:07 PM

    >
    When I compile above java code it gives error "cannot find symbol. symbol: class DefaultInterface".
    Can anyone explain why can't we implement the interface/extend the class in default package(no package)?
    >
    You CAN implement the interface defined in the default package.
    What you CANNOT do is import it. And that is because the Java Language Specification specifies that named types can only be referenced by their simple name if they are imported and must otherwise be referenced by their fully qualified name.
    See the 7.5 Import Declarations in the Java Language Specification - http://docs.oracle.com/javase/specs/jls/se7/html/jls-7.html
    >
    An import declaration allows a named type or a static member to be referred to by a simple name (§6.2) that consists of a single identifier.
    Without the use of an appropriate import declaration, the only way to refer to a type declared in another package, or a static member of another type, is to use a fully qualified name (§6.7).
    A type in an unnamed package (§7.4.2) has no canonical name, so the requirement for a canonical name in every kind of import declaration implies that (a) types in an unnamed package cannot be imported, and (b) static members of types in an unnamed package cannot be imported. As such, §7.5.1, §7.5.2, §7.5.3, and §7.5.4 all require a compile-time error on any attempt to import a type (or static member thereof) in an unnamed package.
    >
    So you can't reference that type by importing it because you can't import a type that doesn't have a canonical nmae. And you can't just use the simple name because, as the first statement above says you have to import it to use the simple name.
    When you use the simple name of that type without an import the simple name would refer to a class IN your 'com.company' named package.

  • Pacman -Syu - errors occurred, no packages were upgraded

    Today I wanted to update my system so a ran pacman -Syu command, download worked perfect
    as usual    but when it got to installation I've seen this:
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts...
    error: the following file conflicts were found:
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libcrux-engine.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libcrux-engine.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libhcengine.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libhcengine.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/liblighthouseblue.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/liblighthouseblue.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libmist.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libmist.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libsmooth.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libsmooth.so: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libthinice.la: exists in filesystem
      gtk-engines: /usr/lib/gtk-2.0/2.4.0/engines/libthinice.so: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_down-spinner.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_down.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_up-spinner.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/arrow_up.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-active-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/check-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar-right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/progressbar_trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-active-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-default-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-default.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-hilight-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-insensitive.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-pressed-focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/radio-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-down-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-down-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-down.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-left-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-left-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-right-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-right-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-up-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-up-pressed.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-arrow-up.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-thumb-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h-trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-h.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-thumb-hilight.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v-trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/scroller-v.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_h_thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_h_trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_h_trough_focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_v_thumb.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_v_trough.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/slider_v_trough_focus.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_left-unsel.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_right.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_sel-bottom.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_sel.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel-bottom-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel-bottom.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel-left.png: exists in filesystem
      gtk-engines: /usr/share/eazel-engine/tab_usel.png: exists in filesystem
      gtk-engines: /usr/share/themes/Crux/gtk-2.0/gtkrc: exists in filesystem
      gtk-engines: /usr/share/themes/LighthouseBlue/gtk-2.0/gtkrc: exists in filesystem
      gtk-engines: /usr/share/themes/Mist/gtk-2.0/gtkrc: exists in filesystem
      gtk-engines: /usr/share/themes/ThinIce/gtk-2.0/gtkrc: exists in filesystem
    errors occurred, no packages were upgraded.
    Can someone tell me what's wrong and how to fix this?Thnx.

    It works again        
    Thank you Happy New Year to all of you        

  • Work on FB4.5 and Flash5.5 simultanoiusly - lack of code hints and default package classes.

    Hi!
    I setup Flash Professional CS5.5 and FB4.5 to work together. I just followed this tutorial: http://www.adobe.com/content/dotcom/en/devnet/flash-builder/articles/sharing-projects-flas hbuilder-flash.html and almost all looks good, but unfortunately working in Flash Builder adding new Classes I do not have default package Classes accessible. This way I can not even declare Sprite, Array class and so on. In code hints I only gets my current package classes.
    I set the .fla project inside Flash CS5.5 with some folders as the package for my classes. It is for examle:
    com.myDomain.testProject where DocClass exists. By adding this path as the document for FlashCS5.5 all works great, I can easily run, debug movie in the Flash environment.
    Setting this project by 'Import'->'FlashBuilder-FlashBuilderProject'->'ProjectFolder' pointing to the .fla file it seems that the thing goes well. The project is set and even I had some problems with Document Class's name (it seems that Flash Builder need to have Document Class with the same name as the .fla flie) and renaming it I can run or debug it and it works.
    But if I try to add new class to the directory I end up with no code hints, and in fact no default package classes support. That means I get errors trying to create instance of any common class etc. In code hints I am only getting my package hints (look picture)
    Maybe I misunderstand of some package basics and did something wrong, but generally I don't want to put all my classes to the .fla location but to sort them up in specific folders cause I assume that the project is quite large.
    If you can help me, thanks in advance. You know messing up with the code is a part of the programmer nature, and when one finds the answer he feels like a king. When to deal with environments like that, there is never joy and hapiness, but in most occasions couple uncensural words in the end, and a glimpse on the watch - agrrrhh I lost so much time :/
    cheers

    upss, It seems the Flex sdk wasn't added automatically what I didn't noticed. Looked for errors in some other areas (as always)
    Thanks anyway:)

  • Use Class with Same Name as Default Package Class

    I am upgrading a project to Flash CC and need to use the old JSON class in com.adobe.serialization.json. When I compile, I get an error, "1061: Call to a possibly undefined method decode through a reference with static type Class" because it probably is trying to use the newer default package JSON class rather than the one in com.adobe. I have the import statement in my class, "import com.adobe.serialization.json.JSON", but I guess its checking against the default package and giving me a compile error when I call "var parts:Object = JSON.decode(jsonData);"

    Thanks. I changed my publish settings to fp 10 which fixed it for now. I was hoping there might be a more elegant solution as the custom class is actually an Adobe class that would be better to not to have to rename.

  • Using classes outside of the default package in OATS 12.3.0.1.0

    Hello,
    OpenScript - Version: 12.3.0.1 Build 376.
    The test fails when I use classes that are not in the default package.
    Here is a simple example:
    TempClass - in the default package, I can create new objects and use it's methods without any errors.
    AlienClass - in another package (which name is anotherPackage) of the same project, I import that package into the script.java but I get an exception while creating new class object:
    "An unexpected exception occurred in the script. Script section: Unspecified. Caused by: ClassNotFoundException occured. anotherPackage.AlienClass "
    import anotherPackage.*;
    public void run() throws Exception {
      TempClass tmp = new TempClass(); // no errors while creating
      info(tmp.generateMessage());           // this method works correctly
      AlienClass al = new AlienClass();
      /* here I've got error
      *An unexpected exception occurred in the script.
      * Script section: Unspecified.
      * Caused by: ClassNotFoundException occured. anotherPackage.AlienClass 
    There are no such problems in OpenScript Version: 12.2.0.1 Build 223.
    Could you help me, please?
    Best regards,
    Natalie

    Hi, Sri!
    It was not necessary to name the root package "lib" in previous versions of OpenScript (12.2.0.1, 9.X.X).
    Except the default package, my work project in 12.2.0.1 included one main user package named by the testing application (let's call it "myApp"). And other packages and classes were located there.
    For example:
    D:\Development\TestProject\myApp\core\DB.java
    D:\Development\TestProject\myApp\test\Test1.java
    D:\Development\TestProject\myApp\test\Test2.java
    D:\Development\TestProject\myApp\web\common\Authorization.java
    etc.
    Project with such structure worked in OpenScript 12.2.0.1 but doesn't work in 12.3.0.1.
    According to your advice I created a new package - D:\Development\TestProject\lib, moved "myApp" with all included packages and classes into that package and corrected import statements (like lib.myApp.core.* instead of myApp.core.*).
    And then no errors appeared! So thank you very much! But it's interesting, why behaviour of OpenScript concerning package's name has changed?
    As for example from the first message,  import statement was in the same place where OpenScript added others packages during creating a new project. I've just tried to save some space in the message
    The full script.java is:
    import oracle.oats.scripting.modules.basic.api.*;
    import oracle.oats.scripting.modules.browser.api.*;
    import oracle.oats.scripting.modules.functionalTest.api.*;
    import oracle.oats.scripting.modules.utilities.api.*;
    import oracle.oats.scripting.modules.utilities.api.sql.*;
    import oracle.oats.scripting.modules.utilities.api.xml.*;
    import oracle.oats.scripting.modules.utilities.api.file.*;
    import oracle.oats.scripting.modules.webdom.api.*;
    import oracle.oats.scripting.modules.adf.api.*;
    import anotherPackage.*;
    public class script extends IteratingVUserScript {
      @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
      @ScriptService oracle.oats.scripting.modules.browser.api.BrowserService browser;
      @ScriptService oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService ft;
      @ScriptService oracle.oats.scripting.modules.webdom.api.WebDomService web;
      @ScriptService oracle.oats.scripting.modules.adf.api.ADFService adf;
      public void initialize() throws Exception {
      public void run() throws Exception {
      TempClass tmp = new TempClass(); // no errors
      info(tmp.generateMessage());     // this method works correctly
      AlienClass al = new AlienClass();
      /* here I've got error
      *An unexpected exception occurred in the script.
      * Script section: Unspecified.
      * Caused by: ClassNotFoundException occured. anotherPackage.AlienClass 
      public void finish() throws Exception {

  • Loading jni dll using default package vs. specified package

    The following code:
    public class TestJni {
         public static void main(String[] args) throws Exception {
         System.loadLibrary("artjnidll");
         NARTG_CoreLib test = new NARTG_CoreLib();
    works so long as it is in my project's "default" package together with the jni source files.
    when I try to separate the jni source files into a package, say "artjni" & try to run the following code:
    import artjni.NARTG_CoreLib;
    public class TestJni {
         public static void main(String[] args) throws Exception {
         System.loadLibrary("artjnidll");
         NARTG_CoreLib test = new NARTG_CoreLib();
    i get an unsatisfied link error
    Exception in thread "main" java.lang.UnsatisfiedLinkError: artjni.artAPIJNI.new_NARTG_CoreLib()J
         at artjni.artAPIJNI.new_NARTG_CoreLib(Native Method)
         at artjni.NARTG_CoreLib.<init>(NARTG_CoreLib.java:31)
         at testartjni.TestJni.main(TestJni.java:18)
    even though the library loads fine. Can anyone help me understand why this is happening?
    Thanks so much for the help, d.

    jasro wrote:
    Could you elaborate a little bit? Maybe provide an example? How exactly should I rename the jni wrapper functions?1. Run javah again.
    2. Verify that the signatures in the h file match those in the c/cpp file.
    3. Include the h file in the c/cpp file.

  • [SOLVED] Strange error while compiling packages via AUR

    I've been facing this error while compiling packages via AUR. I'm also posting the output of my /etc/makepkg.conf
    Error
    ==> Starting build()...
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking whether cc supports -O2... yes
    checking for g++... g++
    checking whether the C++ compiler works... yes
    checking for C++ compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking for style of include used by make... GNU
    checking dependency style of g++... gcc3
    checking for gcc... gcc
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for pkg-config... /usr/bin/pkg-config
    checking pkg-config is at least version 0.9.0... yes
    checking for GSTREAMER... yes
    checking for GSTREAMER_GTK... yes
    checking for XOpenDisplay in -lX11... yes
    checking for ncursesw5-config... /usr/bin/ncursesw5-config
    checking for initscr in -lncurses... yes
    checking whether gcc supports -Wall... yes
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating docs/Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    fatal: Not a git repository (or any of the parent directories): .git
    CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /tmp/yaourt-tmp-hellknight/aur-gst123/src/gst123-0.2.0/build-aux/missing --run aclocal-1.11 -Wno-portability
    sh: autom4te: command not found
    aclocal-1.11: autom4te failed with exit status: 127
    make: *** [aclocal.m4] Error 1
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build gst123.
    ==> Restart building gst123 ? [y/N]
    ==> -------------------------------
    ==>
    /etc/makepkg.conf
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Exclusive: will only run on x86_64
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CFLAGS="-march=amdfam10 -mtune=generic -O2 -pipe"
    CXXFLAGS="${CFLAGS}"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    MAKEFLAGS="-j8"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:
    Last edited by tarun.hellknight (2011-04-12 15:45:26)

    That's strange... it wasn't installed.. although I had never,ever faced a problem while compiling packages via AUR.. maybe, I should be careful when uninstalling orphans.. thanks for the help..

Maybe you are looking for

  • Help using scanner class to count chars in file

    Hi all, I am learning Java right now and ran into a problem. I need to use the Scanner class to accurately count the number of chars in a file including the line feed chars 10&13. This what I have and it currently reports a 201 byte file as having 19

  • Boot Camp 3.0, Size 900Mb having Drivers in it, not working On MAC with Windows 7

    Hello. I have installed Windows 7 on my MacBook Pro MD103LL/A without installing its drivers , used Boot Camp to install windows but unchecked the "Download Suport Drivers" for windows 7 and only installed windows 7. Then on logging into Windows 7 i

  • IDOC reduction for MSG type MATMAS

    HI all,                    i have a requirement where clients need only some standard segments and some particulars staructure.We are using MATMAS as a message type and MATMAS05 as a basic type.Basically it leads us for IDOC reduction. Can someone pl

  • Import dll file into Flash 8

    Hi! Anyone knows if it's possible to import a dll file into Flash, or, if flash can connect in some way to a dll file? Thanks in advance Paulo

  • Theres an icon i don't reconize when making a call

    Theres a blue and black box with stars going diagnoly right by the speaker phone icon what does that box mean?