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?

B-RUNO 2012-12-12 08:13

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

Originally Posted by skate_boy92 (Post 1303694)
how to see the log?

On FAM just tap the bar on the top where it says Faster Application Manager and tap View Log!

I hope it help.
Regards

skate_boy92 2012-12-12 15:19

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
--- 2012-12-12 22:11:41 ---
/usr/bin/apt-get -q update -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts=""
Hit http://repository.maemo.org fremantle-1.3 Release.gpg
Get:1 https://downloads.maemo.nokia.com ./ Release.gpg [198B]
Ign http://repository.maemo.org fremantle-1.3/free Translation-en_GB
Ign http://repository.maemo.org fremantle-1.3/non-free Translation-en_GB
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Get:2 http://repository.maemo.org fremantle Release.gpg [489B]
Ign http://repository.maemo.org fremantle/free Translation-en_GB
Get:3 https://downloads.maemo.nokia.com ./ Release.gpg [198B]
Ign http://repository.maemo.org fremantle/non-free Translation-en_GB
Hit http://repository.maemo.org fremantle-1.3 Release
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Get:4 http://repository.maemo.org fremantle Release [7958B]
Ign http://repository.maemo.org fremantle-1.3/free Packages/DiffIndex
Hit https://downloads.maemo.nokia.com ./ Release
Hit https://downloads.maemo.nokia.com ./ Release
Err https://downloads.maemo.nokia.com ./ Release

Ign http://repository.maemo.org fremantle-1.3/non-free Packages/DiffIndex
Get:5 https://downloads.maemo.nokia.com ./ Release [507B]
Err https://downloads.maemo.nokia.com ./ Release

Ign https://downloads.maemo.nokia.com ./ Release
Get:6 https://downloads.maemo.nokia.com ./ Release [507B]
Ign https://downloads.maemo.nokia.com ./ Release
Ign http://repository.maemo.org fremantle/free Packages/DiffIndex
Ign http://repository.maemo.org fremantle/non-free Packages/DiffIndex
Hit http://repository.maemo.org fremantle-1.3/free Packages
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Hit http://repository.maemo.org fremantle-1.3/non-free Packages
Get:7 http://repository.maemo.org fremantle/free Packages [9201kB]
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Hit https://downloads.maemo.nokia.com ./ Packages
Hit https://downloads.maemo.nokia.com ./ Packages
Get:8 http://repository.maemo.org fremantle/non-free Packages [283kB]
Fetched 9494kB in 1min12s (131kB/s)
Reading package lists...
W: GPG error: https://downloads.maemo.nokia.com ./ Release: The following signatures were invalid: KEYEXPIRED 1349249546 KEYEXPIRED 1349249546 KEYEXPIRED 1349249546
W: GPG error: https://downloads.maemo.nokia.com ./ Release: The following signatures were invalid: KEYEXPIRED 1349249546 KEYEXPIRED 1349249546 KEYEXPIRED 1349249546
W: Ignoring Provides line with DepCompareOp for package binutils
W: You may want to run apt-get update to correct these problems
--- 2012-12-12 22:13:31 ---
Start reading package lists
--- 2012-12-12 22:13:44 ---
Finished reading package lists
--- 2012-12-12 22:14:29 ---
/usr/bin/apt-get -qsy --allow-unauthenticated -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install meecolay
--- 2012-12-12 22:14:36 ---
Output from last process:
---
Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
meecolay: Depends: libqtcore4 but it is not going to be installed
Depends: libqtgui4 but it is not going to be installed
Depends: libqtwebkit4 but it is not going to be installed
Depends: maemo-meegotouch-interfaces but it is not going to be installed
Depends: libqt4 but it is not going to be installed
E: Broken packages

marmistrz 2012-12-12 15:47

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

Originally Posted by skate_boy92 (Post 1303843)
--- 2012-12-12 22:11:41 ---
/usr/bin/apt-get -q update -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts=""
Hit http://repository.maemo.org fremantle-1.3 Release.gpg
Get:1 https://downloads.maemo.nokia.com ./ Release.gpg [198B]
Ign http://repository.maemo.org fremantle-1.3/free Translation-en_GB
Ign http://repository.maemo.org fremantle-1.3/non-free Translation-en_GB
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Get:2 http://repository.maemo.org fremantle Release.gpg [489B]
Ign http://repository.maemo.org fremantle/free Translation-en_GB
Get:3 https://downloads.maemo.nokia.com ./ Release.gpg [198B]
Ign http://repository.maemo.org fremantle/non-free Translation-en_GB
Hit http://repository.maemo.org fremantle-1.3 Release
Ign https://downloads.maemo.nokia.com ./ Translation-en_GB
Get:4 http://repository.maemo.org fremantle Release [7958B]
Ign http://repository.maemo.org fremantle-1.3/free Packages/DiffIndex
Hit https://downloads.maemo.nokia.com ./ Release
Hit https://downloads.maemo.nokia.com ./ Release
Err https://downloads.maemo.nokia.com ./ Release

