Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
OpenOffice.org 2.0 overlay archive
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3 ... 30, 31, 32, 33, 34, 35  Next  
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Thu Jun 09, 2005 8:08 am    Post subject: Reply with quote

Rainmaker, thanks for log ill have a look.

Master_Of_Disaster, i added java-1.5 fixes for amd64 didn't they apply? on amd64 any 1.4.x jdk would not work i thought. not 64bit compatible... umm. dunno :lol:
kde and disable gnome-vfs?! you may explain a bit further please. i compiled with kde without any gnome just fine for long time. but i know that somehow if u got gnome-vfs and use disable-gnome it still checks and uses it as long as i understand configure...
what errors did you fix?

may you have a look on what patches did apply on unpack? thanks!
_________________
hear hear
Back to top
View user's profile Send private message
Master_Of_Disaster
l33t
l33t


Joined: 28 Feb 2003
Posts: 610
Location: 15.05072° East, 48.13747° North (aka Mauer), Austria

PostPosted: Thu Jun 09, 2005 8:30 am    Post subject: Reply with quote

sorry, I overlooked the JDK 1.5 stuff in the ebuild... I thought the errors I got were related to this, but they weren't.

I haven't got gnome-vfs installed, yet the configure script keeps checking for it. So I disabled it manually.
My emerge info:

Code:
Portage 2.0.51.22-r1 (default-linux/amd64/2005.0, gcc-3.4.4, glibc-2.3.5-r0, 2.6.11-gentoo-r10 x86_64)
=================================================================
System uname: 2.6.11-gentoo-r10 x86_64 AMD Athlon(tm) 64 Processor 3200+
Gentoo Base System version 1.6.12
dev-lang/python:     2.2.3-r5, 2.3.5
sys-apps/sandbox:    1.2.8
sys-devel/autoconf:  2.13, 2.59-r6
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.5
sys-devel/binutils:  2.16-r1
sys-devel/libtool:   1.5.18
virtual/os-headers:  2.6.11-r1
ACCEPT_KEYWORDS="amd64 ~amd64"
AUTOCLEAN="yes"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-O2 -pipe -march=k8"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.4/env /usr/kde/3.4/share/config /usr/kde/3.4/shutdown /usr/kde/3/share/config /usr/lib/X11/xkb /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/init.d /etc/skel /etc/splash /etc/terminfo /etc/texmf/web2c /etc/env.d"
CXXFLAGS="-O2 -pipe -march=k8"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig digest distlocks sandbox sfperms strict userpriv usersandbox"
GENTOO_MIRRORS="http://gentoo.inode.at/"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
USE="amd64 X aac acpi alsa berkdb bitmap-fonts cdparanoia cdr crypt cups curl dga dillo directfb dts dvd dvdread encode fam firefox flac font-server foomaticdb gd gif gtk gtk2 hal icq imagemagick imlib java jp2 jpeg kde kdeenablefinal libwww lzw lzw-tiff matroska motif mp3 mpeg mplayer ncurses nls nptl nptlonly offensive ogg oggvorbis opengl oss pam pdflib png ppds qt readline samba sdl ssl symlink sysfs tcpd tetex tiff truetype truetype-fonts type1-fonts usb userlocales vorbis xml2 xpm xrandr xv xvid zlib userland_GNU kernel_linux elibc_glibc"
Unset:  ASFLAGS, CTARGET, LANG, LC_ALL, LDFLAGS, LINGUAS


Patch to get rid of 'ambiguity' errors in beanshell:
Code:
--- beanshell/unxlngx4.pro/misc/build/BeanShell/src/bsh/ClassGeneratorUtil.java    2003-12-19 17:14:28.000000000 +0100
+++ beanshell/unxlngx4.pro/misc/build/BeanShell/src/bsh/ClassGeneratorUtil.java.patched       2005-06-09 09:49:44.000000000 +0200
@@ -134,7 +134,7 @@
                if ( superClass == null )
                        superClass = Object.class;
                this.superClass = superClass;
-               this.superClassName = Type.getInternalName( superClass );
+               this.superClassName = bsh.org.objectweb.asm.Type.getInternalName( superClass );
                if ( interfaces == null )
                        interfaces = new Class[0];
                this.interfaces = interfaces;
@@ -182,7 +182,7 @@

                String [] interfaceNames = new String [interfaces.length];
                for(int i=0; i<interfaces.length; i++)
