maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Maemo 5 / Fremantle (https://talk.maemo.org/forumdisplay.php?f=40)
-   -   [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle! (https://talk.maemo.org/showthread.php?t=84482)

amr.fayz 2012-11-29 14:33

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
New works

http://farm9.staticflickr.com/8338/8...da51834b_z.jpg

seanmcken 2012-12-01 02:59

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
yeah i was trying to install wazapp of harmattan but i got this

/home/user/MyDocs # dpkg -i wazapp_0.9.13_armel.deb
Selecting previously deselected package wazapp.
(Reading database ... 42707 files and directories currently installed.)
Unpacking wazapp (from wazapp_0.9.13_armel.deb) ...
dpkg: dependency problems prevent configuration of wazapp:
wazapp depends on libaccounts-qt1; however:
Package libaccounts-qt1 is not installed.
wazapp depends on libaccountsetup0; however:
Package libaccountsetup0 is not installed.
wazapp depends on python-pyside; however:
Package python-pyside is not installed.
wazapp depends on python-qtmobility; however:
Package python-qtmobility is not installed.
wazapp depends on python-accounts; however:
Package python-accounts is not installed.
wazapp depends on python-dateutil; however:
Package python-dateutil is not installed.
wazapp depends on python-context.provider; however:
Package python-context.provider is not installed.
dpkg: error processing wazapp (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
wazapp

marmistrz 2012-12-01 12:59

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Quote:

Originally Posted by seanmcken (Post 1300190)
yeah i was trying to install wazapp of harmattan but i got this

/home/user/MyDocs # dpkg -i wazapp_0.9.13_armel.deb
Selecting previously deselected package wazapp.
(Reading database ... 42707 files and directories currently installed.)
Unpacking wazapp (from wazapp_0.9.13_armel.deb) ...
dpkg: dependency problems prevent configuration of wazapp:
wazapp depends on libaccounts-qt1; however:
Package libaccounts-qt1 is not installed.
wazapp depends on libaccountsetup0; however:
Package libaccountsetup0 is not installed.
wazapp depends on python-pyside; however:
Package python-pyside is not installed.
wazapp depends on python-qtmobility; however:
Package python-qtmobility is not installed.
wazapp depends on python-accounts; however:
Package python-accounts is not installed.
wazapp depends on python-dateutil; however:
Package python-dateutil is not installed.
wazapp depends on python-context.provider; however:
Package python-context.provider is not installed.
dpkg: error processing wazapp (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
wazapp

It's hard to fix. Look at the signon framework port, last post for more info

amr.fayz 2012-12-01 15:25

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Quote:

Originally Posted by seanmcken (Post 1300190)
yeah i was trying to install wazapp of harmattan but i got this

/home/user/MyDocs # dpkg -i wazapp_0.9.13_armel.deb
Selecting previously deselected package wazapp.
(Reading database ... 42707 files and directories currently installed.)
Unpacking wazapp (from wazapp_0.9.13_armel.deb) ...
dpkg: dependency problems prevent configuration of wazapp:
wazapp depends on libaccounts-qt1; however:
Package libaccounts-qt1 is not installed.
wazapp depends on libaccountsetup0; however:
Package libaccountsetup0 is not installed.
wazapp depends on python-pyside; however:
Package python-pyside is not installed.
wazapp depends on python-qtmobility; however:
Package python-qtmobility is not installed.
wazapp depends on python-accounts; however:
Package python-accounts is not installed.
wazapp depends on python-dateutil; however:
Package python-dateutil is not installed.
wazapp depends on python-context.provider; however:
Package python-context.provider is not installed.
dpkg: error processing wazapp (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
wazapp



as marmistrz say It's not run i try it

HTML Code:

~ $ meecolay /opt/waxmppplugin/bin/wazapp/wazapp_init
/opt/waxmppplugin/bin/wazapp/wazapp_init:30: Warning: 'as' will become a reserved keyword in Python 2.6
  File "/opt/waxmppplugin/bin/wazapp/wazapp_init", line 30
    except dbus.exceptions.DBusException as e:
                                          ^
SyntaxError: invalid syntax


marmistrz 2012-12-01 15:26

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Quote:

Originally Posted by amr.fayz (Post 1300299)
as marmistrz say It's not run i try it

HTML Code:

~ $ meecolay /opt/waxmppplugin/bin/wazapp/wazapp_init
/opt/waxmppplugin/bin/wazapp/wazapp_init:30: Warning: 'as' will become a reserved keyword in Python 2.6
  File "/opt/waxmppplugin/bin/wazapp/wazapp_init", line 30
    except dbus.exceptions.DBusException as e:
                                          ^
SyntaxError: invalid syntax


If you get errors with python apps, use python2.7

amr.fayz 2012-12-02 09:30

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Quote:

Originally Posted by marmistrz (Post 1300300)
If you get errors with python apps, use python2.7


Thank you for your response I will do so but I think it's possible works like The ‘with’ statement In Python 2.5,

you actually can use the with statement -- just import it from __future__:

from __future__ import with_statement

But how is it done ?


http://stackoverflow.com/questions/7...with-statement
http://docs.python.org/2/whatsnew/2.6.html

Same mis here
http://www.gossamer-threads.com/list.../python/785327

marmistrz 2012-12-02 10:56

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Quote:

Originally Posted by amr.fayz (Post 1300558)
Thank you for your response I will do so but I think it's possible works like The ‘with’ statement In Python 2.5,

you actually can use the with statement -- just import it from __future__:

from __future__ import with_statement

But how is it done ?


http://stackoverflow.com/questions/7...with-statement
http://docs.python.org/2/whatsnew/2.6.html

Same mis here
http://www.gossamer-threads.com/list.../python/785327

I'm not a python programmer, and it won't be easy to be done. You'd better ask the devs who create apps. And it'll be much easier to use python2.7 so you may ask people to port some python modules to python2.7

skate_boy92 2012-12-11 11:50

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
When I install it via FAM, it says:

your system has broken packages or you are trying to installing packages. See the log for details

:confused:

marmistrz 2012-12-11 15:12

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Quote:

Originally Posted by skate_boy92 (Post 1303417)
When I install it via FAM, it says:

your system has broken packages or you are trying to installing packages. See the log for details

:confused:

And what's the log?

skate_boy92 2012-12-12 08:00

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
how to see the log?


All times are GMT. The time now is 21:20.

vBulletin® Version 3.8.8