Ubuntu 7.10 .debs (Bottom of page 1 in YokoZar's post)

Ubuntu 7.10 .debs (Bottom of page 1 in YokoZar's post)

Discuss everything related to running Spring on your chosen distribution of Linux.

Moderator: Moderators

User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Ubuntu 7.10 .debs (Bottom of page 1 in YokoZar's post)

Post by Relative »

I know ubuntu 7.10 isn't out for a couple of days, but I was wondering if anyone has plans on making them. The current .debs made by yoko don't work on the 7.10 beta. I haven't seen yoko for a while, which leads me to believe that we might of lost our current ubuntu package maintainer.
Last edited by Relative on 16 Oct 2007, 12:39, edited 4 times in total.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

I believe all that needs to be done to the current .debs made by yoko is a dependency update.

You can find all of his .debs here:
http://tuzakey.com/~scott/spring/

The problem .deb is this one:

http://tuzakey.com/~scott/spring/spring ... 1_i386.deb

It says its missing libboost-regex1.33.1, but the only one listed in the ubuntu repositories is libboost-regex1.34.1. Once this is updated to reflect this very minor change the .deb should work. I would do this myself, if I had any idea what I was doing. Its only a single digit!
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

Ok, so I have managed to make a new package based on yoko's structure after reading some .deb documentation. I'm still using yoko's data package as that seems fine. I'm still having some problems though. Spring now installs and starts up, but I get a missing content error:

Code: Select all

Content error: Luxi.ttf: FT_New_Face failed: no error

These are the two .debs that are currently required:

Yoko's data .deb: http://tuzakey.com/~scott/spring/spring ... -1_all.deb

My spring binary .deb: http://www.unknown-files.net/3643/Test_Springdeb

Can someone take a look and find out what's wrong with this?

Edit: nm, found the problem. I'm going to do some testing on it then I will release the whole thing.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

Well I've done everything I can think of, but it still doesn't work. Spring installs and everything seems to be where it should be. Unitsync crashes aflobby, which leads me to believe that unitsync lacks the java bindings or is completely screwed up. Spring crashes after selecting its script with this in the terminal:

Code: Select all

Segmentation fault (core dumped)
I think this all comes down to compiling, not the .deb structure.

Will post what I currently have in a sec.

Edit:

http://www.unknown-files.net/3644/spring_deb_test_2/
imbaczek
Posts: 3629
Joined: 22 Aug 2006, 16:19

Post by imbaczek »

compile with scons configure debug=yes (or at the very least strip=no) and use gdb to get a backtrace of what's happening.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

imbaczek wrote:compile with scons configure debug=yes (or at the very least strip=no) and use gdb to get a backtrace of what's happening.

Code: Select all

rutter@stumpy:~$ gdb spring
GNU gdb 6.6-debian
Copyright (C) 2006 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 "i486-linux-gnu"...
Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1".
(gdb) run
Starting program: /usr/games/spring 
[Thread debugging using libthread_db enabled]
[New Thread -1244256544 (LWP 14260)]
warning: Lowest section in /usr/lib/libicudata.so.36 is .hash at 000000b4
[New Thread -1244755056 (LWP 14263)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1244256544 (LWP 14260)]
0xb77b706c in ?? () from /lib/tls/i686/cmov/libc.so.6
(gdb) bt
#0  0xb77b706c in ?? () from /lib/tls/i686/cmov/libc.so.6
Cannot access memory at address 0xbf73bfcc
(gdb) 
Edit:

I just remembered I had this exact same problem a little while ago:

http://spring.clan-sy.com/phpbb/viewtop ... tion+fault

I really do not what to reinstall ubuntu completely.
imbaczek
Posts: 3629
Joined: 22 Aug 2006, 16:19

Post by imbaczek »

ouch. better wait for yoko.

btw does it always happen, or only with deb-installed spring?
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

imbaczek wrote:ouch. better wait for yoko.

btw does it always happen, or only with deb-installed spring?
Well I haven't tried scons install yet, I will later though.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

I get the same thing if I install via scons.
User avatar
clericvash
Posts: 1394
Joined: 05 Oct 2004, 01:05

Post by clericvash »

Engine bug then?
imbaczek
Posts: 3629
Joined: 22 Aug 2006, 16:19

Post by imbaczek »

hard to tell. the backtrace says that the engine hadn't even managed to do anything before it crashed.
User avatar
LordMatt
Posts: 3393
Joined: 15 May 2005, 04:26

Post by LordMatt »

Reinstall your graphic driver and see if that fixes it.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

LordMatt wrote:Reinstall your graphic driver and see if that fixes it.
Already tried that. Last time I had this problem I had to do a flesh install of ubuntu.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

I have made a correlation between the time of installing of these dependencies to compile spring and the problems (its not just spring that having trouble, some other apps are acting up such as Aflobby) that have occurred.

http://spring.clan-sy.com/wiki/SetupGui ... pendencies

Either these libraries or their own dependencies might be causing the problems I'm having. Could someone who knows what their doing check to see if some sort of conflicts are occurring. Installing these caused my default java to change from java6 to something called "Stable VM ubuntu 4.1" that was last updated on December 6, 2005!!

This would explain why a fresh install fixed my problems last time this happened.
YokoZar
Posts: 883
Joined: 15 Jul 2007, 22:02

Post by YokoZar »

imbaczek wrote:ouch. better wait for yoko.

btw does it always happen, or only with deb-installed spring?
Hi. I'll put up Gutsy debs monday.

Tschao.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

yay
YokoZar
Posts: 883
Joined: 15 Jul 2007, 22:02

Post by YokoZar »

Relative wrote:yay
And, as promised:

http://tuzakey.com/~scott/spring/gutsy

There's both a 32 and 64 bit deb. You need both the spring deb and the spring-data deb.
User avatar
Relative
Posts: 1371
Joined: 15 Oct 2006, 13:17

Post by Relative »

Thanks yoko!

Edit: BTW, when gutsy is released won't it be a good idea put these .debs on the download page?
YokoZar
Posts: 883
Joined: 15 Jul 2007, 22:02

Post by YokoZar »

Relative wrote:Thanks yoko!

Edit: BTW, when gutsy is released won't it be a good idea put these .debs on the download page?
Yes but we need a new server, I cannot host them there if they get any real traffic.
Tobi
Spring Developer
Posts: 4598
Joined: 01 Jun 2005, 11:36

Post by Tobi »

Just tell me what packages you need on buildbot.no-ip.org / server6.unknown-files.net (where you have account) and I will install it.

It has unlimited bandwidth AFAIK.

Falcon is already installed.
Post Reply

Return to “Linux”