Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[Solved] Pidgin install

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
mharrison
Posts: 223
Joined: 2009-09-29 13:44

[Solved] Pidgin install

#1 Post by mharrison »

Fresh install of Lenny.
When I try to install Pidgin using apt-get install, I am getting the following and not even trying backports helped.

The following packages have unmet dependencies:
pidgin: Depends: libpurple0 (>= 2.4.3-4lenny5) but it is not going to be installed
Depends: perl (>= 5.10.0-19lenny2) but 5.10.0-19 is to be installed
E: Broken packages

Any clue on how I can get around this?
Last edited by mharrison on 2009-12-08 11:18, edited 1 time in total.

User avatar
Absent Minded
Posts: 3464
Joined: 2006-07-09 08:50
Location: Washington State U.S.A.
Been thanked: 3 times

Re: Pidgin install

#2 Post by Absent Minded »

have you ran "apt-get update"?
Serving the community the best way I can.
Spreading the tradition of Community Spirit.
Please read some Basic Forum Philosophy
Give a man a fish, he eats for a day. Teach him how to fish, he eats for life.
Updated Nov. 19, 2012

plugwash
Posts: 2507
Joined: 2006-09-17 01:10
Contact:

Re: Pidgin install

#3 Post by plugwash »

first try running apt-get update and then trying the install again

If it still fails please post the complete contents of /etc/apt/sources.list

mharrison
Posts: 223
Joined: 2009-09-29 13:44

Re: Pidgin install

#4 Post by mharrison »

I've run apt-get update, aptitude update.

This is a fresh install, so /etc/apt/sources.list should be default, but here is mine:

#
# deb cdrom:[Debian GNU/Linux 5.0.2 _Lenny_ - Official i386 DVD Binary-1 20090628-15:08]/ lenny contrib main

deb cdrom:[Debian GNU/Linux 5.0.2 _Lenny_ - Official i386 DVD Binary-1 20090628-15:08]/ lenny contrib main

deb cdrom:[Debian GNU/Linux 5.0.2 _Lenny_ - Official i386 DVD Binary-2 20090628-15:08]/ lenny contrib main

deb cdrom:[Debian GNU/Linux 5.0.2 _Lenny_ - Official i386 DVD Binary-3 20090628-15:08]/ lenny contrib main

deb cdrom:[Debian GNU/Linux 5.0.2 _Lenny_ - Official i386 DVD Binary-4 20090628-15:08]/ lenny contrib main

deb cdrom:[Debian GNU/Linux 5.0.2 _Lenny_ - Official i386 DVD Binary-5 20090628-15:08]/ lenny contrib main

deb http://security.debian.org/ lenny/updates main contrib
deb-src http://security.debian.org/ lenny/updates main contrib

deb http://volatile.debian.org/debian-volatile lenny/volatile main contrib
deb-src http://volatile.debian.org/debian-volatile lenny/volatile main contrib

plugwash
Posts: 2507
Joined: 2006-09-17 01:10
Contact:

Re: Pidgin install

#5 Post by plugwash »

Your problem is you have security and volatile in there but not a regular mirror. So you get security updates and updates to volatile packages but not regular point release updates. Since the volatile update to pidgin depends on a regular point release update to perl you get an error.

Add the following lines to the end of sources.list

deb ftp.us.debian.org lenny main contrib
deb-src ftp.us.debian.org lenny main contrib

Then do apt-get update && apt-get upgrade

mharrison
Posts: 223
Joined: 2009-09-29 13:44

Re: Pidgin install

#6 Post by mharrison »

Thanks! This did the trick, I will note however that your source links for /etc/apt/sources.list did have an error.

They should look like this:

Code: Select all

deb ftp://ftp.us.debian.org/debian/ lenny main contrib
deb-src ftp://ftp.us.debian.org/debian/ lenny main contrib

Post Reply