Who should I inform/contact when an apt package is out-of-date

Asked by BioGeek

Hi all,

Today I installed libgmail using apt-get:

sudo apt-get install python-libgmail

Installed fine, no problem up till now. However, when I tried one of the examples from the documentation, I ran into a bug. Googeling around a bit, I found that a fix for that bug had been introduced in version 0.1.6 of the software.

I then checked which version apt-get had installed, and saw it was version 0.1.5.1 of libgmail from Augustus 2006.

I solved my immediate problem by patching my libgmail.py to the newest version (version 0.1.8 from November 2007) that I downloaded from the project website (http://libgmail.sourceforge.net/):

diff -u /usr/lib/python2.5/site-packages/libgmail.py ~/libgmail-0.1.8/libgmail.py > libgmail-patch
sudo patch -p0 < libgmail-patch

But now I have 2 questions:

1) What is the correct procedure/ who should I inform or contact to let them know that the package python-libgmail is outdated: that a version 0.1.8 already exists but that version 0.1.5.1 is still installed.

2) apt-get probably still thinks I have installed version 0.1.5.1 of the package. Won't that give cause for trouble in the future when apt tries to update the package?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu python-libgmail Edit question
Assignee:
No assignee Edit question
Solved by:
Cesare Tirabassi
Solved:
Last query:
Last reply:
Revision history for this message
Best Cesare Tirabassi (norsetto) said :
#1

1) This is bug #152888. The correct procedure would have been to file an upgrade request, or, if the patch was available, file a bug report (like the one mentioned), attach it and subscribe ubuntu-universe-sponsors. Anyhow, this has been fixed since version 0.1.8 is already in hardy

2) No trouble, if you dist-upgrade to hardy you will get the new package instead of the one you have patched.

Revision history for this message
BioGeek (jeroen-vangoey) said :
#2

Thanks Cesare Tirabassi, that solved my question.