[MeeGo-dev] Compiling Pulseaudio

2011-07-30 Thread Nasa
Hi,

I am trying to compile pulseaudio, with no success.
Specifically, the 200+ patches have a number of them
that don't seem to apply cleanly.  As pusleaudio binaries
are in the repo -- I figure I must be doing something wrong.

I am getting the files from 
http://download.meego.com/MeeGo/snapshots/testing/1.2.80/latest/repos/
and am using rpmbuild to try and get this to work.  I have
already got configure to go all the way through without issue.

I would love some pointers on this, thanks in advance

Nasa
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] MeeGo Sharing Framework plugin in Harmattan

2011-07-30 Thread Arjan van de Ven

On 7/30/2011 3:14 AM, Tuomas Kulve wrote:

Hi




you probably should ask your question on a harmattan forum, not on this 
meego forum;

different enough technologies to matter...
(meego uses a different security technology, and at least on tablet, we 
use a different sharing technology)

___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] meego OBS down again... Without Warning?

2011-07-30 Thread David Greaves

On 30/07/11 10:59, Brendan Le Foll wrote:

It seems that lately OBS is a strictly Monday to Friday service. Is
this the new policy?

Can we get some advance warning if this is normal maintenance, and if
not what keeps going wrong on saturday/sunday?

This is a real pain for people like me who thought the weekend would
be a perfect chance to bootstrap an OBS.

Thanks,
Brendan


As mentioned last week (after the outage the week before):
  http://lists.meego.com/pipermail/meego-packaging/2011-July/247843.html

There was no reply to that message but the OBS did return shortly after.

David

--
"Don't worry, you'll be fine; I saw it work in a cartoon once..."
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


[MeeGo-dev] meego OBS down again... Without Warning?

2011-07-30 Thread Brendan Le Foll
It seems that lately OBS is a strictly Monday to Friday service. Is
this the new policy?

Can we get some advance warning if this is normal maintenance, and if
not what keeps going wrong on saturday/sunday?

This is a real pain for people like me who thought the weekend would
be a perfect chance to bootstrap an OBS.

Thanks,
Brendan

-- 
Brendan Le Foll
http://www.madeo.co.uk
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


[MeeGo-dev] MeeGo Sharing Framework plugin in Harmattan

2011-07-30 Thread Tuomas Kulve

Hi

I started to create a command line sharing plugin for Harmattan, mainly 
for uploading images via scp.


I took this as a base:

http://meego.gitorious.org/meego-sharing-framework/webupload-engine/trees/master/test-plugin

But I didn't find good info about how to actually install it to the 
device. Is it enough to put the plugin to the /usr/lib/webupload/plugins 
directory or do I need to also add a service file for it?


I think that was a MeeGo specific question and the next ones are 
probably Harmattan specific but I'm still posting them here as I don't 
know a better place.


Should the plugin be an executable or a library? And how to install the 
plugin so that the Harmattan security framework allows executing it?



Thanks,
--
Tuomas
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines


Re: [MeeGo-dev] How to save Contacts in the simulator environment

2011-07-30 Thread Friedrich W. H. Kossebau
Samedi, le 30 juillet 2011, à 01:24, Friedrich W. H. Kossebau a écrit:
> Mardi, le 26 juillet 2011, à 17:26, Eric Lapuyade a écrit:

> > // save the contact back into the store
> > bool result = contactMgr.saveContact (contactP);
> > --> this returns true, which means success
> > 
> > // now, reload all contacts from the manager
> > QList list2 = contactMgr.contacts();
> > 
> > // At this point, if I fetch the same contact again that I just saved, I
> > see it was not modified.
> > QContact *contact2 = list2[0];

Ah, missed that yesterday, this might be the actual problem:
You cannot expect QContactManager::contacts() to return the contacts in the 
order you might have passed them to the QContactManager::saveContacts(...).
So identifying the contact just by the index in the list is prone to fail.

That is what you use the QContact::id() property for.

So to fetch a copy of the same contact you stored before you would write
QContact contact2 = contactMgr.contact(contactP->localId());

Or if you want the whole lists of contacts in the order you have them 
already, create a matching QStringList of their localIds with some own 
function and call
const QList localIds = yourCreateLocalIdList(list);
   QList list2 = contactMgr.contacts(localIds);

Does that help you to solve you problem?

Cheers
Friedrich
-- 
Desktop Summit 2011 in Berlin - Registered already? - www.desktopsummit.org
___
MeeGo-dev mailing list
MeeGo-dev@meego.com
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines