Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 139570 - games-puzzle/kiki-1.0.2 doesn't run with swig-1.3.29
Summary: games-puzzle/kiki-1.0.2 doesn't run with swig-1.3.29
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-07 09:08 UTC by Tristan Heaven (RETIRED)
Modified: 2006-11-13 04:18 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tristan Heaven (RETIRED) gentoo-dev 2006-07-07 09:08:08 UTC
Traceback (most recent call last):
  File "/usr/share/games/kiki/py/env.py", line 43, in ?
    world          = Controller.world
AttributeError: 'PySwigObject' object has no attribute 'world'
Segmentation fault (core dumped)


Works with swig-1.3.25.
Comment 1 Algardas Pelakauskas 2006-07-07 16:43:47 UTC
Same error here.  Tested with swig-1.3.29 and swig-1.3.25, both don't work.
Or maybe kiki shouldn't work with python-2.4?
Comment 2 Tristan Heaven (RETIRED) gentoo-dev 2006-07-07 16:56:38 UTC
try emerge -1 =swig-1.3.25 kiki
Comment 3 Algardas Pelakauskas 2006-07-08 03:28:37 UTC
(In reply to comment #2)
> try emerge -1 =swig-1.3.25 kiki
> 

good point :)
I really downgraded to swig-1.3.25 without re-emerging kiki.

Thanks.
Comment 4 Onur Küçük 2006-11-13 03:20:10 UTC
Kiki can run with swig 1.3.29. In Pardus packages we regenerate the swig stuff with something like this. The syntax is taken from Makefile.

shelltools.cd("SWIG")
shelltools.system("swig -c++ -python -globals kiki -o KikiPy_wrap.cpp KikiPy.i")
shelltools.copy("kiki.py", "../py/")

You can also check out how the kiki package is built from here,
http://svn.pardus.org.tr/pardus/devel/applications/games/kiki/

Thought you would like to know.
Comment 5 Tristan Heaven (RETIRED) gentoo-dev 2006-11-13 04:18:24 UTC
Thanks.