-                       interfaceNames[i]=Type.getInternalName( interfaces[i] );
+                       interfaceNames[i]=bsh.org.objectweb.asm.Type.getInternalName( interfaces[i] );

                String sourceFile = "BeanShell Generated via ASM (www.objectweb.org)";
                ClassWriter cw = new ClassWriter(false);
@@ -358,15 +358,15 @@
                // Invoke the method This.invokeMethod( name, Class [] sig, boolean )
                cv.visitMethodInsn(
                        INVOKEVIRTUAL, "bsh/This", "invokeMethod",
-                       Type.getMethodDescriptor(
-                               Type.getType(Object.class),
-                               new Type [] {
-                                       Type.getType(String.class),
-                                       Type.getType(Object [].class),
-                                       Type.getType(Interpreter.class),
-                                       Type.getType(CallStack.class),
-                                       Type.getType(SimpleNode.class),
-                                       Type.getType(Boolean.TYPE)
+                       bsh.org.objectweb.asm.Type.getMethodDescriptor(
+                               bsh.org.objectweb.asm.Type.getType(Object.class),
+                               new bsh.org.objectweb.asm.Type [] {
+                                       bsh.org.objectweb.asm.Type.getType(String.class),
+                                       bsh.org.objectweb.asm.Type.getType(Object [].class),
+                                       bsh.org.objectweb.asm.Type.getType(Interpreter.class),
+                                       bsh.org.objectweb.asm.Type.getType(CallStack.class),
+                                       bsh.org.objectweb.asm.Type.getType(SimpleNode.class),
+                                       bsh.org.objectweb.asm.Type.getType(Boolean.TYPE)
                                }
                        )
                );


Patch for rhino:
Code:
--- rhino/unxlngx4.pro/misc/build/rhino1_5R4/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java 2005-03-22 13:20:49.000000000 +0100
+++ rhino/unxlngx4.pro/misc/build/rhino1_5R4/toolsrc/org/mozilla/javascript/tools/shell/JavaPolicySecurity.java.new     2005-06-09 09:49:16.000000000 +0200
@@ -124,7 +124,7 @@

     public JavaPolicySecurity() {
         // To trigger error on jdk-1.1 with lazy load
-        new CodeSource(null, null);
+        new CodeSource(null, (CodeSigner[]) null);
     }

     protected void callProcessFileSecure(final Context cx,
@@ -167,7 +167,7 @@
     }

     private ProtectionDomain getUrlDomain(URL url) {
-        CodeSource cs = new CodeSource(url, null);
+        CodeSource cs = new CodeSource(url, (CodeSigner[]) null);
         PermissionCollection pc = Policy.getPolicy().getPermissions(cs);
         return new ProtectionDomain(cs, pc);
     }


I don't know how to apply this though, as beanshell is unpacked during the build and I don't want to mess with these Makefiles of which I don't have any clue. Same for rhino.

*edit* added patch for rhino
_________________
post tenebras lux, post fenestras tux
Registered Linux User Nr. 312509
Adopt an unanswered post today!
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Thu Jun 09, 2005 9:08 am    Post subject: Reply with quote

Rainmaker, did you recompile sal with debug=true before testtools? what says file hs_err_pid12006.log? what does gdb say?
btw, i know that the patch for ant does not apply, see its date. manual way does fine. ;)

Master_Of_Disaster, as long as configure does not break just testing gnome-vfs it is fine to ignore. edit that seems to be wanted
something is bogus. you use gcc.3.4.x so it should have unxlngx6.pro instead of unxlngx4.pro. errr ... edit unxlngx4.pro is just fine and ebuild updated for this

edit gtk VCLplug and gnome-vfs get enabled if present on system. ill update ebuild to force disable if not requested by useflag :)
edit on weekend ill bump to m108 and updated 64bit patches :)
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Thu Jun 09, 2005 9:45 pm    Post subject: Reply with quote

sweet, cws ooo64bit02 got sync'ed to m108 :)
and no jdk-1.5.0 patches updated ...
_________________
hear hear
Back to top
View user's profile Send private message
Rainmaker
Veteran
Veteran


Joined: 12 Feb 2004
Posts: 1650
Location: /home/NL/ehv/

PostPosted: Thu Jun 09, 2005 9:50 pm    Post subject: Reply with quote

geki wrote:
Rainmaker, did you recompile sal with debug=true before testtools? what says file hs_err_pid12006.log? what does gdb say?
btw, i know that the patch for ant does not apply, see its date. manual way does fine. ;)


see http://rainmaker.homelinux.com/hs_err_pid12006.log . I don't think there's anything more in there then was in the pa.bz2 file.