Ign http://repository.maemo.org fremantle-1.3/non-free Packages/DiffIndex
Get:5 https://downloads.maemo.nokia.com ./ Release [507B]
Err https://downloads.maemo.nokia.com ./ Release

Ign https://downloads.maemo.nokia.com ./ Release
Get:6 https://downloads.maemo.nokia.com ./ Release [507B]
Ign https://downloads.maemo.nokia.com ./ Release
Ign http://repository.maemo.org fremantle/free Packages/DiffIndex
Ign http://repository.maemo.org fremantle/non-free Packages/DiffIndex
Hit http://repository.maemo.org fremantle-1.3/free Packages
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Hit http://repository.maemo.org fremantle-1.3/non-free Packages
Get:7 http://repository.maemo.org fremantle/free Packages [9201kB]
Ign https://downloads.maemo.nokia.com ./ Packages/DiffIndex
Hit https://downloads.maemo.nokia.com ./ Packages
Hit https://downloads.maemo.nokia.com ./ Packages
Get:8 http://repository.maemo.org fremantle/non-free Packages [283kB]
Fetched 9494kB in 1min12s (131kB/s)
Reading package lists...
W: GPG error: https://downloads.maemo.nokia.com ./ Release: The following signatures were invalid: KEYEXPIRED 1349249546 KEYEXPIRED 1349249546 KEYEXPIRED 1349249546
W: GPG error: https://downloads.maemo.nokia.com ./ Release: The following signatures were invalid: KEYEXPIRED 1349249546 KEYEXPIRED 1349249546 KEYEXPIRED 1349249546
W: Ignoring Provides line with DepCompareOp for package binutils
W: You may want to run apt-get update to correct these problems
--- 2012-12-12 22:13:31 ---
Start reading package lists
--- 2012-12-12 22:13:44 ---
Finished reading package lists
--- 2012-12-12 22:14:29 ---
/usr/bin/apt-get -qsy --allow-unauthenticated -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install meecolay
--- 2012-12-12 22:14:36 ---
Output from last process:
---
Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
meecolay: Depends: libqtcore4 but it is not going to be installed
Depends: libqtgui4 but it is not going to be installed
Depends: libqtwebkit4 but it is not going to be installed
Depends: maemo-meegotouch-interfaces but it is not going to be installed
Depends: libqt4 but it is not going to be installed
E: Broken packages

I guess you need cssu

skate_boy92 2012-12-13 11:19

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Is this one ?
http://my-maemo.com/software/applica...to=2133&faq=42

sifo 2012-12-13 11:34

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
You need cssu-testing ( i dont know if stable release will be enough as i didnt try it ! )
http://repository.maemo.org/communit...mantle.install
Please read the wiki to make sure you know what you are doing
http://wiki.maemo.org/CSSU

./Sifo

bobsponge 2012-12-13 14:45

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
hi dears............
how can i install meecolay fully?????
becuase it isnt in extras-devel catalog......
thank u........please answer me

sifo 2012-12-14 23:31

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Do you mind reading the first post ? and maybe the wiki page too ?

Cozzbie 2012-12-23 15:53

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Any news on if this works with Wazzap???

Cozzbie 2012-12-24 00:27

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Kinda miffed at the whole thing and need help installing an N9 .deb package in xterm and then use meecolay and these are the steps I've taken so far...

1. sudo gainroot
2. cd MyDocs
3. dpkg -x package.deb /

after step 3 nothing happens...

a. specifically, what directory is that / pointing to?
b. since i'm running from MyDocs how will i type in the path to extract to?
c. I do recall marmistrz saying we shouldn't run apps as root...is this the same as "installing under gainroot" and then later calling meecolay opt/bin/ under the same "gainroot" permission?

please help...

sifo 2012-12-24 00:51

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

