FS#15813 - [alunn] fails to start

Attached to Project: Community Packages
Opened by Francisco Pina (Stunts) - Wednesday, 05 August 2009, 14:47 GMT
Last edited by Jaroslav Lichtblau (Dragonlord) - Tuesday, 11 August 2009, 19:42 GMT
Task Type Bug Report
Category
Status Closed
Assigned To Jaroslav Lichtblau (Dragonlord)
Architecture All
Severity High
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 5
Private No

Details

Description:
Alunn fails to start.
If run from the console it displays the following message:

Traceback (most recent call last):
File "/usr/bin/alunn", line 21, in <module>
from alunn.log import *
ImportError: No module named alunn.log


Additional info:

*Using latest package: alunn 0.7.13-1

*Config and/or log files not applicable.

*Apparently affects other people too:
http://bbs.archlinux.org/viewtopic.php?pid=595531#p595531


Steps to reproduce:
1. Install alunn
2. Type alunn in the terminal
3. Watch it crash.
This task depends upon

Closed by  Jaroslav Lichtblau (Dragonlord)
Tuesday, 11 August 2009, 19:42 GMT
Reason for closing:  Fixed
Additional comments about closing:  alunn 0.7.13-2
Comment by Benjamin van der Burgh (Gringo) - Wednesday, 05 August 2009, 16:26 GMT
I can confirm this. Alunn 0.7.13-1 install on a fresh Arch Linux 32bit installation. All the packages are up-to-date.

Alunn failed to start on both a fresh installation and an older installation which used to run Alunn just fine.
Comment by Coume (Coume) - Saturday, 08 August 2009, 09:47 GMT
Same bug on an up-to-date x86_64 install.
Comment by Vladimir Berkut (Crazycheese) - Monday, 10 August 2009, 23:36 GMT
Solution:
alunn pkgbuild installs components into "/usr/lib/python2.5", newest python is version 2.6 and it should read "/usr/lib/python2.6"

How to reproduce fix:

- if already installed - (quick and dirty) either manually as root do:
#cd /usr/lib/python2.5/site-packages/
#cp -a alunn/ ../../python2.6/site-packages/
(do not forget to move back or remove python2.6/site-packages/alunn after test is done, pacman doesnt know we copied.)

- or uninstall(#pacman -Rs alunn),
grab abs version(#pacman -S abs;#abs;#su user; $cp -a /var/abs/community/alunn ~; $cd ~/alunn; gedit /src/alunn-0.7.13/install.sh)
locate: "PYDEST=/usr/lib/python2.5/site-packages/" replace: "PYDEST=/usr/lib/python2.6/site-packages/"
after this, build: $makepkg; #pacman -U <package> ,it will work.
Comment by Vladimir Berkut (Crazycheese) - Monday, 10 August 2009, 23:39 GMT
Oh, I was completely unaware somebody posted solution. Checked Coume link, oh well. =)
Comment by Vladimir Berkut (Crazycheese) - Monday, 10 August 2009, 23:40 GMT
Sorry, I mean link in bug details... Need sleep.

Loading...