I'll try the make with gdb
_________________
If you can't dazzle them with brilliance, baffle them with bullshit.
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Thu Jun 09, 2005 9:58 pm    Post subject: Reply with quote

edit just use gdb with that errornous command and yes that log is useless :( gdb is last hope ... i built for dutch language and it passed testtools ...
_________________
hear hear
Back to top
View user's profile Send private message
Rainmaker
Veteran
Veteran


Joined: 12 Feb 2004
Posts: 1650
Location: /home/NL/ehv/

PostPosted: Thu Jun 09, 2005 11:18 pm    Post subject: Reply with quote

Trying to build in testtools using gdb:

Quote:

Medusa# gdb perl /var/tmp/portage/openoffice-1.9.106/work/src680-m106/solenv/bin/build.pl
GNU gdb 6.3
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...(no debugging symbols found)
Using host libthread_db library "/lib/tls/libthread_db.so.1".

"/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solenv/bin/build.pl" is not a core dump: File format not recognized

Medusa# which build
build: aliased to perl /var/tmp/portage/openoffice-1.9.106/work/src680-m106/solenv/bin/build.pl


Excuse my ignorance, but how to get gdb to capture the corerct executable?
_________________
If you can't dazzle them with brilliance, baffle them with bullshit.
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 5:41 am    Post subject: Reply with quote

see my gdb instructions. there is an example with blackdown-jdk... well, to go faster, here you are :P
Code:
cd ${S}/testtools
cd unxlngi6.pro/lib

edit before using gdb check if that command really segfaults or if it is another one. run
Code:
regcomp -register  -br ../../unxlngi6.pro/misc/bridgetest/bootstrap.rdb -r ../../unxlngi6.pro/lib/uno_services.rdb -c \
         file:///var/tmp/portage/openoffice-1.9.106/work/src680-m106/testtools/source/bridgetest/../../unxlngi6.pro/class/testComponent.jar \
        -classpath \
.:../../unxlngi6.pro/class:/opt/sun-jdk-1.4.2.08/jre/lib/rt.jar:.:/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solver/680/unxlngi6.pro/bin/java_uno.jar:/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solver/680/unxlngi6.pro/bin/jurt.jar:/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solver/680/unxlngi6.pro/bin/ridl.jar

if it fails do
Code:
gdb regcomp -register  -br ../../unxlngi6.pro/misc/bridgetest/bootstrap.rdb -r ../../unxlngi6.pro/lib/uno_services.rdb -c \
         file:///var/tmp/portage/openoffice-1.9.106/work/src680-m106/testtools/source/bridgetest/../../unxlngi6.pro/class/testComponent.jar \
        -classpath \
.:../../unxlngi6.pro/class:/opt/sun-jdk-1.4.2.08/jre/lib/rt.jar:.:/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solver/680/unxlngi6.pro/bin/java_uno.jar:/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solver/680/unxlngi6.pro/bin/jurt.jar:/var/tmp/portage/openoffice-1.9.106/work/src680-m106/solver/680/unxlngi6.pro/bin/ridl.jar

if not. there are two or three other regcomp calls in your error report log you posted before! check them then!

then in gdb shell
Code:
(gdb) run
(gdb) where
(gdb) bt

_________________
hear hear


Last edited by geki on Fri Jun 10, 2005 5:56 am; edited 1 time in total
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 5:50 am    Post subject: Reply with quote

Rainmaker wrote:
Excuse my ignorance, but how to get gdb to capture the corerct executable?

reading and understanding the error message you get.
switching to correct directory
Code:
gdb <command --help-me-out --args blah that segfaults>

in gdb shell
Code:
(gdb) run
(gdb) bt

to get a backtrace, well, that is just useful having source compiled with debug useflag or better CFLAGS="-g -O" | CXXFLAGS="-g -O".

not that difficult :)
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 9:30 am    Post subject: Reply with quote

Master_Of_Disaster, sure that the beanshell patch is needed? there is an
Code:
import bsh.org.objectweb.asm.*;

which makes the use of bsh.org.objectweb.asm. string in front of functions unneeded. or do i misunderstand something? :)

edit this does not explain a lot 8) is there another Type function from another import that leeds to this conflict?! or what?
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 10:18 am    Post subject: Reply with quote

bumped to m108 :)
_________________
hear hear
Back to top
View user's profile Send private message
Master_Of_Disaster
l33t
l33t