It is recommended to install the debian and not to extract it ( unless you know what you are doing and i dont think so. ! )
after installing the package with
Code:

sudo gainroot
dpkg -i /path/to/deb/foo.deb

you just need to move the icon and the desktop file to their correct directories as the dirs in fremantle are different in harmatten, and you need to modify the desktop file so the app can be used with meecolay
( please read the Workarounds wiki page about this part )

Answering you questions :
a. this way you will extract the deb in your opt/ and usr/ dirs, just like installing them but this way the control file ,postinst and postrm scripts wont be read by dpkg so you wont know what is exactly missing of dependencies
b. eg :
Code:

/home/user/MyDocs # dpkg -x foo.deb /path/to/extraction/dir
c. simply when you want to use dpkg or apt-get you are going to need root access
and when you want to launch an app with meecolay in terminal you should NOT use root or sudo gainroot just
Code:

meecolay /path/to/the/binary
now i guess i wrote a wiki page dont you think so :p ?
please read the wiki and the whole thread to avoid asking the same questions again...:cool:

./sifo

Edit :
Quote:

after step 3 nothing happens...
because the deb is extracted without any error so there wont be an output or something, which means you need to look for the binary and try it out !

Cozzbie 2012-12-24 08:25

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
@sifo...
thanks a whole lot..
the problem is that with dpkg -x package.deb /, no extracted files were found in the various paths i used...i'm trying to install the newest wazapp for n9, loads of dependencies that Iv tried to get...some were successful others outputted errors of no proper representations!!???...no that doesn't sound right...something about the packages not being represented properly...cant really remember the proper adjective that was outputted in xterm...anyway...thanks for your wiki...:p...the workarounds look like a whole lotta stress and I'm from a windows platform, all these linux stuff is spinning my head...thanks again...

erm...one last thing...can someone who knows how to really do this meecolay thing please try the latest wazapp from wazapp.im and let us know if it actually works?...PLEASE

[EDIT]just found it..."has no installation candidate" were the words I was looking for...

presently trying to install the python-accounts dependency when i get that error...is there a repository I'm supposed to activate[/EDIT]

Thanks!!!

marmistrz 2012-12-24 11:16

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

Originally Posted by Cozzbie (Post 1307192)
Kinda miffed at the whole thing and need help installing an N9 .deb package in xterm and then use meecolay and these are the steps I've taken so far...

1. sudo gainroot
2. cd MyDocs
3. dpkg -x package.deb /

after step 3 nothing happens...

a. specifically, what directory is that / pointing to?
b. since i'm running from MyDocs how will i type in the path to extract to?
c. I do recall marmistrz saying we shouldn't run apps as root...is this the same as "installing under gainroot" and then later calling meecolay opt/bin/ under the same "gainroot" permission?

please help...

You did the worst thing you could ever do. If you don't know the basics of Linux, you shouldn't touch stuff like that. Wait for the GUI, or donate if you want to get the early versions and then the final one without ads. (all the people who don't donate will have the version with ads).

Cozzbie 2012-12-24 11:23

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

Originally Posted by marmistrz (Post 1307288)
You did the worst thing you could ever do. If you don't know the basics of Linux, you shouldn't touch stuff like that. Wait for the GUI, or donate if you want to get the early versions and then the final one without ads. (all the people who don't donate will have the version with ads).

:)

I hear you boss...but I am a developer too so I do understand the risks that come with these things and I have never minded learning the hard way...but I'll take your advice and learn some linux based kernel stuff...

Thanks again...any word on when the GUI will be coming out?...

sifo 2012-12-24 12:54

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
I tried wazzap for you Cozzbie and it did not work :p
i got this output
Code:

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

i wont be trying with this app anymore as i dont like it, if marmistrz suggested something, you may want to proceed with it...

./sifo

marmistrz 2012-12-24 15:01

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

Originally Posted by Cozzbie (Post 1307294)
:)

I hear you boss...but I am a developer too so I do understand the risks that come with these things and I have never minded learning the hard way...but I'll take your advice and learn some linux based kernel stuff...

Thanks again...any word on when the GUI will be coming out?...

Basically, the very-early version should be matter of days, I just need to polish up the things that are already working, but it'll be available to donors only. The final version will be free, but non-donors will have to get on with ads. The early versions will have only basic features, the other features will be added over time.

Extracting to "/" is not a very good idea, btw, as it's not as-easily-as-dpkg removable.

