View Single Post
Posts: 4 | Thanked: 0 times | Joined on Feb 2010
#265
Originally Posted by Keeper of the Keys View Post
I am not succeeding in upgrading to the latest stable CSSU, I am running into the following dependency problems:

The following packages have unmet dependencies:
mp-fremantle-community-pr: Depends: libcurl3 (>= 7.26.0-1maemo1+0cssu1) but 7.25.0-1maemo7 is to be installed
Depends: libxml2 (>= 2.6.32.dfsg-5maemo4+0m5+0cssu0) but 2.6.32.dfsg-5maemo4+0m5 is to be installed

My sources.list:
...

A quick scan of the maemo.org packages interface seemed to suggest that the repositories indeed do not contain a version 2.60 of libcurl3....
I was having the exact same problem. As a side note I have the repos from nokia.com enabled in my sources.list (which throw warnings about expired keys on every update).

After realizing with apt-cache that the required versions were available I suspected it had to do with some priorities in APT or something. So I installed both packages in their correct versions manually with:

Code:
apt-get install libxml2=2.6.32.dfsg-5maemo4+0m5+0cssu0 libcurl3=7.26.0-1maemo1+0cssu1
And then
Code:
apt-get install mp-fremantle-community-pr
continued without problem.

Hope it helps.