Search Criteria
Package Details: tuxemon-git r815.5953934-1
| Git Clone URL: | https://aur.archlinux.org/tuxemon-git.git (read-only, click to copy) |
|---|---|
| Package Base: | tuxemon-git |
| Description: | A free, open source monster-fighting RPG. |
| Upstream URL: | http://www.tuxemon.org |
| Licenses: | |
| Groups: | |
| Conflicts: | |
| Provides: | |
| Submitter: | zufallsheld |
| Maintainer: | Morguldir |
| Last Packager: | zufallsheld |
| Votes: | 4 |
| Popularity: | 0.000000 |
| First Submitted: | 2015-08-11 18:38 |
| Last Updated: | 2017-04-19 16:55 |
Dependencies (8)
- python (python-dbg)
- python-neteria
- python-pygame (python-pygame-git)
- python-pyscroll
- python-pytmx
- python-six
- git (git-git) (make)
- libShake (optional) – rumble library for Linux.
Latest Comments
1 2 Next › Last »
airon90 commented on 2019-09-04 09:30
This script seems to be broken. First of all AFAIK line 29 is wrong: you should not create a symlink to the Python file but a script so that "tuxemon" command equals "python /usr/share/tuxemon/tuxemon.py". Then, /usr/share/tuxemon/tuxemon.py doesn't exist
zufallsheld commented on 2016-08-28 16:40
When I last created the PKGBUILD python-pygame did not successfully build. Now it does so I changed the dependency.
As to python-yapsy: I guess this was a depedendy sometime, not anymore. Same with netifaces.
I updated the dependencies and also now am using the development branch of tuxemon, because its more up to date.
nontlikeuname commented on 2016-08-27 15:07
Is there any reason this depends on python-pygame-hg rather than python-pygame? Is any reason that tuxemon depends on python-yapsy or netifaces?
Tuxemon seems to work with just python-pygame. (To the extent that tuxemon does work in its current state)
duckbrain commented on 2016-06-07 14:30
I was able to get the game to run by editing PKGBUILD to depend on `python2-pygame` instead of `python-pygame-hg` and installing `python2-pip` and running `sudo pip2 install pytmx`.
zufallsheld commented on 2016-06-06 18:51
MCMic, I'll create a binary soon, thanks for bringing this up.
As to the error you posted, that's a problem of the sourcecode of the game. This is already fixed in the development branch and the next release will probably have this fix.
MCMic commented on 2016-06-06 08:37
You should provide a binary in /usr/bin so that we can launch the game with «tuxemon» You could also generate a desktop file with gendesk.
I can’t launch the game:
python main.py
/usr/share/tuxemon/core/platform/__init__.py:22: SyntaxWarning: name '_pygame' is assigned to before global declaration
global _pygame
Traceback (most recent call last):
File "main.py", line 38, in <module>
main()
File "/usr/share/tuxemon/core/main.py", line 54, in main
from .control import PygameControl
File "/usr/share/tuxemon/core/control.py", line 10, in <module>
from .components import controller
File "/usr/share/tuxemon/core/components/controller.py", line 35, in <module>
from core import tools
File "/usr/share/tuxemon/core/tools.py", line 38, in <module>
import core.components.sprite
File "/usr/share/tuxemon/core/components/sprite.py", line 269
print sprite, sprite.rect
^
SyntaxError: Missing parentheses in call to 'print'
python2 main.py
/usr/share/tuxemon/core/platform/__init__.py:22: SyntaxWarning: name '_pygame' is assigned to before global declaration
global _pygame
No handlers could be found for logger "core.components.rumble"
No module named pytmx.util_pygame
world failed to load or is not a valid game package
Traceback (most recent call last):
File "main.py", line 38, in <module>
main()
File "/usr/share/tuxemon/core/main.py", line 58, in main
control.auto_state_discovery()
File "/usr/share/tuxemon/core/state.py", line 260, in auto_state_discovery
for state in self.collect_states_from_path(folder):
File "/usr/share/tuxemon/core/state.py", line 297, in collect_states_from_path
import_module(import_name)
File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
File "/usr/share/tuxemon/core/states/world/__init__.py", line 2, in <module>
from .worldstate import WorldState
File "/usr/share/tuxemon/core/states/world/worldstate.py", line 43, in <module>
from core.components import map
File "/usr/share/tuxemon/core/components/map.py", line 44, in <module>
from pytmx.util_pygame import load_pygame
ImportError: No module named pytmx.util_pygame
ahjolinna commented on 2015-12-27 05:14
there is now support for python3
Azul commented on 2015-08-20 08:02
Yep that's what it was. I was dumb and didn't realize it was python 2.7
zufallsheld commented on 2015-08-19 04:48
You have to use python2 to start the game, e.g.:
python2 main.py
Azul commented on 2015-08-18 23:57
When I do this after I CD into /usr/share/Tuxemon
sudo python /usr/share/Tuxemon/tuxemon.py
it gives me
Traceback (most recent call last):
File "/usr/share/Tuxemon/tuxemon.py", line 44, in <module>
import pygame
ImportError: No module named 'pygame'