Reply
Thread Tools
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#21
Diablo folks - your dependency to fulfill is maemo-version-dev 4.x (disregard pymaemo-optify, it is an 'OR'). Now, just to find out why do *I* have it and some people don't:

apt-cache policy maemo-version-dev

and let me know what release of Diablo you are using (you can see that in settings->about product).
__________________
Blogging about mobile linux - The Penguin Moves!
Maintainer of PyQt (see introduction and docs), AppWatch, QuickBrownFox, etc
 
Posts: 2 | Thanked: 2 times | Joined on Jan 2010
#22
Version 5.2008.43-7

apt-cache policy maemo-version-dev

Installed: (none)
Candidate: (none)

Which repository is it supposed to be in?
 

The Following User Says Thank You to James Gregory For This Useful Post:
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#23
http://repository.maemo.org/ diablo/sdk free

Apparently devices get this repo if they install some of the dev packages. Thought it was standard (as it is on the N900), apparently not I'll try to dig up something specific (kernel-diablo-flasher ?) and replace maemo-version-dev... Suggestions welcome
__________________
Blogging about mobile linux - The Penguin Moves!
Maintainer of PyQt (see introduction and docs), AppWatch, QuickBrownFox, etc
 
Posts: 2 | Thanked: 2 times | Joined on Jan 2010
#24
if your objective is to find the current version of maemo running on the device, there is a thread discussing options here:
http://lists.maemo.org/pipermail/mae...er/023012.html
 

The Following User Says Thank You to James Gregory For This Useful Post:
itkach's Avatar
Posts: 95 | Thanked: 41 times | Joined on May 2006 @ New Jersey, USA
#25
Originally Posted by attila77 View Post
http://repository.maemo.org/ diablo/sdk free
Adding Diablo SDK as described at http://repository.maemo.org/#sdk_repositories makes PyQt installable (had to add the repo manually, install link is broken).

So now I can install aarddict, but there seems to be no difference in the size of download (~19 Mb) or device memory needed (62 Mb) compared to PyQt 4.6... I thought 4.7 is supposed to be smaller? Also, unnecessary packages are somehow pulled in - libqt4-assistant, libqt4-designer, libqt-phonon, libqt4-test - not sure if this is coming from PyQt, or is it the way Qt itself is packaged.
__________________
Aard DictionarySDict Viewer

Last edited by itkach; 2010-01-31 at 20:57.
 
fpp's Avatar
Posts: 2,853 | Thanked: 968 times | Joined on Nov 2005
#26
Originally Posted by James Gregory View Post
Version 5.2008.43-7
apt-cache policy maemo-version-dev
Same version, but in French.

I just get one line as a reply, something like:

W: could not find package maemo-version-dev
(only in French :-)
__________________
maemo blog
 

The Following User Says Thank You to fpp For This Useful Post:
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#27
Originally Posted by James Gregory View Post
if your objective is to find the current version of maemo running on the device, there is a thread discussing options here:
http://lists.maemo.org/pipermail/mae...er/023012.html
Thanks, but at that point it's too late. I need the dependencies sorted out on the level of the autobuilder (so I would have a silngle source/control file regardless of Diablo, Fremantle, Harmattan, etc).
__________________
Blogging about mobile linux - The Penguin Moves!
Maintainer of PyQt (see introduction and docs), AppWatch, QuickBrownFox, etc

Last edited by attila77; 2010-01-31 at 22:53.
 
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#28
Originally Posted by itkach View Post
So now I can install aarddict, but there seems to be no difference in the size of download (~19 Mb) or device memory needed (62 Mb) compared to PyQt 4.6... I thought 4.7 is supposed to be smaller?
Yes and no What you had as 4.6 on Maemo was, in fact, including a lot of 4.7 patches (including the 'protected as public' size reducing feature). If in doubt, compare with PySide

Also, unnecessary packages are somehow pulled in - libqt4-assistant, libqt4-designer, libqt-phonon, libqt4-test - not sure if this is coming from PyQt, or is it the way Qt itself is packaged.
Neither. You probably have something (directly or indirectly) depending on 'python2.5-qt4' which is the metapackage that includes all PyQt components (and thus their Qt counterparts). Note that the python2.5-qt4-doc package also depends on a fair number of modules (but not nearly all !) as the examples include various demos.
__________________
Blogging about mobile linux - The Penguin Moves!
Maintainer of PyQt (see introduction and docs), AppWatch, QuickBrownFox, etc
 
itkach's Avatar
Posts: 95 | Thanked: 41 times | Joined on May 2006 @ New Jersey, USA
#29
Originally Posted by attila77 View Post
You probably have something (directly or indirectly) depending on 'python2.5-qt4'
Looks like Qt itself brings in all these extra packages:
Code:
Nokia-N810-23-14:~# apt-get install libqt4-gui   
Reading package lists... Done
Building dependency tree        
Reading state information... Done
The following extra packages will be installed:
  libqt4-assistant libqt4-dbus libqt4-designer libqt4-network libqt4-script libqt4-svg libqt4-xml
  libqtgui4
Recommended packages:
  qt4-qtconfig
The following NEW packages will be installed:
  libqt4-assistant libqt4-dbus libqt4-designer libqt4-gui libqt4-network libqt4-script libqt4-svg
  libqt4-xml libqtgui4
0 upgraded, 9 newly installed, 0 to remove and 17 not upgraded.
Need to get 8635kB of archives.
After unpacking 25.1MB of additional disk space will be used.
Do you want to continue [Y/n]?
Code:
Nokia-N810-23-14:~# apt-get install libqt4-core 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libqt4-dbus libqt4-network libqt4-script libqt4-test libqt4-xml libqtgui4
Recommended packages:
  qt4-qtconfig
The following NEW packages will be installed:
  libqt4-core libqt4-dbus libqt4-network libqt4-script libqt4-test libqt4-xml libqtgui4
0 upgraded, 7 newly installed, 0 to remove and 17 not upgraded.
Need to get 5932kB of archives.
After unpacking 15.9MB of additional disk space will be used.
Do you want to continue [Y/n]?
__________________
Aard DictionarySDict Viewer

Last edited by itkach; 2010-02-01 at 06:53.
 

The Following User Says Thank You to itkach For This Useful Post:
itkach's Avatar
Posts: 95 | Thanked: 41 times | Joined on May 2006 @ New Jersey, USA
#30
libqt4-phonon is pulled in by libqt4-webkit:
Code:
Nokia-N810-23-14:~# apt-get install libqt4-webkit
Reading package lists... Done
Building dependency tree        
Reading state information... Done
The following extra packages will be installed:
  libqt4-dbus libqt4-designer libqt4-network libqt4-phonon libqt4-script libqt4-xml libqtgui4
Recommended packages:
  qt4-qtconfig
The following NEW packages will be installed:
  libqt4-dbus libqt4-designer libqt4-network libqt4-phonon libqt4-script libqt4-webkit libqt4-xml
  libqtgui4
Shouldn't libqt4-webkit be usable without Phonon? Also, if I remember correctly previously use of Phonon in PyQt required Python 2.6. Was this limitation lifted in PyQt 4.7?
__________________
Aard DictionarySDict Viewer
 
Reply

Tags
development, pyqt, pyside, python, qt4

Thread Tools

 
Forum Jump


All times are GMT. The time now is 14:53.