marmistrz 2012-12-25 11:50

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

Originally Posted by sifo (Post 1307313)
I tried wazzap for you Cozzbie and it did not work :p
i got this output
Code:

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

i wont be trying with this app anymore as i dont like it, if marmistrz suggested something, you may want to proceed with it...

./sifo

Cozzbie: you might want to use python2.7 package and its contents.

seanmcken 2012-12-25 12:45

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Plz gimme link to download molome of harmattan. I did search but i dint get anywhere so plz help

sifo 2012-12-25 12:58

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

This thread is not for links "gimming" , so please be aware of useless and non sense posts !

Cozzbie 2012-12-25 13:11

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
@sifo: wow thanks for testing...but come on...you know you the man right, and @marmistrz the boss has said we could try with python 2.7 packages...we need you @sifo *teacher*...we need you...

@marmistrz: I really have absolutely no idea how to get that python package anyway...just found a post where they said maemo python version has stopped at 2.6..*bummer*...thanks anyway...you are the man...

Plus it would be much appreciated if someone(subliminally calling on @sifo ;) ) could try your(marmistrz) advice(load up python 2.7) and see if wazzap works...especially because wazapp seems like a big deal on the maemo..

.@marmistrz and @sifo...thanks a bunch

Cozzbie 2012-12-25 13:17

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

Originally Posted by sifo (Post 1307313)
I tried wazzap for you Cozzbie and it did not work :p
i got this output
Code:

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

i wont be trying with this app anymore as i dont like it, if marmistrz suggested something, you may want to proceed with it...

./sifo

I swear @sifo I hate you sometimes...*sigh*...could you please post what steps you took to getting this far?...

Thanks @sifo...*teacher*

Hehehehe...:D

n900d-i-y 2012-12-25 13:17

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
Will Bejeweled 2 HD ever work? I looked on the Compatibility page and it has this error, error while loading shared libraries: libcontactswidgets.so.0: cannot open shared object file: No such file or directory. Will this error be resolved somehow?

sifo 2012-12-25 13:35

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

Originally Posted by Cozzbie (Post 1307558)
I swear @sifo I hate you sometimes...*sigh*...could you please post what steps you took to getting this far?...

Thanks @sifo...*teacher*

Hehehehe...:D

The steps are pretty clear, i just extracted the wazzap.deb in /opt/meecolay/bin/apps/ ( i created the apps dir )
and please find the command to run the binary in my previous post.

marmistrz 2012-12-25 14:55

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

Originally Posted by n900d-i-y (Post 1307560)
Will Bejeweled 2 HD ever work? I looked on the Compatibility page and it has this error, error while loading shared libraries: libcontactswidgets.so.0: cannot open shared object file: No such file or directory. Will this error be resolved somehow?

Please report it to the bugzilla. I have no time to work on that lib, I'm polishing up an alpha version of the GUI with the basic features, and if I don't have it in the bugzilla, I'll simply forget it. You can look at the package in Harmattan SDK or the SSU repos, but installing will be at your own risk. But generally it won't work: libmeegotouch in extras is buggy. Look at the next post for more info.

Quote:

Originally Posted by Cozzbie (Post 1307555)
@marmistrz: I really have absolutely no idea how to get that python package anyway...just found a post where they said maemo python version has stopped at 2.6..*bummer*...thanks anyway...you are the man...

http://talk.maemo.org/showthread.php?t=86900

marmistrz 2012-12-25 15:01

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
I found out the presumable cause of many segfaults of apps using MeeGo Touch. The build that we have in extras-devel is buggy and crashes even with the demo application. My Qt clone builds the MeeGo specific Qt libs and puts them into the packages (such as libqt4-meegographicssystemhelper). These are required to build newer MeeGo Touch. I'm waiting for CSSU guys to include this and then I'll proceed with building newer MeeGo Touch

Why do I think so? Every app with a strange segfault is either linked against some advanced MeeGo libs (e.g. qmsystem2) or MeeGo Touch. In the second case, the segfault is instantaneous. When camdrive_qml was built in the OBS, it was not being linked against MeeGo Touch and didn't segfault. The same is with AccuWeather aka wxapp, FileBox & etc.

Update: libmeegotouch requires a couple of other libs. These cannot be built for the time being due to out of date libtool.

seanmcken 2012-12-29 13:24

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
hello guys i tried molome and i got this

/home/user/MyDocs # dpkg -i molome-2.1.9-854x480-1.2-Harmatta
n.deb
Selecting previously deselected package molome.
(Reading database ... 46634 files and directories currently installed.)
Unpacking molome (from molome-2.1.9-854x480-1.2-Harmattan.deb) ...
dpkg: dependency problems prevent configuration of molome:
molome depends on libqtsparql0 (>= 0.0.30+0m6); however:
Package libqtsparql0 is not installed.
molome depends on libquill1; however:
Package libquill1 is not installed.
molome depends on libquillimagefilter1; however:
Package libquillimagefilter1 is not installed.
molome depends on libquillmetadata1; however:
Package libquillmetadata1 is not installed.
dpkg: error processing molome (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
molome
/home/user/MyDocs #

szopin 2012-12-29 13:47

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

Originally Posted by marmistrz (Post 1307601)
Update: libmeegotouch requires a couple of other libs. These cannot be built due to out of date libtool.

Cannot? Ask Aapo, I'm sure there is no such thing as cannot.

marmistrz 2012-12-29 15:30

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
signon part of the Accounts & SSO framework ported. http://talk.maemo.org/showthread.php...84#post1275884

Developer attention is required though, read the OP of the link above for more info.

Quote:

Originally Posted by szopin (Post 1308817)
Cannot? Ask Aapo, I'm sure there is no such thing as cannot.

Do you think I haven't asked Aapo yet? :)
He's been trying to backport libtool, but doesn't build cleanly yet. So it cannot be built but for the time being :)
Updated the post you quoted.


Quote:

Originally Posted by seanmcken (Post 1308812)
hello guys i tried molome and i got this

/home/user/MyDocs # dpkg -i molome-2.1.9-854x480-1.2-Harmatta
n.deb
Selecting previously deselected package molome.
(Reading database ... 46634 files and directories currently installed.)
Unpacking molome (from molome-2.1.9-854x480-1.2-Harmattan.deb) ...
dpkg: dependency problems prevent configuration of molome:
molome depends on libqtsparql0 (>= 0.0.30+0m6); however:
Package libqtsparql0 is not installed.
molome depends on libquill1; however:
Package libquill1 is not installed.
molome depends on libquillimagefilter1; however:
Package libquillimagefilter1 is not installed.
molome depends on libquillmetadata1; however:
Package libquillmetadata1 is not installed.
dpkg: error processing molome (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
molome
/home/user/MyDocs #

libquiill* can't be built for the time being, but I hope it'll become possible soon.

szopin 2012-12-29 15:38

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

Originally Posted by marmistrz (Post 1308853)
signon part of the Accounts & SSO framework ported. http://talk.maemo.org/showthread.php...84#post1275884

Developer attention is required though, read the OP of the link above for more info.



Do you think I haven't asked Aapo yet? :)
He's been trying to backport libtool, but doesn't build cleanly yet. So it cannot be built but for the time being :)
Updated the post you quoted.

:D You the man. Please make meecolay with nokia public transport working That would definitely deserve a donation.

marmistrz 2012-12-29 18:09

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

Originally Posted by szopin (Post 1308856)
:D You the man. Please make meecolay with nokia public transport working That would definitely deserve a donation.

NokiaPt works (at least starts up and looks for location)

you need to run it with
Code:

LD_PRELOAD=/opt/qtm12/lib/libQtLocation.so meecolay /opt/NokiaPt/bin/NokiaPt

sunyakram 2012-12-29 18:38

Re: [Announce/WIP][Alpha] MeeCoLay - run Harmattan apps on Fremantle!
 
--- 2012-12-28 23:40:04 ---
/usr/bin/apt-get -qsy --allow-unauthenticated -o Dir::Etc::sourcelist=/opt/fapman-cache/sources.list -o Dir::State::lists=/opt/fapman-cache/lists -o Dir::Etc::sourceparts="" --auto-remove install meecolay
--- 2012-12-28 23:40:08 ---
Output from last process:
---
Reading package lists...
Building dependency tree...
Reading state information...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
meecolay: Depends: libqtcore4 but it is not going to be installed
Depends: libqtgui4 but it is not going to be installed
Depends: libqtwebkit4 but it is not going to be installed
Depends: maemo-meegotouch-interfaces but it is not going to be installed
Depends: libqt4 but it is not going to be installed
E: Broken packages

?


All times are GMT. The time now is 10:05.

vBulletin® Version 3.8.8