Joined: 28 Feb 2003
Posts: 610
Location: 15.05072° East, 48.13747° North (aka Mauer), Austria

PostPosted: Fri Jun 10, 2005 11:17 am    Post subject: Reply with quote

Code:
import java.lang.reflect.*;
import bsh.org.objectweb.asm.*;

This means that Type could refer to bsh.org.objectweb.asm.Type or to java.lang.reflect.Type - the compiler doesn't know which one to pick. This causes errors like 'The call Type.foo() is ambigious, both bsh.org.objectweb.asm.Type and java.lang.reflect.Type match'.
So yes, this patch *is* needed.
_________________
post tenebras lux, post fenestras tux
Registered Linux User Nr. 312509
Adopt an unanswered post today!
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 11:22 am    Post subject: Reply with quote

finally a description of the bug for the non-perfect-english-speaker me, thanks! :D
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 12:13 pm    Post subject: Reply with quote

Master_Of_Disaster, overlay updated. you may try now :)
_________________
hear hear
Back to top
View user's profile Send private message
Bonkie
Guru
Guru


Joined: 28 Oct 2002
Posts: 501
Location: Antwerpen, Belgium

PostPosted: Fri Jun 10, 2005 1:42 pm    Post subject: Reply with quote

Great !! Since I finally have some time this weekend, Im gonna give milestone 108 a try :D
_________________
"I would say we have a 50% chance of survival, but I consider myself an optimist so I'll give us 50,5% ..."
~ Arthur C. Clarke [Physics PHD,SF Writer], when asked about the chances of the human race's survival
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 2:05 pm    Post subject: Reply with quote

added hotfix for solenv/bin/deliver.pl to shut up 'uninitialized variable' warning. i guess it is that hehe
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Fri Jun 10, 2005 11:43 pm    Post subject: Reply with quote

finally found out how to set PYTHONPATH :P the ugly hack to copy pyuno.so into system is history ...
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Sat Jun 11, 2005 12:02 am    Post subject: Reply with quote

overlay updated

Thrain, you may have a try with system python 2.3.5
_________________
hear hear
Back to top
View user's profile Send private message
Thrain
Guru
Guru


Joined: 01 Sep 2003
Posts: 380

PostPosted: Sat Jun 11, 2005 9:42 am    Post subject: Reply with quote

@geki:

:lol: I've just emerged python 2.4.1 :lol: ...
Now I'll give a try with that... If OO will not compile, I'll try again with 2.3.5...

;)
_________________
Thrain

"...only astonishment knows..."
Back to top
View user's profile Send private message
Bonkie
Guru
Guru


Joined: 28 Oct 2002
Posts: 501
Location: Antwerpen, Belgium

PostPosted: Sat Jun 11, 2005 10:18 am    Post subject: Reply with quote

Damn I felt I was close :) Is this known or fixed in new overlay ??

Code:
 * PYTHONPATH=/var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/::/python:/python/lib-dynload
... checking environment variables ...

########################################################
make_installer.pl, version 1.0
Product list file: openoffice.lst
Taking setup script from solver
Unpackpath: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util
Compiler: unxlngi6
Product: OpenOffice
BuildID: 8920
Build: SRC680
No minor set
Product version
Installpath: /var/tmp/portage/openoffice-1.9.108/work/opt/OpenOffice.org-1.9.108
Package format: native
Package list file: ../inc_openoffice/unix/packagelist.txt
Addon-Package list file: ../inc_openoffice/unix/packagelist_language.txt
Not calling epm
Unzip ARCHIVE files
services.rdb can be created
Languages:
        en-US
########################################################
... checking required files ...
...... searching zip ...
        Found: /usr/bin/zip
...... searching unzip ...
        Found: /usr/bin/unzip
... analyzing openoffice.lst ...
... analyzing script: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/setup_osl.ins ...
... analyzing directories ...
... analyzing files ...
... analyzing scpactions ...
... analyzing shortcuts ...
... analyzing profile ...
... analyzing profileitems ...
... analyzing modules ...
------------------------------------
... languages en-US ...
... analyzing files ...
... analyzing files with flag ARCHIVE ...
... analyzing files with flag SCPZIP_REPLACE ...
... analyzing files with flag PATCH_SO_NAME ...
... creating preregistered services.rdb ...

**************************************************
ERROR: ERROR: Could not register all components!
in function: create_services_rdb
**************************************************

**************************************************
ERROR: Saved logfile: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/logging/en-US/log_SRC680__en-US.log
**************************************************
... cleaning the output tree ...
... removing directory /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/zipfiles/en-US ...
... removing directory /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_witherror_1 ...
Sat Jun 11 12:13:05 2005 (01:54 min.)


log ends with:
Code:
Sat Jun 11 12:12:58 2005 (01:47 min.)
######################################################
                                                                                    Registering python UNO components:
######################################################                                                                                   
SUCCESS: Source for types.rdb: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/types.rdb
SUCCESS: Source for pyuno_services.rdb: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/pyuno_services.rdb
Systemcall:  /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/regcomp -register -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/types.rdb -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/u
nxlngi6.pro/bin/pyuno_services.rdb -r /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1/services.rdb -c vnd.openoffice.pymodule:pythonscript -l com.sun.star.loader.Python 2>&1 |
register component 'vnd.openoffice.pymodule:pythonscript' in registry '/var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1/services.rdb' failed!
error (RuntimeException): python object raised an unknown exception ('No module named pyuno', traceback follows                           <traceback object at 0xb71a0694>
ERROR:  /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/regcomp -register -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/types.rdb -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlng
i6.pro/bin/pyuno_services.rdb -r /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1/services.rdb -c vnd.openoffice.pymodule:pythonscript -l com.sun.star.loader.Python 2>&1 |
                                                                                                                                          Moved directory from /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1
 to /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_witherror_1                 
Removing directory /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/zipfiles/en-US                   
Removing directory /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_witherror_1   
***************************************************************                                                                           
ERROR: Could not register all components!
in function: create_services_rdb                                                                                                         
 ***************************************************************


Code:
Portage 2.0.51.22-r1 (default-linux/x86/2005.0, gcc-4.0.1-pre20050607, glibc-2.3.5.20050421-r0, 2.6.11-gentoo-r10 i686)
=================================================================
System uname: 2.6.11-gentoo-r10 i686 AMD Athlon(tm) XP 1800+
Gentoo Base System version 1.6.12
ccache version 2.4 [enabled]
dev-lang/python:     2.3.5, 2.4.1
sys-apps/sandbox:    1.2.8
sys-devel/autoconf:  2.13, 2.59-r6
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.5
sys-devel/binutils:  2.16-r1
sys-devel/libtool:   1.5.18
virtual/os-headers:  2.6.11-r1
ACCEPT_KEYWORDS="x86 ~x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-march=athlon-xp -O2 -pipe"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3/share/config /usr/kde/devel/env /usr/kde/devel/share/config /usr/kde/devel/shutdown /usr/lib/X11/xkb /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/splash /etc/terminfo /etc/env.d"
CXXFLAGS="-march=athlon-xp -O2 -pipe"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoaddcvs autoconfig ccache distlocks sandbox sfperms strict"
GENTOO_MIRRORS="http://distfiles.gentoo.org http://distro.ibiblio.org/pub/Linux/distributions/gentoo"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/overlays/kdesvn/trunk /usr/local/overlays/openoffice2beta"
SYNC="rsync://192.168.1.1/gentoo-portage"
USE="x86 X alsa avi bash-completion berkdb bitmap-fonts bzip2 cdr crypt cups curl doc dvdr dvdread emboss encode fam flac foomaticdb fortran gd gdbm gif gnome gpm gstreamer gtk gtk2 hal imlib ipv6 java jpeg kde libg++ libwww mad mikmod mjpeg mmx motif mozilla mp3 mpeg ncurses nls nptl ogg oggvorbis opengl pam pcre pdflib perl png python qt quicktime readline samba scanner sdl spell sqlite sse ssl svga tcpd tiff truetype truetype-fonts type1-fonts usb vorbis xine xml xml2 xv xvid zlib userland_GNU kernel_linux elibc_glibc"
Unset:  ASFLAGS, CTARGET, LANG, LC_ALL, LDFLAGS, LINGUAS


Code:
[ebuild  N    ] app-office/openoffice-1.9.108  +berkdb +crystal-images +cups +curl -debug -firefox -gcj -gnome -icu -industrial-images +java +jpeg +kde -ldap -mozilla -nas -neon +nobinfilter +nomoz -nosound +nptl -portaudio +python -sablot -sndfile +xml2 +zlib 0 kB [2]

_________________
"I would say we have a 50% chance of survival, but I consider myself an optimist so I'll give us 50,5% ..."
~ Arthur C. Clarke [Physics PHD,SF Writer], when asked about the chances of the human race's survival
Back to top
View user's profile Send private message
Thrain
Guru
Guru


Joined: 01 Sep 2003
Posts: 380

PostPosted: Sat Jun 11, 2005 10:47 am    Post subject: Reply with quote

Bonkie wrote:

Code:
Sat Jun 11 12:12:58 2005 (01:47 min.)
######################################################
                                                                                    Registering python UNO components:
######################################################                                                                                   
SUCCESS: Source for types.rdb: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/types.rdb
SUCCESS: Source for pyuno_services.rdb: /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/pyuno_services.rdb
Systemcall:  /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/regcomp -register -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/types.rdb -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/u
nxlngi6.pro/bin/pyuno_services.rdb -r /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1/services.rdb -c vnd.openoffice.pymodule:pythonscript -l com.sun.star.loader.Python 2>&1 |
register component 'vnd.openoffice.pymodule:pythonscript' in registry '/var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1/services.rdb' failed!
error (RuntimeException): python object raised an unknown exception ('No module named pyuno', traceback follows                           <traceback object at 0xb71a0694>
ERROR:  /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/regcomp -register -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlngi6.pro/bin/types.rdb -br /var/tmp/portage/openoffice-1.9.108/work/src680-m108/solver/680/unxlng
i6.pro/bin/pyuno_services.rdb -r /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1/services.rdb -c vnd.openoffice.pymodule:pythonscript -l com.sun.star.loader.Python 2>&1 |
                                                                                                                                          Moved directory from /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_inprogress_1
 to /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_witherror_1                 
Removing directory /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/zipfiles/en-US                   
Removing directory /var/tmp/portage/openoffice-1.9.108/work/src680-m108/instsetoo_native/util/OpenOffice/services.rdb/en-US_witherror_1   
***************************************************************                                                                           
ERROR: Could not register all components!
in function: create_services_rdb                                                                                                         
 ***************************************************************



My same error...
But I have to try this new overlay, I got this with older one
_________________
Thrain

"...only astonishment knows..."
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Sat Jun 11, 2005 11:04 am    Post subject: Reply with quote

Bonkie and Thrain, yes i switched from a copy of pyuno.so to system ( python module ) to export a correct PYTHONPATH variable finally ;) see first post. it merged fine here.
would be interesting to see if system python 2.3.5 still errors.
_________________
hear hear
Back to top
View user's profile Send private message
Bonkie
Guru
Guru


Joined: 28 Oct 2002
Posts: 501
Location: Antwerpen, Belgium

PostPosted: Sat Jun 11, 2005 11:11 am    Post subject: Reply with quote

Oki ill try the new overlay :wink:


My laptop runs python 2.3.5, Ill give it a try and let u know :wink:
_________________
"I would say we have a 50% chance of survival, but I consider myself an optimist so I'll give us 50,5% ..."
~ Arthur C. Clarke [Physics PHD,SF Writer], when asked about the chances of the human race's survival
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Sat Jun 11, 2005 11:19 am    Post subject: Reply with quote

Bonkie, great! :o

anyone, i still need a backtrace of gdb from that Java VM error - An unexpected exception has been detected in native code outside the VM., thanks! or access to one box that causes that, non-root. to check by myself. pm me then. thanks.
_________________
hear hear
Back to top
View user's profile Send private message
geki
Advocate
Advocate


Joined: 13 May 2004
Posts: 2387
Location: Germania

PostPosted: Sat Jun 11, 2005 1:32 pm    Post subject: Reply with quote

one more thing i would like to see of one getting that Java VM error
Code:
export S=/var/tmp/portage/openoffice-1.9.108/work/src680-m108
cd $S
export LinuxEnvSet="LinuxIntelEnv.Set.sh" # replace with your archs file! i.e. LinuxAMDEnv.Set.sh for amd64
export SOLVER="$(awk '/^UPD=/ {gsub(/\"/, ""); gsub(/UPD=/, ""); print $0}' $LinuxEnvSet)"
export SOLPATH="$(awk '/^INPATH=/ {gsub(/\"/, ""); gsub(/INPATH=/, ""); print $0}' $LinuxEnvSet)"
source $S/$LinuxEnvSet
cd bridges
rm -rf unxlngi6.pro/ # unx<TAB>
build > /tmp/bridges.log 2>&1

that output logged in a file and uploaded on webspace.
_________________
hear hear
Back to top
View user's profile Send private message
Display posts from previous:   
This topic is locked: you cannot edit posts or make replies.    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3 ... 30, 31, 32, 33, 34, 35  Next
Page 31 of 35

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum